UnityEditor.Selection.Remove C# (CSharp) Method

Remove() static private method

static private Remove ( Object obj ) : void
obj Object
return void
        internal static void Remove(Object obj)
        {
            if (obj != null)
            {
                Remove(obj.GetInstanceID());
            }
        }

Same methods

Selection::Remove ( int instanceID ) : void

Usage Example

示例#1
0
 internal static void Remove(UnityEngine.Object obj)
 {
     if (obj != null)
     {
         Selection.Remove(obj.GetInstanceID());
     }
 }
All Usage Examples Of UnityEditor.Selection::Remove