Refactor ISceneContextWindow into ISceneEditingContext with more utilities
#3257
This commit is contained in:
@@ -168,7 +168,14 @@ namespace FlaxEditor.SceneGraph
|
||||
|
||||
/// <summary>
|
||||
/// Gets the list of selected scene graph nodes in the editor context.
|
||||
/// [Deprecated in v1.10]
|
||||
/// </summary>
|
||||
public abstract List<SceneGraphNode> Selection { get; }
|
||||
[Obsolete("Use SceneContext.Selection instead.")]
|
||||
public List<SceneGraphNode> Selection => SceneContext.Selection;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the list of selected scene graph nodes in the editor context.
|
||||
/// </summary>
|
||||
public abstract ISceneEditingContext SceneContext { get; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user