Prototype/SimpleEntity: Difference between revisions
(Converted to SMW format) |
(secondary draw order description) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 11: | Line 11: | ||
{{Prototype property|render_layer|[[Types/RenderLayer|RenderLayer]]|"object"|optional=true}} | {{Prototype property|render_layer|[[Types/RenderLayer|RenderLayer]]|"object"|optional=true}} | ||
{{Prototype property|secondary_draw_order|[[Types/int8|int8]]|0|optional=true}} | |||
Used to determine render order for entities with the same <code>render_layer</code> in the same position. Entities with a higher <code>secondary_draw_order</code> are drawn on top. | |||
{{Prototype property|random_animation_offset|[[Types/bool|bool]]|false|optional=true}} | {{Prototype property|random_animation_offset|[[Types/bool|bool]]|false|optional=true}} | ||
{{Prototype property|random_variation_on_create|[[Types/bool|bool]]|true|optional=true}} | |||
Whether a random graphics variation is chosen when placing the entity/creating it via script/creating it via map generation. If this is false, the entity will use the first variation instead of a random one. | |||
{{Prototype property|pictures|[[Types/SpriteVariations|SpriteVariations]]|optional=true}} | {{Prototype property|pictures|[[Types/SpriteVariations|SpriteVariations]]|optional=true}} |
Latest revision as of 10:27, 20 August 2021
Prototype definitions » PrototypeBase » Prototype/Entity » Prototype/EntityWithHealth » Prototype/SimpleEntity
An extremely basic entity with no special functionality. Used for minable rocks.
Optional properties
This prototype inherits all the properties from Prototype/EntityWithHealth.
count_as_rock_for_filtered_deconstruction
Type: bool
Default: false
Whether this entity should be treated as a rock for the purpose of deconstruction and for Prototype/Car#immune_to_rock_impacts.
render_layer
Type: RenderLayer
Default: "object"
secondary_draw_order
Type: int8
Default: 0
Used to determine render order for entities with the same render_layer
in the same position. Entities with a higher secondary_draw_order
are drawn on top.
random_animation_offset
Type: bool
Default: false
random_variation_on_create
Type: bool
Default: true
Whether a random graphics variation is chosen when placing the entity/creating it via script/creating it via map generation. If this is false, the entity will use the first variation instead of a random one.
pictures
Type: SpriteVariations
Simple entity must have one of 'picture', 'pictures' or 'animations' defined.
picture
Type: Sprite
Simple entity must have one of 'picture', 'pictures' or 'animations' defined.
animations
Type: AnimationVariations
Simple entity must have one of 'picture', 'pictures' or 'animations' defined.