作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将触摸位置从 GameplayLayer 传递到 HUDLayer 以查看用户是否按下控制按钮。
HudLayer.mm
-(void) handleTouchAtLocation:(CGPoint) location {
NSLog(@"Touch passed to HUD");
}
游戏玩法.mm
enum {
kHudLayer = 2;
};
+(CCScene *) scene {
CCScene *scene = [CCScene node];
HudLayer *hud = [HudLayer node];
[scene addChild:hud z:kHudLayer];
GameplayLayer *layer = [GameplayLayer node];
[scene addChild:layer];
return scene;
}
-(void) ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
for( UITouch *touch in touches ) {
CGPoint location = [touch locationInView: [touch view]];
location = [[CCDirector sharedDirector] convertToGL: location];
[self handTouchAtPoint:(location)];
}
}
-(void) handleTouchAtPoint:(CGPoint)location {
NSLog(@"Touch At Point");
HudLayer *h1 = (HudLayer *)[self.parent getChildWithTag:kHudLayer];
[h1 handleTouchAtLocation:location];
}
HudLayer.h 导入到 GameplayLayer.h 中。我收到“Touch At Point”日志,但由于某种原因它没有进入 HUD 层..
最佳答案
唯一的解释是 self.parent
没有带有标签 kHudLayer
的子级。如果您在handleTouchAtPoint中设置断点,您会发现在执行getChildWithTag
行后,h1
为零。
关于ios - 正确链接 HUDLayer 到 GameplayLayer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12783823/
我正在尝试将触摸位置从 GameplayLayer 传递到 HUDLayer 以查看用户是否按下控制按钮。 HudLayer.mm -(void) handleTouchAtLocation:(CGP
我创建了一个 HudLayer 类,它定义了按下按钮时发生的协议(protocol)。 -(id) init { if( (self=[super initWithColor:ccc4(255
我是一名优秀的程序员,十分优秀!