UnityEditor.Unsupported.CopyGameObjectsToPasteboard C# (CSharp) Method

CopyGameObjectsToPasteboard() private method

private CopyGameObjectsToPasteboard ( ) : void
return 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