现场菜单不可移动
我想在我的 cocos2d 场景中添加一个菜单,但我不想随着场景的位置移动它。 (我明白,如果我们在场景中添加一些东西,那么它会随着场景移动,所以请为我提供任何替代解决方案)。
I want to add a menu on my cocos2d scene, but I don't want to move it with scene's position. (I understand that, if we add something on scene, then that will move with scene, so please provide me any alternative solution).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你不要移动场景。相反,将菜单项放在场景中的一个图层上,然后将场景中的其余内容放在另一个图层中,然后移动该图层而不是整个场景。
I would suggest you don't move the scene. Instead put your menu item on a layer within the scene and then the rest of what was in your scene in another layer, then move that layer instead of the whole scene.