rj-action-library/Runtime/Actions/Node3D/CopyPosition.cs

32 lines
471 B
C#
Raw Normal View History

2024-08-04 09:08:12 +00:00
using Godot;
namespace Rokojori
{
[GlobalClass, Tool ]
2025-01-08 18:46:17 +00:00
public partial class CopyPosition : Action
2024-08-04 09:08:12 +00:00
{
[Export]
public Node3D source;
[Export]
public Node3D target;
public override void _Process( double delta )
{
_OnTrigger();
}
2025-01-08 18:46:17 +00:00
protected override void _OnTrigger()
2024-08-04 09:08:12 +00:00
{
if ( source == null || target == null )
{
return;
}
target.GlobalPosition = source.GlobalPosition;
}
}
}