大家好,我正在尝试更改导入为文件中的 var。谁能帮我指出来。
这是 externalfile.as 中的原始代码
private function SetNewPosition()
{
this.newX = this.GetRandomXPosition();
this.newY = this.GetRandomYPosition();
this.totalDistance = this.GetDistance();
var time:Number = this.totalDistance / this.speed;
speedX = (this.newX - this.x)/time;
speedY = (this.newY - this.y)/time;
}
我正在尝试从 Main.as 更改 newX 和 newY 请分享我如何解决这个问题,谢谢!