This commit is contained in:
kridoo
2025-11-19 23:51:17 +08:00
parent 0ba6ef05dd
commit 6019406bc8
16 changed files with 375 additions and 72 deletions

View File

@@ -67,11 +67,15 @@ public class HandCatchFontCtr : MonoBehaviour
if (rightRunTime >= rightWaitTime)
{
isRightStartStay = false;
GlobalEventMgr.Dispatch(GameEvent.EventRayStart, 2);//2:<3A><><EFBFBD><EFBFBD>
GlobalEventMgr.Dispatch(GameEvent.EventRayStart,2);//2:<3A><><EFBFBD><EFBFBD>
}
}
}
public void RightHandPosCatchReset()
{
isRightStartStay = false;
rightRunTime = 0;
}
public void RightHandPosCatchEnd(bool isShow)
{
isRightStartStay = false;

View File

@@ -14,6 +14,7 @@ public class NengNiangQiuCtr : MonoBehaviour
// Start is called before the first frame update
void Start()
{
GlobalEventMgr.Listen<bool, int, int>(GameEvent.EventRayQuadOk, GameDataManage_EventRayQuadOk);
GlobalEventMgr.Listen<int>(GameEvent.EventHandRelease, GameDataManage_EventHandRelease);
GlobalEventMgr.Listen(GameEvent.EventHideCatchFont, GameDataManage_EventHideCatchFont);