Excelent Mod. I'd like to do a similar mod. Can you help me? How do I find the list of gameobjects names for moddifi?
For example, a mod to choose the tool without going into the toolbox.
I am C # (web) developer, but I have no knowledge about Unity.
You can use foreach loop and ModConsole.Print to find out GameObject names. One approach could be like:
GameObject[] gos = GameObject.FindObjectsOfType<GameObject>();
foreach(GameObject go in gos) {
ModConsole.Print(go.name);
}