I want to be able to quickly find all objects in a scene that are not set to lightmap static. Is there a search I can type in the scene search that will give me all GameObjects not set to lightmap static?
There’s not a natural search built in that I know of but you can easily get the info with an editor script and methods in this class:
Hi! I know this is a late reply, but for future references you can check the documentation for Search. With Search, you can search your current scene (Unity - Manual: Search the current Scene) for objects with different properties. For example, the query
h: -static=LightmapStatic
will yield the objects that are not equals to LightmapStatic. However, please note that static=LightmapStatic
means only equal to LightmapStatic, so if other bits are set it will not yield the proper results.