rokojori_action_library/Runtime/Godot/Generated/Classes/RJAnimatableBody3D.cs

80 lines
2.1 KiB
C#
Raw Normal View History

2024-08-04 09:08:12 +00:00
using Godot;
namespace Rokojori
{
[Tool][GlobalClass]
2024-08-04 09:08:12 +00:00
public partial class RJAnimatableBody3D:AnimatableBody3D
{
[Export]
2025-01-08 18:46:17 +00:00
public Action OnInputEvent;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnMouseEntered;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnMouseExited;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnVisibilityChanged;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnReady;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnRenamed;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnTreeEntered;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnTreeExiting;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnTreeExited;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnChildEnteredTree;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnChildExitingTree;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnChildOrderChanged;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnReplacingBy;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnEditorDescriptionChanged;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnScriptChanged;
2024-08-04 09:08:12 +00:00
[Export]
2025-01-08 18:46:17 +00:00
public Action OnPropertyListChanged;
2024-08-04 09:08:12 +00:00
public override void _Ready()
{
2026-05-02 10:32:42 +00:00
InputEvent += ( p0, p1, p2, p3, p4 ) => { Action.TriggerSafe( OnInputEvent ); };
MouseEntered += ( ) => { Action.TriggerSafe( OnMouseEntered ); };
MouseExited += ( ) => { Action.TriggerSafe( OnMouseExited ); };
VisibilityChanged += ( ) => { Action.TriggerSafe( OnVisibilityChanged ); };
Ready += ( ) => { Action.TriggerSafe( OnReady ); };
Renamed += ( ) => { Action.TriggerSafe( OnRenamed ); };
TreeEntered += ( ) => { Action.TriggerSafe( OnTreeEntered ); };
TreeExiting += ( ) => { Action.TriggerSafe( OnTreeExiting ); };
TreeExited += ( ) => { Action.TriggerSafe( OnTreeExited ); };
ChildEnteredTree += ( p0 ) => { Action.TriggerSafe( OnChildEnteredTree ); };
ChildExitingTree += ( p0 ) => { Action.TriggerSafe( OnChildExitingTree ); };
ChildOrderChanged += ( ) => { Action.TriggerSafe( OnChildOrderChanged ); };
ReplacingBy += ( p0 ) => { Action.TriggerSafe( OnReplacingBy ); };
EditorDescriptionChanged += ( p0 ) => { Action.TriggerSafe( OnEditorDescriptionChanged ); };
ScriptChanged += ( ) => { Action.TriggerSafe( OnScriptChanged ); };
PropertyListChanged += ( ) => { Action.TriggerSafe( OnPropertyListChanged ); };
2024-08-04 09:08:12 +00:00
}
}
}