1

我现在在我的游戏中有这样的东西:

它是 UIScrollView 中的 UIView。这个 UIView 可以是 480px 或 960 等宽度。

+-----------------+
+   UIScrollView  +
++---------------++                 
++    UIView     ++
++               ++
++ p             ++
++---------------++
+-----------------+

如果我移动玩家p(在屏幕上),他会向右移动。当他靠近右侧时,uiscrollview 更改偏移量并将 uiview 移动到左侧,并且播放器位于屏幕左侧。我怎样才能在 cocos2d 中实现这样的东西?如何在 cocos2d 中实现 UIScrollView?

谢谢你的帮助。我是 cocos2d 的新手。在 clear Cocoa Touch 中,我的游戏运行正常。

4

1 回答 1

1

你可能需要像 CCScrollLayer 这样的东西:

https://github.com/cocos2d/cocos2d-iphone-extensions/tree/develop/Extensions/CCScrollLayer

于 2013-01-09T19:20:10.393 回答