feat: 场景快照支持打印组件值

This commit is contained in:
m0_75251201
2025-11-03 18:56:20 +08:00
parent 2b7943339c
commit 0206a83f56
31 changed files with 455 additions and 61 deletions

17
UIFrame/ModBehaviour.cs Normal file
View File

@@ -0,0 +1,17 @@
using UnityEngine;
namespace UIFrame
{
public class ModBehaviour:Duckov.Modding.ModBehaviour
{
protected override void OnAfterSetup()
{
Debug.Log("OnAfterSetup");
}
protected override void OnBeforeDeactivate()
{
Debug.Log("OnBeforeDeactivate");
}
}
}