mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
13 lines
262 B
C#
13 lines
262 B
C#
using TEngine.Runtime;
|
|
using TEngine.Runtime.Entity;
|
|
using UnityEngine;
|
|
|
|
public class LightEntity:EntityLogicEx
|
|
{
|
|
protected override void OnShow(object userData)
|
|
{
|
|
base.OnShow(userData);
|
|
|
|
Log.Debug(userData.ToString());
|
|
}
|
|
} |