|
AI Testing Simulator
|
Represents an interface for a base view. More...
Public Member Functions | |
| void | OnChangePosition (float x, float y) |
| Called when the position of the corresponding object changes. | |
| void | OnChangeRotation (float angle) |
| Called when the rotation of the corresponding object changes. | |
| void | OnChangeColor (Color color) |
| Called when the color of the corresponding object changes. | |
Represents an interface for a base view.
| void IBaseView.OnChangeColor | ( | Color | color | ) |
Called when the color of the corresponding object changes.
| color | The new color of the view. |
Implemented in VehicleViewController, AdversaryViewController, EgoViewController, and WaypointViewController.
| void IBaseView.OnChangePosition | ( | float | x, |
| float | y | ||
| ) |
Called when the position of the corresponding object changes.
| x | The new x-coordinate of the view's position. |
| y | The new y-coordinate of the view's position. |
Implemented in AdversaryViewController, VehicleViewController, and WaypointViewController.
| void IBaseView.OnChangeRotation | ( | float | angle | ) |
Called when the rotation of the corresponding object changes.
| angle | The new angle of the view's rotation. |
Implemented in VehicleViewController, and WaypointViewController.