rj-action-library/Runtime/UI/UISettings.cs

16 lines
308 B
C#

using Godot;
namespace Rokojori
{
[Tool]
[GlobalClass,Icon("res://addons/rokojori_action_library/Icons/UI.svg")]
public partial class UISettings : Resource
{
[Export]
public Vector2PropertyName sizePropertyName;
[Export]
public Vector2PropertyName textureSizePropertyName;
}
}