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.
我之前在此发布过并展示了我的代码,用于让子弹同时朝多个方向爆炸。
我只是想知道是否有人可以给我一个干净的例子,我可以离开。
我的想法是让我的左键单击让玩家投掷一枚手榴弹,当它与敌人碰撞时会爆炸并从各个方向射出子弹。
对不起,双重职位,谢谢。
if(whatever the collision code is for xna again) { bullets.add(new bullet(startpos, direction)) }
如果你扩展它......子弹是你用来管理你的子弹的任何东西,子弹是你新创建的粒子,起始位置是你发生碰撞的地方,方向将是你的子弹应该行进的方向(1代表北,ne,east,se,south,sw, west, nw) 或任何你想要的