Files
MovementTests/addons/forge/editor/statescript/resolvers/ATan2ResolverEditor.cs
Minimata e09714cf83
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 27s
Create tag and build when new code gets to main / Export (push) Successful in 7m25s
update forge
2026-05-17 00:06:44 +02:00

22 lines
569 B
C#

// Copyright © Gamesmiths Guild.
#if TOOLS
using Gamesmiths.Forge.Godot.Editor.Statescript.Resolvers.Bases;
using Gamesmiths.Forge.Godot.Resources.Statescript.Resolvers;
using Godot;
namespace Gamesmiths.Forge.Godot.Editor.Statescript.Resolvers;
[Tool]
internal sealed partial class ATan2ResolverEditor : ScalarBinaryResolverEditorBase<ATan2ResolverResource>
{
public override string DisplayName => "ATan2";
public override string ResolverTypeId => "ATan2";
protected override string LeftTitle => "Y:";
protected override string RightTitle => "X:";
}
#endif