Resource icon

FerndaleTuner 0.13

Login or Register an account to download this content
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.
ajanhallinta
ajanhallinta
Thanks!

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);
}
Good. Can i publish this mod in VK? I leave a link of course
ajanhallinta
ajanhallinta
You can post all my mods from this page. Link is appreciated :)

Latest News

What is the reason for your passion for sim racing?

  • Watching real motorsport

    Votes: 467 70.2%
  • Physics and mechanics

    Votes: 283 42.6%
  • Competition and adrenaline

    Votes: 306 46.0%
  • Practice for real racing

    Votes: 135 20.3%
  • Community and simracers

    Votes: 180 27.1%
Back
Top