| Package | com.lookbackon.AI.steeringBehavior |
| Interface | public interface IVehicle |
| Property | Defined By | ||
|---|---|---|---|
| edgeBehavior : String
Sets / gets what will happen if character hits edge. | IVehicle | ||
| mass : Number
Sets / gets mass of character. | IVehicle | ||
| maxSpeed : Number
Sets / gets maximum speed of character. | IVehicle | ||
| position : Vector2D
Sets / gets position of character as a Vector2D. | IVehicle | ||
| velocity : Vector2D
Sets / gets velocity of character as a Vector2D. | IVehicle | ||
| x : Number [write-only]
Sets x position of character. | IVehicle | ||
| y : Number [write-only]
Sets y position of character. | IVehicle | ||
| Method | Defined By | ||
|---|---|---|---|
update():void
update vehicle 's properties. | IVehicle | ||
| edgeBehavior | property |
edgeBehavior:StringSets / gets what will happen if character hits edge.
public function get edgeBehavior():String public function set edgeBehavior(value:String):void| mass | property |
mass:NumberSets / gets mass of character.
public function get mass():Number public function set mass(value:Number):void| maxSpeed | property |
maxSpeed:NumberSets / gets maximum speed of character.
public function get maxSpeed():Number public function set maxSpeed(value:Number):void| position | property |
position:Vector2DSets / gets position of character as a Vector2D.
public function get position():Vector2D public function set position(value:Vector2D):void| velocity | property |
velocity:Vector2DSets / gets velocity of character as a Vector2D.
public function get velocity():Vector2D public function set velocity(value:Vector2D):void| x | property |
x:Number [write-only] Sets x position of character. Overrides Sprite.x to set internal Vector2D position as well.
public function set x(value:Number):void| y | property |
y:Number [write-only] Sets y position of character. Overrides Sprite.y to set internal Vector2D position as well.
public function set y(value:Number):void| update | () | method |
public function update():voidupdate vehicle 's properties.