如何在cocos2d中移动CCLayer
谁能告诉我如何移动 CClayer。就像 DoodleJump 一样,当对象向上移动时,背景也会向上移动。请用一些示例代码解释一下。
Can any one tell me how to move a CClayer. Like DoodleJump when object will move upward the background will also move upward.Plz Explain me with some sample code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
本教程将教您如何制作一个与涂鸦跳跃非常相似的游戏:
教程第 1 部分
希望有帮助:)
PS
查看这个人的频道,他可以解决您的背景问题。
This tutorial will teach you how to make a game very similar to doodle jump:
Tutorial Part 1
Hope it helps :)
P.S.
Check out this guys' channel he has the solution to your background problem.
使用
CCFollow
操作。让你的背景精灵高度大约 1000 px。
Use
CCFollow
actions.Make your background sprite height some 1000 px.
查看 cocos2d 附带的 cocos2d 示例代码中的图块地图代码。
Look at the tile maps code from the cocos2d sample code that is included with cocos2d.
对于标题中的问题最基本的答案是:
CCLayer 是 CCNode,可以通过重新定位来移动:
The most basic answer to the question in the title is:
a CCLayer is a CCNode and can be moved by repositioning it:
使用 ccaction 如 ccmoveby 或 ccmoveto 等,
use ccaction like ccmoveby or ccmoveto , etc.,