Files
DuckovMods/CharacterPreview/ShowListen.cs

21 lines
430 B
C#
Raw Normal View History

2025-11-18 18:45:14 +08:00
using System;
using Cysharp.Threading.Tasks;
using UnityEngine;
namespace CharacterPreview
{
public class ShowListen:MonoBehaviour
{
private void OnEnable()
{
try
{
_ = ModBehaviour.CreateCharacterModel();
}
catch (Exception ex)
{
Debug.LogError($"创建角色模型失败: {ex}");
}
}
}
}