rj-action-library/Runtime/Rendering/FontFX/FontKerningPair.cs

20 lines
296 B
C#
Raw Permalink Normal View History

2025-08-31 06:05:39 +00:00
using Godot;
using System.Collections.Generic;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class FontKerningPair: Resource
{
[Export]
public int kerningGroupBefore;
[Export]
public int kerningGroupAfter;
[Export]
public float kerningWidth;
}
}