removed my beautiful print button, now it's for me only

This commit is contained in:
FreezeDriedMangoes 2022-12-05 22:14:59 -05:00
parent 82d8f9fdec
commit 32605861a7

View File

@ -236,19 +236,7 @@ namespace NewHorizons.Utility.DebugMenu
DebugNomaiTextPlacer.active = false; DebugNomaiTextPlacer.active = false;
}; };
} }
if (GUILayout.Button("Print arcInfo config"))
{
var str = "\"arcInfo\": [\n";
foreach (Transform spiral in conversationMeta.conversationGo.transform)
{
str += $"{{\"position\": {{\"x\": {spiral.localPosition.x}, \"y\": {spiral.localPosition.y}}}, \"zRotation\": {spiral.localRotation.z}";
if (spiral.transform.localScale.x < 0) str += ", \"mirror\": true ";
str += "},\n";
}
Logger.Log(str.Substring(0, str.Length-2) + "\n]");
}
// //
// spirals // spirals
// //