Nuclear gun and 3D tests

This commit is contained in:
MaddoScientisto 2025-03-22 00:33:24 +01:00
commit d1d3a3fdd5
34 changed files with 750 additions and 55 deletions

12
Scripts/TestRotation3D.cs Normal file
View file

@ -0,0 +1,12 @@
using Godot;
using System;
public partial class TestRotation3D : Node3D
{
[Export] public float RotationSpeed = 1f;
public override void _PhysicsProcess(double delta)
{
this.RotateY(Mathf.DegToRad(RotationSpeed));
}
}