How to fix this

I was working on the main menu screen of my game when i came back to the gameplay scene i was looking like this

Looks like it’s time to start debugging!

By debugging you can find out exactly what your program is doing so you can fix it.

Use the above techniques to get the information you need in order to reason about what the problem is.

You can also use Debug.Log(...); statements to find out if any of your code is even running. Don’t assume it is.

Once you understand what the problem is, you may begin to reason about a solution to the problem.

Once you actually learn something about the problem, then…

How to report your problem productively in the Unity3D forums:

http://plbm.com/?p=220

This is the bare minimum of information to report:

  • what you want
  • what you tried
  • what you expected to happen
  • what actually happened, log output, variable values, and especially any errors you see
  • links to actual Unity3D documentation you used to cross-check your work (CRITICAL!!!)

The purpose of YOU providing links is to make our job easier, while simultaneously showing us that you actually put effort into the process. If you haven’t put effort into finding the documentation, why should we bother putting effort into replying?

1 Like

If the issue lies with the transparent icons in the world, press the button I circled here.

It turns off gizmos, which is what those icons are. They designate objects within the scene which serve certain purposes, like NavMesh agents or cameras.

1 Like