Hi,
My Unity 2017.1 does not show any object properties in the inspector.
Click on down arrow and anything else not working to bring up properties. (spent 1 hour plus trying to get properties to appear… no luck).
See screen shot. Help to fix.
Hi,
My Unity 2017.1 does not show any object properties in the inspector.
Click on down arrow and anything else not working to bring up properties. (spent 1 hour plus trying to get properties to appear… no luck).
See screen shot. Help to fix.
I have had no response. Can someone comment? Note the Inspector window on the right does not show any properties of any objects. I have 4 years Unity experience so not a newbie. Created around 30-40 projects (Demo’s)… Intermediate user.
Have you downloaded any third party assets? It could be that you’ve got a custom inspector for all objects that are broken. I’ve seen that happen to people before.
That could well be it! I will have to play around more with it. GameFlow is a key asset I like to use.
I can confirm that you Baste - are correct. It is due to some other third party assets - I will progressive re-import my assets to see which one may be break Unity - if any. Thanks for getting me past this sticking point.
To make it easier, you could search for “CustomInspector” in all of your code. You’re looking for something like:
[CustomInspector(typeof(Object))]
or
[CustomInspector(typeof(UnityEngine.Object))]
or
[CustomInspector(typeof(MonoBehaviour))]
, etc. That’ll be your culprit.