11 lines
181 B
C#
11 lines
181 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class SpinnyArmVisual : Node2D
|
|
{
|
|
public void SetAngle(float normalAngle)
|
|
{
|
|
Rotation = normalAngle * float.Pi * 2;
|
|
}
|
|
}
|