Files
MovementTests/addons/forge/resources/statescript/StatescriptPropertyDirection.cs
Minimata 1d856fd937
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 26s
Create tag and build when new code gets to main / Export (push) Successful in 5m42s
Replicated the weapon flying tick setup using resources
2026-04-07 16:32:26 +02:00

20 lines
424 B
C#

// Copyright © Gamesmiths Guild.
namespace Gamesmiths.Forge.Godot.Resources.Statescript;
/// <summary>
/// Indicates the direction of a node property binding.
/// </summary>
public enum StatescriptPropertyDirection
{
/// <summary>
/// An input property that feeds a value into the node.
/// </summary>
Input = 0,
/// <summary>
/// An output variable that the node writes a value to.
/// </summary>
Output = 1,
}