Fixed weird underline on UI text and made text bigger

Made-with: Cursor
This commit is contained in:
Leo Qu
2026-03-08 21:39:00 -04:00
parent 3d3285003f
commit 44fb8276ff
17 changed files with 1064 additions and 3956 deletions

View File

@@ -24,7 +24,7 @@ public class TopologyBuilder : MonoBehaviour
public string jsonFileName = "mockDataNewConfig";
public static Dictionary<string, GameObject> idToInstance = new();
public static bool _skipControlLibraryCalls = false;
public static bool _skipControlLibraryCalls = true;
public static bool SkipControlLibraryCalls => _skipControlLibraryCalls;
@@ -58,7 +58,7 @@ public class TopologyBuilder : MonoBehaviour
graph.Connections.Add(new Connection { FromModuleId = fromId, ToModuleId = toId, FromSocket = c.FromSocket ?? "MaleSocket", ToSocket = c.ToSocket ?? "FemaleSocket", Orientation = o });
}
Debug.Log($"[TopologyBuilder] Built from JSON: {jsonFileName}");
_skipControlLibraryCalls = skipControlLibraryCalls;
_skipControlLibraryCalls = true;
}
else
{