如何在cocos2d中移动CCLayer

发布于 2024-10-09 01:56:57 字数 73 浏览 6 评论 0原文

谁能告诉我如何移动 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 技术交流群。

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

发布评论

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

评论(5

剪不断理还乱 2024-10-16 01:56:57

本教程将教您如何制作一个与涂鸦跳跃非常相似的游戏:
教程第 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.

情愿 2024-10-16 01:56:57

使用 CCFollow 操作。

让你的背景精灵高度大约 1000 px。

[self runAction:[CCFollow actionWithTarget:(u r hero) worldBoundary:CGRectMake(0,0,480,1050)]];

Use CCFollow actions.

Make your background sprite height some 1000 px.

[self runAction:[CCFollow actionWithTarget:(u r hero) worldBoundary:CGRectMake(0,0,480,1050)]];
安穩 2024-10-16 01:56:57

查看 cocos2d 附带的 cocos2d 示例代码中的图块地图代码。

Look at the tile maps code from the cocos2d sample code that is included with cocos2d.

烟─花易冷 2024-10-16 01:56:57

对于标题中的问题最基本的答案是:

CCLayer 是 CCNode,可以通过重新定位来移动:

myLayer.position = ccp(x,y);

The most basic answer to the question in the title is:

a CCLayer is a CCNode and can be moved by repositioning it:

myLayer.position = ccp(x,y);
囍孤女 2024-10-16 01:56:57

使用 ccaction 如 ccmoveby 或 ccmoveto 等,

use ccaction like ccmoveby or ccmoveto , etc.,

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