added forge addon
This commit is contained in:
21
addons/forge/nodes/EffectTriggerMode.cs
Normal file
21
addons/forge/nodes/EffectTriggerMode.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
// Copyright © Gamesmiths Guild.
|
||||
|
||||
namespace Gamesmiths.Forge.Godot.Nodes;
|
||||
|
||||
public enum EffectTriggerMode
|
||||
{
|
||||
/// <summary>
|
||||
/// Add effects when entering the area.
|
||||
/// </summary>
|
||||
OnEnter = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Add effects when exiting the area.
|
||||
/// </summary>
|
||||
OnExit = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Add effects when entering the area and removes when exiting it.
|
||||
/// </summary>
|
||||
OnStay = 2,
|
||||
}
|
||||
Reference in New Issue
Block a user