WiEngine Android中的随机动作

时间:2013-03-14 08:14:11

标签: android

我正在使用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);

由于

1 个答案:

答案 0 :(得分:3)

要以随机动作移动精灵,您可以使用MoveTo WiEngine方法。 MoveTo方法给你一个直线运动。

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

startXstartY你可以把x,y值放在你想要的位置