Update TestZhongLi.cs

pull/1/head
zhangxl 2024-07-19 10:52:40 +08:00
parent b99d4df2cb
commit 73ea5e97f3
1 changed files with 9 additions and 3 deletions

View File

@ -2,8 +2,14 @@
namespace ZC
{
public class TestZhongLi
public class TestZhongLi : GameObjectBase<TestZhongLi>
{
public override void OnUpdate(float dateTime)
{
base.OnUpdate(dateTime);
Debug.Log("没找到?");
}
public void Update()
{
if (SystemInfo.supportsGyroscope)
@ -17,8 +23,8 @@ namespace ZC
}
else
{
Debug.Log("没找到?");
}
// Debug.Log("没找到?");
}
}
}
}