#nullable enable using UnityEngine; using UVC.UI.Commands; namespace UVC.Studio.Command { /// /// GLTF 내보내기 커맨드 /// public class FileExportGltfCommand : ICommand { public void Execute(object? parameter = null) { Debug.Log("[FileExportGltfCommand] GLTF 내보내기 실행"); } } }