异步加载已修复, Config更新正推动

This commit is contained in:
2025-12-18 15:11:33 +08:00
parent 1436080fd6
commit ab60b35be2
20 changed files with 190 additions and 132 deletions

View File

@@ -1,6 +1,6 @@
using Convention;
using Demo.Game.Attr;
using System;
using Demo.Game.ConfigType;
using UnityEngine;
namespace Demo.Game
@@ -8,6 +8,10 @@ namespace Demo.Game
[Scriptable]
public class TickRotation : Updatement<Vector3>
{
protected override ScriptLoadableConfig MakeConfig()
{
return new UpdatementVec3Config();
}
public static TickRotation Make()
{
return new GameObject().AddComponent<TickRotation>();