Files
DuckovMods/SceneView/PatchGameObjectStart.cs
2025-11-08 14:03:17 +08:00

14 lines
331 B
C#

using HarmonyLib;
using UnityEngine;
namespace SceneView
{
// [HarmonyPatch(typeof(GameObject), "Internal_CreateGameObject")]
// public class PatchGameObjectStart
// {
// static void Postfix(GameObject __instance)
// {
// Debug.Log($"{__instance.name}初始化了");
// }
// }
}