UnityEditor.Unsupported.PasteToStateMachineFromPasteboard C# (CSharp) 메소드

PasteToStateMachineFromPasteboard() 공개 정적인 메소드

public static PasteToStateMachineFromPasteboard ( AnimatorStateMachine sm, AnimatorController controller, int layerIndex, Vector3 position ) : void
sm AnimatorStateMachine
controller AnimatorController
layerIndex int
position Vector3
리턴 void
        public static void PasteToStateMachineFromPasteboard(AnimatorStateMachine sm, AnimatorController controller, int layerIndex, Vector3 position)
        {
            Undo.RegisterCompleteObjectUndo(sm, "Paste to StateMachine");
            PasteToStateMachineFromPasteboardInternal(sm, controller, layerIndex, position);
        }