Files
MovementTests/addons/forge/nodes/EffectTriggerMode.cs
Minimata c4be97e0de
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 21s
Create tag and build when new code gets to main / Test (push) Successful in 6m56s
Create tag and build when new code gets to main / Export (push) Successful in 9m3s
added forge addon
2026-02-08 15:16:01 +01:00

22 lines
395 B
C#

// 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,
}