UnityEditor.Unsupported.CopyGameObjectsToPasteboard C# (CSharp) Méthode

CopyGameObjectsToPasteboard() private méthode

private CopyGameObjectsToPasteboard ( ) : void
Résultat void
        public static extern void CopyGameObjectsToPasteboard();
        public static void CopyStateMachineDataToPasteboard(Object stateMachineObject, AnimatorController controller, int layerIndex)

Usage Example

 internal static void CopyGO()
 {
     CutBoard.Reset();
     FilterSelection(canCopyGameObject);
     copyingGameObjects?.Invoke(Selection.gameObjects);
     Unsupported.CopyGameObjectsToPasteboard();
 }
All Usage Examples Of UnityEditor.Unsupported::CopyGameObjectsToPasteboard