我想在游戏开始 5 分钟后取消计划更新方法。
我在我的类的构造函数中安排了我的更新方法。
scheduleUpdate();
我正在尝试通过调用停止更新方法来取消安排我的选择器。但这不是计划外的。
runAction(Sequence::createWithTwoActions(
DelayTime::create(5.0f),
CallFuncN::create(this, callfuncN_selector(GameScene::stopupdate))));
Stopupdate method :-
unscheduleUpdate();