2019-07-26 17:25:49 +08:00
2020-03-02 16:40:34 +08:00
#Blueprint Library
2020-04-17 18:29:54 +08:00
The Blueprint Library ([`carla.BlueprintLibrary`](../python_api/#carlablueprintlibrary-class)) is a summary of all [`carla.ActorBlueprint` ](../python_api/#carla.ActorBlueprint ) and its attributes ([`carla.ActorAttribute`](../python_api/#carla.ActorAttribute)) available to the user in CARLA.
2019-08-01 21:42:19 +08:00
Here is an example code for printing all actor blueprints and their attributes:
```py
blueprints = [bp for bp in world.get_blueprint_library().filter('*')]
for blueprint in blueprints:
print(blueprint.id)
for attr in blueprint:
2019-10-04 01:08:53 +08:00
print(' - {}'.format(attr))
2019-08-01 21:42:19 +08:00
```
2020-05-27 01:18:14 +08:00
Check out the [introduction to blueprints ](core_actors.md ).
2019-07-26 17:25:49 +08:00
2019-10-04 01:08:53 +08:00
### controller
- **< font color = "#498efc" > controller.ai.walker</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
### sensor
- **< font color = "#498efc" > sensor.camera.depth</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `fov` (_Float_)< sub > _ – Modifiable_</ sub >
- `image_size_x` (_Int_)< sub > _ – Modifiable_</ sub >
- `image_size_y` (_Int_)< sub > _ – Modifiable_</ sub >
- `lens_circle_falloff` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_circle_multiplier` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_k` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_kcube` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_x_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_y_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
2020-05-27 01:18:14 +08:00
- **< font color = "#498efc" > sensor.camera.dvs</ font > **
- **Attributes:**
- `black_clip` (_Float_)< sub > _ – Modifiable_</ sub >
- `blade_count` (_Int_)< sub > _ – Modifiable_</ sub >
- `blur_amount` (_Float_)< sub > _ – Modifiable_</ sub >
- `blur_radius` (_Float_)< sub > _ – Modifiable_</ sub >
- `calibration_constant` (_Float_)< sub > _ – Modifiable_</ sub >
- `chromatic_aberration_intensity` (_Float_)< sub > _ – Modifiable_</ sub >
- `chromatic_aberration_offset` (_Float_)< sub > _ – Modifiable_</ sub >
- `enable_postprocess_effects` (_Bool_)< sub > _ – Modifiable_</ sub >
- `exposure_compensation` (_Float_)< sub > _ – Modifiable_</ sub >
- `exposure_max_bright` (_Float_)< sub > _ – Modifiable_</ sub >
- `exposure_min_bright` (_Float_)< sub > _ – Modifiable_</ sub >
- `exposure_mode` (_String_)< sub > _ – Modifiable_</ sub >
- `exposure_speed_down` (_Float_)< sub > _ – Modifiable_</ sub >
- `exposure_speed_up` (_Float_)< sub > _ – Modifiable_</ sub >
- `focal_distance` (_Float_)< sub > _ – Modifiable_</ sub >
- `fov` (_Float_)< sub > _ – Modifiable_</ sub >
- `fstop` (_Float_)< sub > _ – Modifiable_</ sub >
- `gamma` (_Float_)< sub > _ – Modifiable_</ sub >
- `image_size_x` (_Int_)< sub > _ – Modifiable_</ sub >
- `image_size_y` (_Int_)< sub > _ – Modifiable_</ sub >
- `iso` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_circle_falloff` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_circle_multiplier` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_k` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_kcube` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_x_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_y_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `log_eps` (_Float_)< sub > _ – Modifiable_</ sub >
- `min_fstop` (_Float_)< sub > _ – Modifiable_</ sub >
- `motion_blur_intensity` (_Float_)< sub > _ – Modifiable_</ sub >
- `motion_blur_max_distortion` (_Float_)< sub > _ – Modifiable_</ sub >
- `motion_blur_min_object_screen_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `negative_threshold` (_Float_)< sub > _ – Modifiable_</ sub >
- `positive_threshold` (_Float_)< sub > _ – Modifiable_</ sub >
- `refractory_period_ns` (_Int_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
- `shoulder` (_Float_)< sub > _ – Modifiable_</ sub >
- `shutter_speed` (_Float_)< sub > _ – Modifiable_</ sub >
- `sigma_negative_threshold` (_Float_)< sub > _ – Modifiable_</ sub >
- `sigma_positive_threshold` (_Float_)< sub > _ – Modifiable_</ sub >
- `slope` (_Float_)< sub > _ – Modifiable_</ sub >
- `temp` (_Float_)< sub > _ – Modifiable_</ sub >
- `tint` (_Float_)< sub > _ – Modifiable_</ sub >
- `toe` (_Float_)< sub > _ – Modifiable_</ sub >
- `use_log` (_Bool_)< sub > _ – Modifiable_</ sub >
- `white_clip` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > sensor.camera.rgb</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `black_clip` (_Float_)< sub > _ – Modifiable_</ sub >
- `blade_count` (_Int_)< sub > _ – Modifiable_</ sub >
- `blur_amount` (_Float_)< sub > _ – Modifiable_</ sub >
- `blur_radius` (_Float_)< sub > _ – Modifiable_</ sub >
- `calibration_constant` (_Float_)< sub > _ – Modifiable_</ sub >
- `chromatic_aberration_intensity` (_Float_)< sub > _ – Modifiable_</ sub >
- `chromatic_aberration_offset` (_Float_)< sub > _ – Modifiable_</ sub >
- `enable_postprocess_effects` (_Bool_)< sub > _ – Modifiable_</ sub >
- `exposure_compensation` (_Float_)< sub > _ – Modifiable_</ sub >
- `exposure_max_bright` (_Float_)< sub > _ – Modifiable_</ sub >
- `exposure_min_bright` (_Float_)< sub > _ – Modifiable_</ sub >
- `exposure_mode` (_String_)< sub > _ – Modifiable_</ sub >
- `exposure_speed_down` (_Float_)< sub > _ – Modifiable_</ sub >
- `exposure_speed_up` (_Float_)< sub > _ – Modifiable_</ sub >
- `focal_distance` (_Float_)< sub > _ – Modifiable_</ sub >
- `fov` (_Float_)< sub > _ – Modifiable_</ sub >
- `fstop` (_Float_)< sub > _ – Modifiable_</ sub >
- `gamma` (_Float_)< sub > _ – Modifiable_</ sub >
- `image_size_x` (_Int_)< sub > _ – Modifiable_</ sub >
- `image_size_y` (_Int_)< sub > _ – Modifiable_</ sub >
- `iso` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_circle_falloff` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_circle_multiplier` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_k` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_kcube` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_x_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_y_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `min_fstop` (_Float_)< sub > _ – Modifiable_</ sub >
- `motion_blur_intensity` (_Float_)< sub > _ – Modifiable_</ sub >
- `motion_blur_max_distortion` (_Float_)< sub > _ – Modifiable_</ sub >
- `motion_blur_min_object_screen_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
- `shoulder` (_Float_)< sub > _ – Modifiable_</ sub >
- `shutter_speed` (_Float_)< sub > _ – Modifiable_</ sub >
- `slope` (_Float_)< sub > _ – Modifiable_</ sub >
- `temp` (_Float_)< sub > _ – Modifiable_</ sub >
- `tint` (_Float_)< sub > _ – Modifiable_</ sub >
- `toe` (_Float_)< sub > _ – Modifiable_</ sub >
- `white_clip` (_Float_)< sub > _ – Modifiable_</ sub >
- **< font color = "#498efc" > sensor.camera.semantic_segmentation</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `fov` (_Float_)< sub > _ – Modifiable_</ sub >
- `image_size_x` (_Int_)< sub > _ – Modifiable_</ sub >
- `image_size_y` (_Int_)< sub > _ – Modifiable_</ sub >
- `lens_circle_falloff` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_circle_multiplier` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_k` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_kcube` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_x_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `lens_y_size` (_Float_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
- **< font color = "#498efc" > sensor.lidar.ray_cast</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2020-07-06 17:09:48 +08:00
- `atmosphere_attenuation_rate` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- `channels` (_Int_)< sub > _ – Modifiable_</ sub >
2020-07-06 17:09:48 +08:00
- `dropoff_general_rate` (_Float_)< sub > _ – Modifiable_</ sub >
- `dropoff_intensity_limit` (_Float_)< sub > _ – Modifiable_</ sub >
- `dropoff_zero_intensity` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- `lower_fov` (_Float_)< sub > _ – Modifiable_</ sub >
- `points_per_second` (_Int_)< sub > _ – Modifiable_</ sub >
- `range` (_Float_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `rotation_frequency` (_Float_)< sub > _ – Modifiable_</ sub >
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
- `upper_fov` (_Float_)< sub > _ – Modifiable_</ sub >
- **< font color = "#498efc" > sensor.other.collision</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- **< font color = "#498efc" > sensor.other.gnss</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-11-15 23:47:35 +08:00
- `noise_alt_bias` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_alt_stddev` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_lat_bias` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_lat_stddev` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_lon_bias` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_lon_stddev` (_Float_)< sub > _ – Modifiable_</ sub >
2019-11-20 02:45:59 +08:00
- `noise_seed` (_Int_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
- **< font color = "#498efc" > sensor.other.imu</ font > **
- **Attributes:**
- `noise_accel_stddev_x` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_accel_stddev_y` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_accel_stddev_z` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_gyro_bias_x` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_gyro_bias_y` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_gyro_bias_z` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_gyro_stddev_x` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_gyro_stddev_y` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_gyro_stddev_z` (_Float_)< sub > _ – Modifiable_</ sub >
- `noise_seed` (_Int_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2019-11-15 23:47:35 +08:00
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > sensor.other.lane_invasion</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- **< font color = "#498efc" > sensor.other.obstacle</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `debug_linetrace` (_Bool_)< sub > _ – Modifiable_</ sub >
- `distance` (_Float_)< sub > _ – Modifiable_</ sub >
- `hit_radius` (_Float_)< sub > _ – Modifiable_</ sub >
- `only_dynamics` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
2019-12-09 22:54:53 +08:00
- **< font color = "#498efc" > sensor.other.radar</ font > **
- **Attributes:**
- `horizontal_fov` (_Float_)< sub > _ – Modifiable_</ sub >
- `points_per_second` (_Int_)< sub > _ – Modifiable_</ sub >
- `range` (_Float_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sensor_tick` (_Float_)< sub > _ – Modifiable_</ sub >
- `vertical_fov` (_Float_)< sub > _ – Modifiable_</ sub >
2020-04-17 18:29:54 +08:00
- **< font color = "#498efc" > sensor.other.rss</ font > **
- **Attributes:**
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2019-07-26 17:25:49 +08:00
### static
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.advertisement</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.atm</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.barbeque</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.barrel</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.bench01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.bench02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.bench03</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.bike helmet</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.bikeparking</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.bin</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.box01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.box02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.box03</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.briefcase</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.brokentile01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.brokentile02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.brokentile03</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.brokentile04</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.busstop</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.chainbarrier</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.chainbarrierend</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.clothcontainer</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.clothesline</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.colacan</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.constructioncone</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.container</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.creasedbox01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.creasedbox02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.creasedbox03</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.dirtdebris01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.dirtdebris02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.dirtdebris03</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.doghouse</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.fountain</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.garbage01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.garbage02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.garbage03</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.garbage04</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.garbage05</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.garbage06</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.gardenlamp</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.glasscontainer</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.gnome</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.guitarcase</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.ironplank</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.kiosk_01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.mailbox</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.maptable</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.mobile</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.motorhelmet</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.pergola</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plantpot01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plantpot02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plantpot03</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plantpot04</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plantpot05</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plantpot06</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plantpot07</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plantpot08</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plasticbag</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plasticchair</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.plastictable</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.platformgarbage01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.purse</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.shop01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.shoppingbag</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.shoppingcart</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.shoppingtrolley</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.slide</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.streetbarrier</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.streetfountain</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.streetsign</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.streetsign01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.streetsign04</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.swing</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.swingcouch</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.table</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trafficcone01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trafficcone02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trafficwarning</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trampoline</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trashbag</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trashcan01</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trashcan02</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trashcan03</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trashcan04</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.trashcan05</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.travelcase</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.vendingmachine</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.prop.wateringcan</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `size` (_String_)
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > static.trigger.friction</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `extent_x` (_Float_)< sub > _ – Modifiable_</ sub >
- `extent_y` (_Float_)< sub > _ – Modifiable_</ sub >
- `extent_z` (_Float_)< sub > _ – Modifiable_</ sub >
- `friction` (_Float_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2019-07-26 17:25:49 +08:00
### vehicle
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.audi.a2</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.audi.etron</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.audi.tt</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.bh.crossbike</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `driver_id` (_Int_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.bmw.grandtourer</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.bmw.isetta</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.carlamotors.carlacola</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.chevrolet.impala</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.citroen.c3</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.diamondback.century</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `driver_id` (_Int_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.dodge_charger.police</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.gazelle.omafiets</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `driver_id` (_Int_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2020-04-17 18:29:54 +08:00
- **< font color = "#498efc" > vehicle.harley-davidson.low_rider</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `driver_id` (_Int_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.jeep.wrangler_rubicon</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.kawasaki.ninja</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `driver_id` (_Int_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2020-04-17 18:29:54 +08:00
- **< font color = "#498efc" > vehicle.lincoln.mkz2017</ font > **
2019-08-01 21:42:19 +08:00
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.mercedes-benz.coupe</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.mini.cooperst</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2020-03-02 16:40:34 +08:00
- **< font color = "#498efc" > vehicle.mustang.mustang</ font > **
- **Attributes:**
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.nissan.micra</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.nissan.patrol</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.seat.leon</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2020-01-29 21:56:49 +08:00
- **< font color = "#498efc" > vehicle.tesla.cybertruck</ font > **
- **Attributes:**
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.tesla.model3</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.toyota.prius</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.volkswagen.t2</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
2019-08-01 21:42:19 +08:00
- **< font color = "#498efc" > vehicle.yamaha.yzf</ font > **
- **Attributes:**
2019-10-04 01:08:53 +08:00
- `color` (_RGBColor_)< sub > _ – Modifiable_</ sub >
- `driver_id` (_Int_)< sub > _ – Modifiable_</ sub >
- `number_of_wheels` (_Int_)
- `object_type` (_String_)
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
- `sticky_control` (_Bool_)< sub > _ – Modifiable_</ sub >
### walker
- **< font color = "#498efc" > walker.pedestrian.0001</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0002</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0003</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0004</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0005</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0006</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0007</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0008</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0009</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0010</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0011</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0012</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0013</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >
2019-10-04 01:08:53 +08:00
- **< font color = "#498efc" > walker.pedestrian.0014</ font > **
- **Attributes:**
- `age` (_String_)
- `gender` (_String_)
- `is_invincible` (_Bool_)< sub > _ – Modifiable_</ sub >
- `role_name` (_String_)< sub > _ – Modifiable_</ sub >
2020-01-23 21:11:25 +08:00
- `speed` (_Float_)< sub > _ – Modifiable_</ sub >