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

16 lines
308 B
C#
Raw Normal View History

2024-09-14 06:41:52 +00:00
using Godot;
namespace Rokojori
{
[Tool]
[GlobalClass,Icon("res://addons/rokojori_action_library/Icons/UI.svg")]
2024-09-14 06:41:52 +00:00
public partial class UISettings : Resource
{
[Export]
public Vector2PropertyName sizePropertyName;
[Export]
public Vector2PropertyName textureSizePropertyName;
2024-09-14 06:41:52 +00:00
}
}