rokojori_action_library/Runtime/Tools/TestNode.cs

40 lines
524 B
C#
Raw Normal View History

2026-04-27 08:15:59 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
namespace Rokojori;
[GlobalClass][Tool]
public partial class TestNode:Node
{
/**
<summary>
The value of the other int
</summary>
*/
[Export]
public int otherValue = 1;
/**
<summary>
The value of the int
</summary>
*/
[Export]
public int intValue = 0;
/**
<summary>
The value of the float
</summary>
*/
[Export]
public float floatValue = 0;
[Export]
public TestResource testResource;
}