Removed custom rotation and fixed placeholder naming (Import from blender had _ in the name

This commit is contained in:
=
2026-04-26 13:00:22 +02:00
parent c80367dccd
commit bd9de785b4
4 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ public class Placeholder
public Vector3 pos;
public Placeholder(string name, Vector3 pos){
this.name = name;
this.name = name.Split("_")[0];
this.pos = pos;
GD.Print($"Generated placeholder {this.name}");
}