Prototype/ParticleSource: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(1.0.0: particle is now optional, added smoke property)
(Removed old prototype docs)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Prototype parent|Prototype/Entity}}
<div class="stub"><p>'''The prototype docs have moved to a new website with an improved format.''' This documentation page can now be found here: [https://lua-api.factorio.com/latest/prototypes/ParticleSourcePrototype.html https://lua-api.factorio.com/latest/prototypes/ParticleSourcePrototype.html]
Creates particles.


{{Prototype TOC|particle-source}}
</p><p>This wiki page is no longer updated and '''will be removed at some point in the future''', so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback [https://forums.factorio.com/viewforum.php?f=233 on the forums].</p></div>
 
== Mandatory properties ==
This prototype inherits all the properties from [[Prototype/Entity]].
 
{{Prototype property|time_to_live|[[Types/float|float]]}}
 
{{Prototype property|time_before_start|[[Types/float|float]]}}
 
{{Prototype property|height|[[Types/float|float]]}}
 
{{Prototype property|vertical_speed|[[Types/float|float]]}}
 
{{Prototype property|horizontal_speed|[[Types/float|float]]}}
 
== Optional properties ==
 
{{Prototype property|particle|[[Types/string|string]]|optional=true}}
Name of a [[Prototype/Particle]]. Either this or <code>smoke</code> must be defined.
 
{{Prototype property|smoke|[[Types/table|table]] of [[Types/SmokeSource|SmokeSource]]|optional=true}}
Array of 1 or more smoke sources. Either this or <code>particle</code> must be defined.
 
{{Prototype property|time_to_live_deviation|[[Types/float|float]]|0|optional=true}}
 
{{Prototype property|time_before_start_deviation|[[Types/float|float]]|0|optional=true}}
 
{{Prototype property|height_deviation|[[Types/float|float]]|0|optional=true}}
 
{{Prototype property|vertical_speed_deviation|[[Types/float|float]]|0|optional=true}}
 
{{Prototype property|horizontal_speed_deviation|[[Types/float|float]]|0|optional=true}}

Latest revision as of 14:32, 25 October 2024

The prototype docs have moved to a new website with an improved format. This documentation page can now be found here: https://lua-api.factorio.com/latest/prototypes/ParticleSourcePrototype.html

This wiki page is no longer updated and will be removed at some point in the future, so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback on the forums.