Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在网上寻找如何在 rondom 随机生成 Enemy Sprites 的方法,我正在制作一款涉及精灵跳跃的游戏,它必须躲避这些“敌人”精灵或阻挡其路径的物体。
如果有人对如何做到这一点有任何想法,你能帮帮我吗?提前致谢!
你使用objective-c的随机数函数来创建一个随机位置......
sprite.position = ccp( arc4random_uniform( 800 ), arc4random_uniform( 600 ) );