cocos2d 在第二个场景中启用触摸

发布于 2024-11-27 13:13:14 字数 197 浏览 2 评论 0原文

我有带按钮的菜单 当触摸播放按钮时 游戏转到另一个场景 但触摸在那里不起作用 我写 self.isToucheEnabled=YES; 在初始化方法中 并在onEnter方法中添加 [[CCTouchDispatcher sharedDispatcher] setDispatchEvents:YES];

但这行不通 请帮助我为什么可以启用触摸

i have menu with buttons
when touch the Play button
game go to another scene
but Touch don't work there
i'm write
self.isToucheEnabled=YES;
in init method
and add in onEnter method
[[CCTouchDispatcher sharedDispatcher] setDispatchEvents:YES];

but that don't work
pleas help why i can enable touch

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

最舍不得你 2024-12-04 13:13:14

您必须输入以下代码:

-(void) onEnter {
[[CCTouchDispatcher共享Dispatcher] addTargetedDelegate:自身优先级:0燕子触摸:是];
}

在您想要启用 TouchDispatcher 的场景中,然后在同一场景中确保输入以下内容:

-(void) onExit {
[[CCTouchDispatchersharedDispatcher]removeDelegate:self];
}

并且触摸应该在包含上述代码的每个场景中注册。

You must put the following code:

-(void) onEnter {
[[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self priority:0 swallowsTouches:YES];
}

inside the scene you want to enable the TouchDispatcher on, then in the same scene make sure you enter this:

-(void) onExit {
[[CCTouchDispatcher sharedDispatcher] removeDelegate: self];
}

and the touch should register in every scene that you have the above code in.

情域 2024-12-04 13:13:14

这是如何在 cocos2d 中定义菜单的示例 (来源):

CCMenuItem *starMenuItem = [CCMenuItemImage  temFromNormalImage:@"ButtonStar.jpg" selectedImage:@"ButtonStarSel.jpg" target:self selector:@selector(starButtonTapped:)];
starMenuItem.position = ccp(60, 60);
CCMenu *starMenu = [CCMenu menuWithItems:starMenuItem, nil];
starMenu.position = CGPointZero;
[self addChild:starMenu];

如果您需要更多帮助,请提供您用于创建菜单的代码。

This is an example of how you define a menu in cocos2d (source):

CCMenuItem *starMenuItem = [CCMenuItemImage  temFromNormalImage:@"ButtonStar.jpg" selectedImage:@"ButtonStarSel.jpg" target:self selector:@selector(starButtonTapped:)];
starMenuItem.position = ccp(60, 60);
CCMenu *starMenu = [CCMenu menuWithItems:starMenuItem, nil];
starMenu.position = CGPointZero;
[self addChild:starMenu];

If you need more help, please provide the code that you are using to create the menu.

初吻给了烟 2024-12-04 13:13:14

您还必须在标头的 CCLayer 中添加 UIGestureRecognizerDelegate 接口!

例如:

@interface YourScene : CCLayer <UIGestureRecognizerDelegate>  {
     }

You also have to add UIGestureRecognizerDelegate interface in your CCLayer in your header!

e.g.:

@interface YourScene : CCLayer <UIGestureRecognizerDelegate>  {
     }
夏至、离别 2024-12-04 13:13:14

在层中使用:-(

void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

不:-(

BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event

In the layer use:

-(void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

Not:

-(BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文