22 lines
395 B
C#
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,
|
|
}
|