This commit is contained in:
CortexCore
2024-03-25 16:08:26 +08:00
parent 65d90d1bfa
commit 967ad8eacf
67 changed files with 3097 additions and 39530 deletions

View File

@@ -0,0 +1,34 @@
using System.Collections;
using System.Collections.Generic;
using BITKit;
using BITKit.Animations;
using BITKit.GameEditor;
using BITKit.UX;
using UnityEditor;
using UnityEngine;
using UnityEngine.UIElements;
namespace BITFALL.GameEditor
{
public class MotionMatchingEditor : ScriptableObjectGroupEditor<ScriptableMotionMatchingObject>
{
protected override string AssetsPath => "Assets/Artists/Configs/MotionMatching/";
[MenuItem("Tools/ScriptableObjectEditor/Motion Matching")]
public static void Open()
{
var window = GetWindow<MotionMatchingEditor>();
window.titleContent = new GUIContent("Motion Matching Editor");
window.Show();
}
protected override void BindItem(VisualElement arg1, int arg2)
{
var item = List[arg2];
var container = new UXContainer(arg1);
container.contextLabel.text = item.name;
//container.icon.style.backgroundImage = item.SquareIcon;
}
}
}