Version: 2020.3
LanguageEnglish
  • C#

SceneVisibilityManager

class in UnityEditor

/

Inherits from:ScriptableSingleton_1

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Manages Scene Visibility in the editor.

Public Methods

AreAllDescendantsHiddenChecks whether all the descendants of a GameObject are hidden.
AreAllDescendantsVisibleChecks whether all the descendants are visible.
AreAnyDescendantsHiddenChecks whether any descendants are hidden.
DisableAllPickingDisables picking on all GameObjects.
DisablePickingDisables picking on a GameObject, or an Array of GameObjects, and their descendants.
EnableAllPickingEnables picking on all GameObjects.
EnablePickingEnables picking on a GameObject, or an array of GameObjects, and its descendants.
ExitIsolationExits Isolation Mode.
HideHides a GameObject, or an Array of GameObjects, and their descendants.
HideAllHides all GameObjects.
IsCurrentStageIsolatedChecks whether the current stage is in Isolation mode.
IsHiddenChecks the hidden state of a GameObject and, optionally, its descendants.
IsolateIsolates a GameObject and its descendants.
IsPickingDisabledChecks the picking state of a GameObject and, optionally, its descendants.
IsPickingDisabledOnAllDescendantsChecks whether all the descendants of a GameObject have picking disabled.
IsPickingDisabledOnAnyDescendantChecks whether any descendants have picking disabled.
IsPickingEnabledOnAllDescendantsChecks whether all the descendants are pickable.
ShowShows a GameObject, or an array of GameObjects, and its descendants.
ShowAllShows all GameObjects.
TogglePickingToggles the picking ability of a GameObject.
ToggleVisibilityToggles the visible state of a GameObject.

Events

pickingChangedThe event raised whenever the picking state of a GameObject changes.
visibilityChangedThe event raised whenever the visibility of a GameObject changes.

Inherited Members

Static Properties

instanceGets the instance of the Singleton. Unity creates the Singleton instance when this property is accessed for the first time. If you use the FilePathAttribute, then Unity loads the data on the first access as well.

Properties

hideFlagsShould the object be hidden, saved with the Scene or modifiable by the user?
nameThe name of the object.

Public Methods

GetInstanceIDReturns the instance id of the object.
ToStringReturns the name of the object.

Protected Methods

SaveSaves the current state of the ScriptableSingleton.

Static Methods

DestroyRemoves a GameObject, component or asset.
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
DontDestroyOnLoadDo not destroy the target Object when loading a new Scene.
FindAnyObjectByTypeRetrieves any active loaded object of Type type.
FindFirstObjectByTypeRetrieves the first active loaded object of Type type.
FindObjectOfTypeReturns the first active loaded object of Type type.
FindObjectsByTypeRetrieves a list of all loaded objects of Type type.
FindObjectsOfTypeGets a list of all loaded objects of Type type.
InstantiateClones the object original and returns the clone.
CreateInstanceCreates an instance of a scriptable object.
GetFilePathGet the file path where this ScriptableSingleton is saved to.

Operators

boolDoes the object exist?
operator !=Compares if two objects refer to a different object.
operator ==Compares two object references to see if they refer to the same object.

Messages

AwakeThis function is called when the ScriptableObject script is started.
OnDestroyThis function is called when the scriptable object will be destroyed.
OnDisableThis function is called when the scriptable object goes out of scope.
OnEnableThis function is called when the object is loaded.
OnValidateEditor-only function that Unity calls when the script is loaded or a value changes in the Inspector.
ResetReset to default values.