Object parenting; Ship module prototype; Use 64 bit

This commit is contained in:
Aslan 2026-01-24 23:05:19 -05:00
parent 3f97e18615
commit 8335714acc
30 changed files with 436 additions and 62 deletions

View file

@ -0,0 +1,11 @@
using Godot;
public partial class VesselModuleNode : StaticBody3D
{
public VesselModule ModuleData { get; private set; }
public Node3D GetAnchor(string name)
{
return GetNode<Node3D>(name);
}
}