profile debugging

This commit is contained in:
Snorre 2025-04-05 03:38:23 +02:00
parent 05308d88f1
commit f27ff5d993

View file

@ -35,7 +35,8 @@ public partial class XRHand : XRController3D
continue;
}
if (body.Mass > strength) {
if (body.Mass > strength)
{
continue;
}
@ -53,4 +54,9 @@ public partial class XRHand : XRController3D
joints.Clear();
}
}
public void OnProfileChange(string name) {
GD.Print("Profile changed to:");
GD.Print(name);
}
}