rokojori_action_library/Runtime/Tools/TestNode.cs

40 lines
524 B
C#

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;
}