This commit is contained in:
정영민
2025-02-20 09:59:37 +09:00
parent 4dfe902e02
commit 2dd5d814a7
6244 changed files with 4671685 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
[CustomEditor(typeof(TransformBundleCopy))]
public class TransformBundleCopyEditor : Editor
{
public override void OnInspectorGUI()
{
base.OnInspectorGUI();
TransformBundleCopy copy = target as TransformBundleCopy;
if (GUILayout.Button("Copy"))
{
copy.Copy();
}
}
}