3

我正在使用 WiEngine 在 Android 中开发游戏。我想知道游戏中的精灵会如何随机移动?我正在使用随机函数。

   Random gen=new Random();
   xPos=gen.nextInt(widthX);
   yPos=gen.nextInt(widthY);
   sp1=Sprite.make(texture);
   sp1.SetPosition(xPos,yPos);
   sp1.setVelocityX(30);
   sp1.setVelocity(40);

谢谢

4

1 回答 1

3

要以随机运动移动精灵,您可以MoveTo使用WiEngine. MoveTo方法给 ua 直线运动。

MoveTo move=(MoveTo)MoveTo.make(duration,startX, startY,endX,endY);
sprite.runAction(move);

在中startXstartY你可以把你想放的 x,y 值

于 2013-07-24T09:54:32.457 回答