You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VM540 WAGame.js:1 ReferenceError: Event is not defined
at List._onTouchStart (List.ts:1351)
at CallbacksInvoker.emit (callbacks-invoker.ts:344)
at NodeEventProcessor.dispatchEvent (node-event-processor.ts:288)
错误代码:
错误原因:
没有从cc导入Event,默认的Event是个dom事件对象,在小游戏环境中是没有dom的。
解决方式:
增加代码如下import { Event } from "cc"就可以额
The text was updated successfully, but these errors were encountered:
错误如下:
错误代码:
![image](https://user-images.githubusercontent.com/19412325/212268153-e25eb4b5-4b2c-4a0d-b5b6-4a96a992c725.png)
错误原因:
没有从cc导入Event,默认的Event是个dom事件对象,在小游戏环境中是没有dom的。
解决方式:
增加代码如下
import { Event } from "cc"
就可以额The text was updated successfully, but these errors were encountered: