class_cpuparticles3d.rst 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/4.2/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.2/doc/classes/CPUParticles3D.xml.
  6. .. _class_CPUParticles3D:
  7. CPUParticles3D
  8. ==============
  9. **Inherits:** :ref:`GeometryInstance3D<class_GeometryInstance3D>` **<** :ref:`VisualInstance3D<class_VisualInstance3D>` **<** :ref:`Node3D<class_Node3D>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. A CPU-based 3D particle emitter.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. CPU-based 3D particle node used to create a variety of particle systems and effects.
  15. See also :ref:`GPUParticles3D<class_GPUParticles3D>`, which provides the same functionality with hardware acceleration, but may not run on older devices.
  16. .. rst-class:: classref-introduction-group
  17. Tutorials
  18. ---------
  19. - :doc:`Particle systems (3D) <../tutorials/3d/particles/index>`
  20. .. rst-class:: classref-reftable-group
  21. Properties
  22. ----------
  23. .. table::
  24. :widths: auto
  25. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  26. | :ref:`int<class_int>` | :ref:`amount<class_CPUParticles3D_property_amount>` | ``8`` |
  27. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  28. | :ref:`Curve<class_Curve>` | :ref:`angle_curve<class_CPUParticles3D_property_angle_curve>` | |
  29. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  30. | :ref:`float<class_float>` | :ref:`angle_max<class_CPUParticles3D_property_angle_max>` | ``0.0`` |
  31. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  32. | :ref:`float<class_float>` | :ref:`angle_min<class_CPUParticles3D_property_angle_min>` | ``0.0`` |
  33. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  34. | :ref:`Curve<class_Curve>` | :ref:`angular_velocity_curve<class_CPUParticles3D_property_angular_velocity_curve>` | |
  35. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  36. | :ref:`float<class_float>` | :ref:`angular_velocity_max<class_CPUParticles3D_property_angular_velocity_max>` | ``0.0`` |
  37. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  38. | :ref:`float<class_float>` | :ref:`angular_velocity_min<class_CPUParticles3D_property_angular_velocity_min>` | ``0.0`` |
  39. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  40. | :ref:`Curve<class_Curve>` | :ref:`anim_offset_curve<class_CPUParticles3D_property_anim_offset_curve>` | |
  41. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  42. | :ref:`float<class_float>` | :ref:`anim_offset_max<class_CPUParticles3D_property_anim_offset_max>` | ``0.0`` |
  43. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  44. | :ref:`float<class_float>` | :ref:`anim_offset_min<class_CPUParticles3D_property_anim_offset_min>` | ``0.0`` |
  45. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  46. | :ref:`Curve<class_Curve>` | :ref:`anim_speed_curve<class_CPUParticles3D_property_anim_speed_curve>` | |
  47. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  48. | :ref:`float<class_float>` | :ref:`anim_speed_max<class_CPUParticles3D_property_anim_speed_max>` | ``0.0`` |
  49. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  50. | :ref:`float<class_float>` | :ref:`anim_speed_min<class_CPUParticles3D_property_anim_speed_min>` | ``0.0`` |
  51. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  52. | :ref:`Color<class_Color>` | :ref:`color<class_CPUParticles3D_property_color>` | ``Color(1, 1, 1, 1)`` |
  53. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  54. | :ref:`Gradient<class_Gradient>` | :ref:`color_initial_ramp<class_CPUParticles3D_property_color_initial_ramp>` | |
  55. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  56. | :ref:`Gradient<class_Gradient>` | :ref:`color_ramp<class_CPUParticles3D_property_color_ramp>` | |
  57. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  58. | :ref:`Curve<class_Curve>` | :ref:`damping_curve<class_CPUParticles3D_property_damping_curve>` | |
  59. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  60. | :ref:`float<class_float>` | :ref:`damping_max<class_CPUParticles3D_property_damping_max>` | ``0.0`` |
  61. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  62. | :ref:`float<class_float>` | :ref:`damping_min<class_CPUParticles3D_property_damping_min>` | ``0.0`` |
  63. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  64. | :ref:`Vector3<class_Vector3>` | :ref:`direction<class_CPUParticles3D_property_direction>` | ``Vector3(1, 0, 0)`` |
  65. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  66. | :ref:`DrawOrder<enum_CPUParticles3D_DrawOrder>` | :ref:`draw_order<class_CPUParticles3D_property_draw_order>` | ``0`` |
  67. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  68. | :ref:`Vector3<class_Vector3>` | :ref:`emission_box_extents<class_CPUParticles3D_property_emission_box_extents>` | |
  69. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  70. | :ref:`PackedColorArray<class_PackedColorArray>` | :ref:`emission_colors<class_CPUParticles3D_property_emission_colors>` | ``PackedColorArray()`` |
  71. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  72. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`emission_normals<class_CPUParticles3D_property_emission_normals>` | |
  73. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  74. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`emission_points<class_CPUParticles3D_property_emission_points>` | |
  75. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  76. | :ref:`Vector3<class_Vector3>` | :ref:`emission_ring_axis<class_CPUParticles3D_property_emission_ring_axis>` | |
  77. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  78. | :ref:`float<class_float>` | :ref:`emission_ring_height<class_CPUParticles3D_property_emission_ring_height>` | |
  79. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  80. | :ref:`float<class_float>` | :ref:`emission_ring_inner_radius<class_CPUParticles3D_property_emission_ring_inner_radius>` | |
  81. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  82. | :ref:`float<class_float>` | :ref:`emission_ring_radius<class_CPUParticles3D_property_emission_ring_radius>` | |
  83. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  84. | :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` | :ref:`emission_shape<class_CPUParticles3D_property_emission_shape>` | ``0`` |
  85. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  86. | :ref:`float<class_float>` | :ref:`emission_sphere_radius<class_CPUParticles3D_property_emission_sphere_radius>` | |
  87. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  88. | :ref:`bool<class_bool>` | :ref:`emitting<class_CPUParticles3D_property_emitting>` | ``true`` |
  89. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  90. | :ref:`float<class_float>` | :ref:`explosiveness<class_CPUParticles3D_property_explosiveness>` | ``0.0`` |
  91. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  92. | :ref:`int<class_int>` | :ref:`fixed_fps<class_CPUParticles3D_property_fixed_fps>` | ``0`` |
  93. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  94. | :ref:`float<class_float>` | :ref:`flatness<class_CPUParticles3D_property_flatness>` | ``0.0`` |
  95. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  96. | :ref:`bool<class_bool>` | :ref:`fract_delta<class_CPUParticles3D_property_fract_delta>` | ``true`` |
  97. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  98. | :ref:`Vector3<class_Vector3>` | :ref:`gravity<class_CPUParticles3D_property_gravity>` | ``Vector3(0, -9.8, 0)`` |
  99. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  100. | :ref:`Curve<class_Curve>` | :ref:`hue_variation_curve<class_CPUParticles3D_property_hue_variation_curve>` | |
  101. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  102. | :ref:`float<class_float>` | :ref:`hue_variation_max<class_CPUParticles3D_property_hue_variation_max>` | ``0.0`` |
  103. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  104. | :ref:`float<class_float>` | :ref:`hue_variation_min<class_CPUParticles3D_property_hue_variation_min>` | ``0.0`` |
  105. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  106. | :ref:`float<class_float>` | :ref:`initial_velocity_max<class_CPUParticles3D_property_initial_velocity_max>` | ``0.0`` |
  107. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  108. | :ref:`float<class_float>` | :ref:`initial_velocity_min<class_CPUParticles3D_property_initial_velocity_min>` | ``0.0`` |
  109. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  110. | :ref:`float<class_float>` | :ref:`lifetime<class_CPUParticles3D_property_lifetime>` | ``1.0`` |
  111. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  112. | :ref:`float<class_float>` | :ref:`lifetime_randomness<class_CPUParticles3D_property_lifetime_randomness>` | ``0.0`` |
  113. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  114. | :ref:`Curve<class_Curve>` | :ref:`linear_accel_curve<class_CPUParticles3D_property_linear_accel_curve>` | |
  115. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  116. | :ref:`float<class_float>` | :ref:`linear_accel_max<class_CPUParticles3D_property_linear_accel_max>` | ``0.0`` |
  117. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  118. | :ref:`float<class_float>` | :ref:`linear_accel_min<class_CPUParticles3D_property_linear_accel_min>` | ``0.0`` |
  119. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  120. | :ref:`bool<class_bool>` | :ref:`local_coords<class_CPUParticles3D_property_local_coords>` | ``false`` |
  121. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  122. | :ref:`Mesh<class_Mesh>` | :ref:`mesh<class_CPUParticles3D_property_mesh>` | |
  123. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  124. | :ref:`bool<class_bool>` | :ref:`one_shot<class_CPUParticles3D_property_one_shot>` | ``false`` |
  125. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  126. | :ref:`Curve<class_Curve>` | :ref:`orbit_velocity_curve<class_CPUParticles3D_property_orbit_velocity_curve>` | |
  127. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  128. | :ref:`float<class_float>` | :ref:`orbit_velocity_max<class_CPUParticles3D_property_orbit_velocity_max>` | |
  129. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  130. | :ref:`float<class_float>` | :ref:`orbit_velocity_min<class_CPUParticles3D_property_orbit_velocity_min>` | |
  131. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  132. | :ref:`bool<class_bool>` | :ref:`particle_flag_align_y<class_CPUParticles3D_property_particle_flag_align_y>` | ``false`` |
  133. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  134. | :ref:`bool<class_bool>` | :ref:`particle_flag_disable_z<class_CPUParticles3D_property_particle_flag_disable_z>` | ``false`` |
  135. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  136. | :ref:`bool<class_bool>` | :ref:`particle_flag_rotate_y<class_CPUParticles3D_property_particle_flag_rotate_y>` | ``false`` |
  137. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  138. | :ref:`float<class_float>` | :ref:`preprocess<class_CPUParticles3D_property_preprocess>` | ``0.0`` |
  139. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  140. | :ref:`Curve<class_Curve>` | :ref:`radial_accel_curve<class_CPUParticles3D_property_radial_accel_curve>` | |
  141. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  142. | :ref:`float<class_float>` | :ref:`radial_accel_max<class_CPUParticles3D_property_radial_accel_max>` | ``0.0`` |
  143. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  144. | :ref:`float<class_float>` | :ref:`radial_accel_min<class_CPUParticles3D_property_radial_accel_min>` | ``0.0`` |
  145. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  146. | :ref:`float<class_float>` | :ref:`randomness<class_CPUParticles3D_property_randomness>` | ``0.0`` |
  147. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  148. | :ref:`Curve<class_Curve>` | :ref:`scale_amount_curve<class_CPUParticles3D_property_scale_amount_curve>` | |
  149. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  150. | :ref:`float<class_float>` | :ref:`scale_amount_max<class_CPUParticles3D_property_scale_amount_max>` | ``1.0`` |
  151. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  152. | :ref:`float<class_float>` | :ref:`scale_amount_min<class_CPUParticles3D_property_scale_amount_min>` | ``1.0`` |
  153. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  154. | :ref:`Curve<class_Curve>` | :ref:`scale_curve_x<class_CPUParticles3D_property_scale_curve_x>` | |
  155. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  156. | :ref:`Curve<class_Curve>` | :ref:`scale_curve_y<class_CPUParticles3D_property_scale_curve_y>` | |
  157. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  158. | :ref:`Curve<class_Curve>` | :ref:`scale_curve_z<class_CPUParticles3D_property_scale_curve_z>` | |
  159. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  160. | :ref:`float<class_float>` | :ref:`speed_scale<class_CPUParticles3D_property_speed_scale>` | ``1.0`` |
  161. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  162. | :ref:`bool<class_bool>` | :ref:`split_scale<class_CPUParticles3D_property_split_scale>` | ``false`` |
  163. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  164. | :ref:`float<class_float>` | :ref:`spread<class_CPUParticles3D_property_spread>` | ``45.0`` |
  165. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  166. | :ref:`Curve<class_Curve>` | :ref:`tangential_accel_curve<class_CPUParticles3D_property_tangential_accel_curve>` | |
  167. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  168. | :ref:`float<class_float>` | :ref:`tangential_accel_max<class_CPUParticles3D_property_tangential_accel_max>` | ``0.0`` |
  169. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  170. | :ref:`float<class_float>` | :ref:`tangential_accel_min<class_CPUParticles3D_property_tangential_accel_min>` | ``0.0`` |
  171. +---------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------------------+
  172. .. rst-class:: classref-reftable-group
  173. Methods
  174. -------
  175. .. table::
  176. :widths: auto
  177. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  178. | void | :ref:`convert_from_particles<class_CPUParticles3D_method_convert_from_particles>` **(** :ref:`Node<class_Node>` particles **)** |
  179. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  180. | :ref:`Curve<class_Curve>` | :ref:`get_param_curve<class_CPUParticles3D_method_get_param_curve>` **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const| |
  181. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  182. | :ref:`float<class_float>` | :ref:`get_param_max<class_CPUParticles3D_method_get_param_max>` **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const| |
  183. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  184. | :ref:`float<class_float>` | :ref:`get_param_min<class_CPUParticles3D_method_get_param_min>` **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const| |
  185. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  186. | :ref:`bool<class_bool>` | :ref:`get_particle_flag<class_CPUParticles3D_method_get_particle_flag>` **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag **)** |const| |
  187. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  188. | void | :ref:`restart<class_CPUParticles3D_method_restart>` **(** **)** |
  189. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  190. | void | :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)** |
  191. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  192. | void | :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>` **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)** |
  193. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  194. | void | :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>` **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)** |
  195. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  196. | void | :ref:`set_particle_flag<class_CPUParticles3D_method_set_particle_flag>` **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag, :ref:`bool<class_bool>` enable **)** |
  197. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  198. .. rst-class:: classref-section-separator
  199. ----
  200. .. rst-class:: classref-descriptions-group
  201. Signals
  202. -------
  203. .. _class_CPUParticles3D_signal_finished:
  204. .. rst-class:: classref-signal
  205. **finished** **(** **)**
  206. Emitted when all active particles have finished processing. When :ref:`one_shot<class_CPUParticles3D_property_one_shot>` is disabled, particles will process continuously, so this is never emitted.
  207. .. rst-class:: classref-section-separator
  208. ----
  209. .. rst-class:: classref-descriptions-group
  210. Enumerations
  211. ------------
  212. .. _enum_CPUParticles3D_DrawOrder:
  213. .. rst-class:: classref-enumeration
  214. enum **DrawOrder**:
  215. .. _class_CPUParticles3D_constant_DRAW_ORDER_INDEX:
  216. .. rst-class:: classref-enumeration-constant
  217. :ref:`DrawOrder<enum_CPUParticles3D_DrawOrder>` **DRAW_ORDER_INDEX** = ``0``
  218. Particles are drawn in the order emitted.
  219. .. _class_CPUParticles3D_constant_DRAW_ORDER_LIFETIME:
  220. .. rst-class:: classref-enumeration-constant
  221. :ref:`DrawOrder<enum_CPUParticles3D_DrawOrder>` **DRAW_ORDER_LIFETIME** = ``1``
  222. Particles are drawn in order of remaining lifetime. In other words, the particle with the highest lifetime is drawn at the front.
  223. .. _class_CPUParticles3D_constant_DRAW_ORDER_VIEW_DEPTH:
  224. .. rst-class:: classref-enumeration-constant
  225. :ref:`DrawOrder<enum_CPUParticles3D_DrawOrder>` **DRAW_ORDER_VIEW_DEPTH** = ``2``
  226. Particles are drawn in order of depth.
  227. .. rst-class:: classref-item-separator
  228. ----
  229. .. _enum_CPUParticles3D_Parameter:
  230. .. rst-class:: classref-enumeration
  231. enum **Parameter**:
  232. .. _class_CPUParticles3D_constant_PARAM_INITIAL_LINEAR_VELOCITY:
  233. .. rst-class:: classref-enumeration-constant
  234. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_INITIAL_LINEAR_VELOCITY** = ``0``
  235. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set initial velocity properties.
  236. .. _class_CPUParticles3D_constant_PARAM_ANGULAR_VELOCITY:
  237. .. rst-class:: classref-enumeration-constant
  238. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_ANGULAR_VELOCITY** = ``1``
  239. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set angular velocity properties.
  240. .. _class_CPUParticles3D_constant_PARAM_ORBIT_VELOCITY:
  241. .. rst-class:: classref-enumeration-constant
  242. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_ORBIT_VELOCITY** = ``2``
  243. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set orbital velocity properties.
  244. .. _class_CPUParticles3D_constant_PARAM_LINEAR_ACCEL:
  245. .. rst-class:: classref-enumeration-constant
  246. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_LINEAR_ACCEL** = ``3``
  247. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set linear acceleration properties.
  248. .. _class_CPUParticles3D_constant_PARAM_RADIAL_ACCEL:
  249. .. rst-class:: classref-enumeration-constant
  250. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_RADIAL_ACCEL** = ``4``
  251. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set radial acceleration properties.
  252. .. _class_CPUParticles3D_constant_PARAM_TANGENTIAL_ACCEL:
  253. .. rst-class:: classref-enumeration-constant
  254. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_TANGENTIAL_ACCEL** = ``5``
  255. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set tangential acceleration properties.
  256. .. _class_CPUParticles3D_constant_PARAM_DAMPING:
  257. .. rst-class:: classref-enumeration-constant
  258. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_DAMPING** = ``6``
  259. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set damping properties.
  260. .. _class_CPUParticles3D_constant_PARAM_ANGLE:
  261. .. rst-class:: classref-enumeration-constant
  262. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_ANGLE** = ``7``
  263. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set angle properties.
  264. .. _class_CPUParticles3D_constant_PARAM_SCALE:
  265. .. rst-class:: classref-enumeration-constant
  266. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_SCALE** = ``8``
  267. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set scale properties.
  268. .. _class_CPUParticles3D_constant_PARAM_HUE_VARIATION:
  269. .. rst-class:: classref-enumeration-constant
  270. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_HUE_VARIATION** = ``9``
  271. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set hue variation properties.
  272. .. _class_CPUParticles3D_constant_PARAM_ANIM_SPEED:
  273. .. rst-class:: classref-enumeration-constant
  274. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_ANIM_SPEED** = ``10``
  275. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set animation speed properties.
  276. .. _class_CPUParticles3D_constant_PARAM_ANIM_OFFSET:
  277. .. rst-class:: classref-enumeration-constant
  278. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_ANIM_OFFSET** = ``11``
  279. Use with :ref:`set_param_min<class_CPUParticles3D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles3D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles3D_method_set_param_curve>` to set animation offset properties.
  280. .. _class_CPUParticles3D_constant_PARAM_MAX:
  281. .. rst-class:: classref-enumeration-constant
  282. :ref:`Parameter<enum_CPUParticles3D_Parameter>` **PARAM_MAX** = ``12``
  283. Represents the size of the :ref:`Parameter<enum_CPUParticles3D_Parameter>` enum.
  284. .. rst-class:: classref-item-separator
  285. ----
  286. .. _enum_CPUParticles3D_ParticleFlags:
  287. .. rst-class:: classref-enumeration
  288. enum **ParticleFlags**:
  289. .. _class_CPUParticles3D_constant_PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY:
  290. .. rst-class:: classref-enumeration-constant
  291. :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` **PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY** = ``0``
  292. Use with :ref:`set_particle_flag<class_CPUParticles3D_method_set_particle_flag>` to set :ref:`particle_flag_align_y<class_CPUParticles3D_property_particle_flag_align_y>`.
  293. .. _class_CPUParticles3D_constant_PARTICLE_FLAG_ROTATE_Y:
  294. .. rst-class:: classref-enumeration-constant
  295. :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` **PARTICLE_FLAG_ROTATE_Y** = ``1``
  296. Use with :ref:`set_particle_flag<class_CPUParticles3D_method_set_particle_flag>` to set :ref:`particle_flag_rotate_y<class_CPUParticles3D_property_particle_flag_rotate_y>`.
  297. .. _class_CPUParticles3D_constant_PARTICLE_FLAG_DISABLE_Z:
  298. .. rst-class:: classref-enumeration-constant
  299. :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` **PARTICLE_FLAG_DISABLE_Z** = ``2``
  300. Use with :ref:`set_particle_flag<class_CPUParticles3D_method_set_particle_flag>` to set :ref:`particle_flag_disable_z<class_CPUParticles3D_property_particle_flag_disable_z>`.
  301. .. _class_CPUParticles3D_constant_PARTICLE_FLAG_MAX:
  302. .. rst-class:: classref-enumeration-constant
  303. :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` **PARTICLE_FLAG_MAX** = ``3``
  304. Represents the size of the :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` enum.
  305. .. rst-class:: classref-item-separator
  306. ----
  307. .. _enum_CPUParticles3D_EmissionShape:
  308. .. rst-class:: classref-enumeration
  309. enum **EmissionShape**:
  310. .. _class_CPUParticles3D_constant_EMISSION_SHAPE_POINT:
  311. .. rst-class:: classref-enumeration-constant
  312. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **EMISSION_SHAPE_POINT** = ``0``
  313. All particles will be emitted from a single point.
  314. .. _class_CPUParticles3D_constant_EMISSION_SHAPE_SPHERE:
  315. .. rst-class:: classref-enumeration-constant
  316. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **EMISSION_SHAPE_SPHERE** = ``1``
  317. Particles will be emitted in the volume of a sphere.
  318. .. _class_CPUParticles3D_constant_EMISSION_SHAPE_SPHERE_SURFACE:
  319. .. rst-class:: classref-enumeration-constant
  320. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **EMISSION_SHAPE_SPHERE_SURFACE** = ``2``
  321. Particles will be emitted on the surface of a sphere.
  322. .. _class_CPUParticles3D_constant_EMISSION_SHAPE_BOX:
  323. .. rst-class:: classref-enumeration-constant
  324. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **EMISSION_SHAPE_BOX** = ``3``
  325. Particles will be emitted in the volume of a box.
  326. .. _class_CPUParticles3D_constant_EMISSION_SHAPE_POINTS:
  327. .. rst-class:: classref-enumeration-constant
  328. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **EMISSION_SHAPE_POINTS** = ``4``
  329. Particles will be emitted at a position chosen randomly among :ref:`emission_points<class_CPUParticles3D_property_emission_points>`. Particle color will be modulated by :ref:`emission_colors<class_CPUParticles3D_property_emission_colors>`.
  330. .. _class_CPUParticles3D_constant_EMISSION_SHAPE_DIRECTED_POINTS:
  331. .. rst-class:: classref-enumeration-constant
  332. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **EMISSION_SHAPE_DIRECTED_POINTS** = ``5``
  333. Particles will be emitted at a position chosen randomly among :ref:`emission_points<class_CPUParticles3D_property_emission_points>`. Particle velocity and rotation will be set based on :ref:`emission_normals<class_CPUParticles3D_property_emission_normals>`. Particle color will be modulated by :ref:`emission_colors<class_CPUParticles3D_property_emission_colors>`.
  334. .. _class_CPUParticles3D_constant_EMISSION_SHAPE_RING:
  335. .. rst-class:: classref-enumeration-constant
  336. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **EMISSION_SHAPE_RING** = ``6``
  337. Particles will be emitted in a ring or cylinder.
  338. .. _class_CPUParticles3D_constant_EMISSION_SHAPE_MAX:
  339. .. rst-class:: classref-enumeration-constant
  340. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **EMISSION_SHAPE_MAX** = ``7``
  341. Represents the size of the :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` enum.
  342. .. rst-class:: classref-section-separator
  343. ----
  344. .. rst-class:: classref-descriptions-group
  345. Property Descriptions
  346. ---------------------
  347. .. _class_CPUParticles3D_property_amount:
  348. .. rst-class:: classref-property
  349. :ref:`int<class_int>` **amount** = ``8``
  350. .. rst-class:: classref-property-setget
  351. - void **set_amount** **(** :ref:`int<class_int>` value **)**
  352. - :ref:`int<class_int>` **get_amount** **(** **)**
  353. Number of particles emitted in one emission cycle.
  354. .. rst-class:: classref-item-separator
  355. ----
  356. .. _class_CPUParticles3D_property_angle_curve:
  357. .. rst-class:: classref-property
  358. :ref:`Curve<class_Curve>` **angle_curve**
  359. .. rst-class:: classref-property-setget
  360. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  361. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  362. Each particle's rotation will be animated along this :ref:`Curve<class_Curve>`.
  363. .. rst-class:: classref-item-separator
  364. ----
  365. .. _class_CPUParticles3D_property_angle_max:
  366. .. rst-class:: classref-property
  367. :ref:`float<class_float>` **angle_max** = ``0.0``
  368. .. rst-class:: classref-property-setget
  369. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  370. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  371. Maximum angle.
  372. .. rst-class:: classref-item-separator
  373. ----
  374. .. _class_CPUParticles3D_property_angle_min:
  375. .. rst-class:: classref-property
  376. :ref:`float<class_float>` **angle_min** = ``0.0``
  377. .. rst-class:: classref-property-setget
  378. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  379. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  380. Minimum angle.
  381. .. rst-class:: classref-item-separator
  382. ----
  383. .. _class_CPUParticles3D_property_angular_velocity_curve:
  384. .. rst-class:: classref-property
  385. :ref:`Curve<class_Curve>` **angular_velocity_curve**
  386. .. rst-class:: classref-property-setget
  387. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  388. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  389. Each particle's angular velocity (rotation speed) will vary along this :ref:`Curve<class_Curve>` over its lifetime.
  390. .. rst-class:: classref-item-separator
  391. ----
  392. .. _class_CPUParticles3D_property_angular_velocity_max:
  393. .. rst-class:: classref-property
  394. :ref:`float<class_float>` **angular_velocity_max** = ``0.0``
  395. .. rst-class:: classref-property-setget
  396. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  397. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  398. Maximum initial angular velocity (rotation speed) applied to each particle in *degrees* per second.
  399. .. rst-class:: classref-item-separator
  400. ----
  401. .. _class_CPUParticles3D_property_angular_velocity_min:
  402. .. rst-class:: classref-property
  403. :ref:`float<class_float>` **angular_velocity_min** = ``0.0``
  404. .. rst-class:: classref-property-setget
  405. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  406. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  407. Minimum initial angular velocity (rotation speed) applied to each particle in *degrees* per second.
  408. .. rst-class:: classref-item-separator
  409. ----
  410. .. _class_CPUParticles3D_property_anim_offset_curve:
  411. .. rst-class:: classref-property
  412. :ref:`Curve<class_Curve>` **anim_offset_curve**
  413. .. rst-class:: classref-property-setget
  414. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  415. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  416. Each particle's animation offset will vary along this :ref:`Curve<class_Curve>`.
  417. .. rst-class:: classref-item-separator
  418. ----
  419. .. _class_CPUParticles3D_property_anim_offset_max:
  420. .. rst-class:: classref-property
  421. :ref:`float<class_float>` **anim_offset_max** = ``0.0``
  422. .. rst-class:: classref-property-setget
  423. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  424. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  425. Maximum animation offset.
  426. .. rst-class:: classref-item-separator
  427. ----
  428. .. _class_CPUParticles3D_property_anim_offset_min:
  429. .. rst-class:: classref-property
  430. :ref:`float<class_float>` **anim_offset_min** = ``0.0``
  431. .. rst-class:: classref-property-setget
  432. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  433. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  434. Minimum animation offset.
  435. .. rst-class:: classref-item-separator
  436. ----
  437. .. _class_CPUParticles3D_property_anim_speed_curve:
  438. .. rst-class:: classref-property
  439. :ref:`Curve<class_Curve>` **anim_speed_curve**
  440. .. rst-class:: classref-property-setget
  441. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  442. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  443. Each particle's animation speed will vary along this :ref:`Curve<class_Curve>`.
  444. .. rst-class:: classref-item-separator
  445. ----
  446. .. _class_CPUParticles3D_property_anim_speed_max:
  447. .. rst-class:: classref-property
  448. :ref:`float<class_float>` **anim_speed_max** = ``0.0``
  449. .. rst-class:: classref-property-setget
  450. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  451. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  452. Maximum particle animation speed.
  453. .. rst-class:: classref-item-separator
  454. ----
  455. .. _class_CPUParticles3D_property_anim_speed_min:
  456. .. rst-class:: classref-property
  457. :ref:`float<class_float>` **anim_speed_min** = ``0.0``
  458. .. rst-class:: classref-property-setget
  459. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  460. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  461. Minimum particle animation speed.
  462. .. rst-class:: classref-item-separator
  463. ----
  464. .. _class_CPUParticles3D_property_color:
  465. .. rst-class:: classref-property
  466. :ref:`Color<class_Color>` **color** = ``Color(1, 1, 1, 1)``
  467. .. rst-class:: classref-property-setget
  468. - void **set_color** **(** :ref:`Color<class_Color>` value **)**
  469. - :ref:`Color<class_Color>` **get_color** **(** **)**
  470. Each particle's initial color.
  471. \ **Note:** :ref:`color<class_CPUParticles3D_property_color>` multiplies the particle mesh's vertex colors. To have a visible effect on a :ref:`BaseMaterial3D<class_BaseMaterial3D>`, :ref:`BaseMaterial3D.vertex_color_use_as_albedo<class_BaseMaterial3D_property_vertex_color_use_as_albedo>` *must* be ``true``. For a :ref:`ShaderMaterial<class_ShaderMaterial>`, ``ALBEDO *= COLOR.rgb;`` must be inserted in the shader's ``fragment()`` function. Otherwise, :ref:`color<class_CPUParticles3D_property_color>` will have no visible effect.
  472. .. rst-class:: classref-item-separator
  473. ----
  474. .. _class_CPUParticles3D_property_color_initial_ramp:
  475. .. rst-class:: classref-property
  476. :ref:`Gradient<class_Gradient>` **color_initial_ramp**
  477. .. rst-class:: classref-property-setget
  478. - void **set_color_initial_ramp** **(** :ref:`Gradient<class_Gradient>` value **)**
  479. - :ref:`Gradient<class_Gradient>` **get_color_initial_ramp** **(** **)**
  480. Each particle's initial color will vary along this :ref:`GradientTexture1D<class_GradientTexture1D>` (multiplied with :ref:`color<class_CPUParticles3D_property_color>`).
  481. \ **Note:** :ref:`color_initial_ramp<class_CPUParticles3D_property_color_initial_ramp>` multiplies the particle mesh's vertex colors. To have a visible effect on a :ref:`BaseMaterial3D<class_BaseMaterial3D>`, :ref:`BaseMaterial3D.vertex_color_use_as_albedo<class_BaseMaterial3D_property_vertex_color_use_as_albedo>` *must* be ``true``. For a :ref:`ShaderMaterial<class_ShaderMaterial>`, ``ALBEDO *= COLOR.rgb;`` must be inserted in the shader's ``fragment()`` function. Otherwise, :ref:`color_initial_ramp<class_CPUParticles3D_property_color_initial_ramp>` will have no visible effect.
  482. .. rst-class:: classref-item-separator
  483. ----
  484. .. _class_CPUParticles3D_property_color_ramp:
  485. .. rst-class:: classref-property
  486. :ref:`Gradient<class_Gradient>` **color_ramp**
  487. .. rst-class:: classref-property-setget
  488. - void **set_color_ramp** **(** :ref:`Gradient<class_Gradient>` value **)**
  489. - :ref:`Gradient<class_Gradient>` **get_color_ramp** **(** **)**
  490. Each particle's color will vary along this :ref:`GradientTexture1D<class_GradientTexture1D>` over its lifetime (multiplied with :ref:`color<class_CPUParticles3D_property_color>`).
  491. \ **Note:** :ref:`color_ramp<class_CPUParticles3D_property_color_ramp>` multiplies the particle mesh's vertex colors. To have a visible effect on a :ref:`BaseMaterial3D<class_BaseMaterial3D>`, :ref:`BaseMaterial3D.vertex_color_use_as_albedo<class_BaseMaterial3D_property_vertex_color_use_as_albedo>` *must* be ``true``. For a :ref:`ShaderMaterial<class_ShaderMaterial>`, ``ALBEDO *= COLOR.rgb;`` must be inserted in the shader's ``fragment()`` function. Otherwise, :ref:`color_ramp<class_CPUParticles3D_property_color_ramp>` will have no visible effect.
  492. .. rst-class:: classref-item-separator
  493. ----
  494. .. _class_CPUParticles3D_property_damping_curve:
  495. .. rst-class:: classref-property
  496. :ref:`Curve<class_Curve>` **damping_curve**
  497. .. rst-class:: classref-property-setget
  498. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  499. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  500. Damping will vary along this :ref:`Curve<class_Curve>`.
  501. .. rst-class:: classref-item-separator
  502. ----
  503. .. _class_CPUParticles3D_property_damping_max:
  504. .. rst-class:: classref-property
  505. :ref:`float<class_float>` **damping_max** = ``0.0``
  506. .. rst-class:: classref-property-setget
  507. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  508. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  509. Maximum damping.
  510. .. rst-class:: classref-item-separator
  511. ----
  512. .. _class_CPUParticles3D_property_damping_min:
  513. .. rst-class:: classref-property
  514. :ref:`float<class_float>` **damping_min** = ``0.0``
  515. .. rst-class:: classref-property-setget
  516. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  517. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  518. Minimum damping.
  519. .. rst-class:: classref-item-separator
  520. ----
  521. .. _class_CPUParticles3D_property_direction:
  522. .. rst-class:: classref-property
  523. :ref:`Vector3<class_Vector3>` **direction** = ``Vector3(1, 0, 0)``
  524. .. rst-class:: classref-property-setget
  525. - void **set_direction** **(** :ref:`Vector3<class_Vector3>` value **)**
  526. - :ref:`Vector3<class_Vector3>` **get_direction** **(** **)**
  527. Unit vector specifying the particles' emission direction.
  528. .. rst-class:: classref-item-separator
  529. ----
  530. .. _class_CPUParticles3D_property_draw_order:
  531. .. rst-class:: classref-property
  532. :ref:`DrawOrder<enum_CPUParticles3D_DrawOrder>` **draw_order** = ``0``
  533. .. rst-class:: classref-property-setget
  534. - void **set_draw_order** **(** :ref:`DrawOrder<enum_CPUParticles3D_DrawOrder>` value **)**
  535. - :ref:`DrawOrder<enum_CPUParticles3D_DrawOrder>` **get_draw_order** **(** **)**
  536. Particle draw order. Uses :ref:`DrawOrder<enum_CPUParticles3D_DrawOrder>` values.
  537. .. rst-class:: classref-item-separator
  538. ----
  539. .. _class_CPUParticles3D_property_emission_box_extents:
  540. .. rst-class:: classref-property
  541. :ref:`Vector3<class_Vector3>` **emission_box_extents**
  542. .. rst-class:: classref-property-setget
  543. - void **set_emission_box_extents** **(** :ref:`Vector3<class_Vector3>` value **)**
  544. - :ref:`Vector3<class_Vector3>` **get_emission_box_extents** **(** **)**
  545. The rectangle's extents if :ref:`emission_shape<class_CPUParticles3D_property_emission_shape>` is set to :ref:`EMISSION_SHAPE_BOX<class_CPUParticles3D_constant_EMISSION_SHAPE_BOX>`.
  546. .. rst-class:: classref-item-separator
  547. ----
  548. .. _class_CPUParticles3D_property_emission_colors:
  549. .. rst-class:: classref-property
  550. :ref:`PackedColorArray<class_PackedColorArray>` **emission_colors** = ``PackedColorArray()``
  551. .. rst-class:: classref-property-setget
  552. - void **set_emission_colors** **(** :ref:`PackedColorArray<class_PackedColorArray>` value **)**
  553. - :ref:`PackedColorArray<class_PackedColorArray>` **get_emission_colors** **(** **)**
  554. Sets the :ref:`Color<class_Color>`\ s to modulate particles by when using :ref:`EMISSION_SHAPE_POINTS<class_CPUParticles3D_constant_EMISSION_SHAPE_POINTS>` or :ref:`EMISSION_SHAPE_DIRECTED_POINTS<class_CPUParticles3D_constant_EMISSION_SHAPE_DIRECTED_POINTS>`.
  555. \ **Note:** :ref:`emission_colors<class_CPUParticles3D_property_emission_colors>` multiplies the particle mesh's vertex colors. To have a visible effect on a :ref:`BaseMaterial3D<class_BaseMaterial3D>`, :ref:`BaseMaterial3D.vertex_color_use_as_albedo<class_BaseMaterial3D_property_vertex_color_use_as_albedo>` *must* be ``true``. For a :ref:`ShaderMaterial<class_ShaderMaterial>`, ``ALBEDO *= COLOR.rgb;`` must be inserted in the shader's ``fragment()`` function. Otherwise, :ref:`emission_colors<class_CPUParticles3D_property_emission_colors>` will have no visible effect.
  556. .. rst-class:: classref-item-separator
  557. ----
  558. .. _class_CPUParticles3D_property_emission_normals:
  559. .. rst-class:: classref-property
  560. :ref:`PackedVector3Array<class_PackedVector3Array>` **emission_normals**
  561. .. rst-class:: classref-property-setget
  562. - void **set_emission_normals** **(** :ref:`PackedVector3Array<class_PackedVector3Array>` value **)**
  563. - :ref:`PackedVector3Array<class_PackedVector3Array>` **get_emission_normals** **(** **)**
  564. Sets the direction the particles will be emitted in when using :ref:`EMISSION_SHAPE_DIRECTED_POINTS<class_CPUParticles3D_constant_EMISSION_SHAPE_DIRECTED_POINTS>`.
  565. .. rst-class:: classref-item-separator
  566. ----
  567. .. _class_CPUParticles3D_property_emission_points:
  568. .. rst-class:: classref-property
  569. :ref:`PackedVector3Array<class_PackedVector3Array>` **emission_points**
  570. .. rst-class:: classref-property-setget
  571. - void **set_emission_points** **(** :ref:`PackedVector3Array<class_PackedVector3Array>` value **)**
  572. - :ref:`PackedVector3Array<class_PackedVector3Array>` **get_emission_points** **(** **)**
  573. Sets the initial positions to spawn particles when using :ref:`EMISSION_SHAPE_POINTS<class_CPUParticles3D_constant_EMISSION_SHAPE_POINTS>` or :ref:`EMISSION_SHAPE_DIRECTED_POINTS<class_CPUParticles3D_constant_EMISSION_SHAPE_DIRECTED_POINTS>`.
  574. .. rst-class:: classref-item-separator
  575. ----
  576. .. _class_CPUParticles3D_property_emission_ring_axis:
  577. .. rst-class:: classref-property
  578. :ref:`Vector3<class_Vector3>` **emission_ring_axis**
  579. .. rst-class:: classref-property-setget
  580. - void **set_emission_ring_axis** **(** :ref:`Vector3<class_Vector3>` value **)**
  581. - :ref:`Vector3<class_Vector3>` **get_emission_ring_axis** **(** **)**
  582. The axis of the ring when using the emitter :ref:`EMISSION_SHAPE_RING<class_CPUParticles3D_constant_EMISSION_SHAPE_RING>`.
  583. .. rst-class:: classref-item-separator
  584. ----
  585. .. _class_CPUParticles3D_property_emission_ring_height:
  586. .. rst-class:: classref-property
  587. :ref:`float<class_float>` **emission_ring_height**
  588. .. rst-class:: classref-property-setget
  589. - void **set_emission_ring_height** **(** :ref:`float<class_float>` value **)**
  590. - :ref:`float<class_float>` **get_emission_ring_height** **(** **)**
  591. The height of the ring when using the emitter :ref:`EMISSION_SHAPE_RING<class_CPUParticles3D_constant_EMISSION_SHAPE_RING>`.
  592. .. rst-class:: classref-item-separator
  593. ----
  594. .. _class_CPUParticles3D_property_emission_ring_inner_radius:
  595. .. rst-class:: classref-property
  596. :ref:`float<class_float>` **emission_ring_inner_radius**
  597. .. rst-class:: classref-property-setget
  598. - void **set_emission_ring_inner_radius** **(** :ref:`float<class_float>` value **)**
  599. - :ref:`float<class_float>` **get_emission_ring_inner_radius** **(** **)**
  600. The inner radius of the ring when using the emitter :ref:`EMISSION_SHAPE_RING<class_CPUParticles3D_constant_EMISSION_SHAPE_RING>`.
  601. .. rst-class:: classref-item-separator
  602. ----
  603. .. _class_CPUParticles3D_property_emission_ring_radius:
  604. .. rst-class:: classref-property
  605. :ref:`float<class_float>` **emission_ring_radius**
  606. .. rst-class:: classref-property-setget
  607. - void **set_emission_ring_radius** **(** :ref:`float<class_float>` value **)**
  608. - :ref:`float<class_float>` **get_emission_ring_radius** **(** **)**
  609. The radius of the ring when using the emitter :ref:`EMISSION_SHAPE_RING<class_CPUParticles3D_constant_EMISSION_SHAPE_RING>`.
  610. .. rst-class:: classref-item-separator
  611. ----
  612. .. _class_CPUParticles3D_property_emission_shape:
  613. .. rst-class:: classref-property
  614. :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **emission_shape** = ``0``
  615. .. rst-class:: classref-property-setget
  616. - void **set_emission_shape** **(** :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` value **)**
  617. - :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` **get_emission_shape** **(** **)**
  618. Particles will be emitted inside this region. See :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` for possible values.
  619. .. rst-class:: classref-item-separator
  620. ----
  621. .. _class_CPUParticles3D_property_emission_sphere_radius:
  622. .. rst-class:: classref-property
  623. :ref:`float<class_float>` **emission_sphere_radius**
  624. .. rst-class:: classref-property-setget
  625. - void **set_emission_sphere_radius** **(** :ref:`float<class_float>` value **)**
  626. - :ref:`float<class_float>` **get_emission_sphere_radius** **(** **)**
  627. The sphere's radius if :ref:`EmissionShape<enum_CPUParticles3D_EmissionShape>` is set to :ref:`EMISSION_SHAPE_SPHERE<class_CPUParticles3D_constant_EMISSION_SHAPE_SPHERE>`.
  628. .. rst-class:: classref-item-separator
  629. ----
  630. .. _class_CPUParticles3D_property_emitting:
  631. .. rst-class:: classref-property
  632. :ref:`bool<class_bool>` **emitting** = ``true``
  633. .. rst-class:: classref-property-setget
  634. - void **set_emitting** **(** :ref:`bool<class_bool>` value **)**
  635. - :ref:`bool<class_bool>` **is_emitting** **(** **)**
  636. If ``true``, particles are being emitted. :ref:`emitting<class_CPUParticles3D_property_emitting>` can be used to start and stop particles from emitting. However, if :ref:`one_shot<class_CPUParticles3D_property_one_shot>` is ``true`` setting :ref:`emitting<class_CPUParticles3D_property_emitting>` to ``true`` will not restart the emission cycle until after all active particles finish processing. You can use the :ref:`finished<class_CPUParticles3D_signal_finished>` signal to be notified once all active particles finish processing.
  637. .. rst-class:: classref-item-separator
  638. ----
  639. .. _class_CPUParticles3D_property_explosiveness:
  640. .. rst-class:: classref-property
  641. :ref:`float<class_float>` **explosiveness** = ``0.0``
  642. .. rst-class:: classref-property-setget
  643. - void **set_explosiveness_ratio** **(** :ref:`float<class_float>` value **)**
  644. - :ref:`float<class_float>` **get_explosiveness_ratio** **(** **)**
  645. How rapidly particles in an emission cycle are emitted. If greater than ``0``, there will be a gap in emissions before the next cycle begins.
  646. .. rst-class:: classref-item-separator
  647. ----
  648. .. _class_CPUParticles3D_property_fixed_fps:
  649. .. rst-class:: classref-property
  650. :ref:`int<class_int>` **fixed_fps** = ``0``
  651. .. rst-class:: classref-property-setget
  652. - void **set_fixed_fps** **(** :ref:`int<class_int>` value **)**
  653. - :ref:`int<class_int>` **get_fixed_fps** **(** **)**
  654. The particle system's frame rate is fixed to a value. For example, changing the value to 2 will make the particles render at 2 frames per second. Note this does not slow down the particle system itself.
  655. .. rst-class:: classref-item-separator
  656. ----
  657. .. _class_CPUParticles3D_property_flatness:
  658. .. rst-class:: classref-property
  659. :ref:`float<class_float>` **flatness** = ``0.0``
  660. .. rst-class:: classref-property-setget
  661. - void **set_flatness** **(** :ref:`float<class_float>` value **)**
  662. - :ref:`float<class_float>` **get_flatness** **(** **)**
  663. Amount of :ref:`spread<class_CPUParticles3D_property_spread>` in Y/Z plane. A value of ``1`` restricts particles to X/Z plane.
  664. .. rst-class:: classref-item-separator
  665. ----
  666. .. _class_CPUParticles3D_property_fract_delta:
  667. .. rst-class:: classref-property
  668. :ref:`bool<class_bool>` **fract_delta** = ``true``
  669. .. rst-class:: classref-property-setget
  670. - void **set_fractional_delta** **(** :ref:`bool<class_bool>` value **)**
  671. - :ref:`bool<class_bool>` **get_fractional_delta** **(** **)**
  672. If ``true``, results in fractional delta calculation which has a smoother particles display effect.
  673. .. rst-class:: classref-item-separator
  674. ----
  675. .. _class_CPUParticles3D_property_gravity:
  676. .. rst-class:: classref-property
  677. :ref:`Vector3<class_Vector3>` **gravity** = ``Vector3(0, -9.8, 0)``
  678. .. rst-class:: classref-property-setget
  679. - void **set_gravity** **(** :ref:`Vector3<class_Vector3>` value **)**
  680. - :ref:`Vector3<class_Vector3>` **get_gravity** **(** **)**
  681. Gravity applied to every particle.
  682. .. rst-class:: classref-item-separator
  683. ----
  684. .. _class_CPUParticles3D_property_hue_variation_curve:
  685. .. rst-class:: classref-property
  686. :ref:`Curve<class_Curve>` **hue_variation_curve**
  687. .. rst-class:: classref-property-setget
  688. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  689. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  690. Each particle's hue will vary along this :ref:`Curve<class_Curve>`.
  691. .. rst-class:: classref-item-separator
  692. ----
  693. .. _class_CPUParticles3D_property_hue_variation_max:
  694. .. rst-class:: classref-property
  695. :ref:`float<class_float>` **hue_variation_max** = ``0.0``
  696. .. rst-class:: classref-property-setget
  697. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  698. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  699. Maximum hue variation.
  700. .. rst-class:: classref-item-separator
  701. ----
  702. .. _class_CPUParticles3D_property_hue_variation_min:
  703. .. rst-class:: classref-property
  704. :ref:`float<class_float>` **hue_variation_min** = ``0.0``
  705. .. rst-class:: classref-property-setget
  706. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  707. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  708. Minimum hue variation.
  709. .. rst-class:: classref-item-separator
  710. ----
  711. .. _class_CPUParticles3D_property_initial_velocity_max:
  712. .. rst-class:: classref-property
  713. :ref:`float<class_float>` **initial_velocity_max** = ``0.0``
  714. .. rst-class:: classref-property-setget
  715. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  716. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  717. Maximum value of the initial velocity.
  718. .. rst-class:: classref-item-separator
  719. ----
  720. .. _class_CPUParticles3D_property_initial_velocity_min:
  721. .. rst-class:: classref-property
  722. :ref:`float<class_float>` **initial_velocity_min** = ``0.0``
  723. .. rst-class:: classref-property-setget
  724. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  725. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  726. Minimum value of the initial velocity.
  727. .. rst-class:: classref-item-separator
  728. ----
  729. .. _class_CPUParticles3D_property_lifetime:
  730. .. rst-class:: classref-property
  731. :ref:`float<class_float>` **lifetime** = ``1.0``
  732. .. rst-class:: classref-property-setget
  733. - void **set_lifetime** **(** :ref:`float<class_float>` value **)**
  734. - :ref:`float<class_float>` **get_lifetime** **(** **)**
  735. Amount of time each particle will exist.
  736. .. rst-class:: classref-item-separator
  737. ----
  738. .. _class_CPUParticles3D_property_lifetime_randomness:
  739. .. rst-class:: classref-property
  740. :ref:`float<class_float>` **lifetime_randomness** = ``0.0``
  741. .. rst-class:: classref-property-setget
  742. - void **set_lifetime_randomness** **(** :ref:`float<class_float>` value **)**
  743. - :ref:`float<class_float>` **get_lifetime_randomness** **(** **)**
  744. Particle lifetime randomness ratio.
  745. .. rst-class:: classref-item-separator
  746. ----
  747. .. _class_CPUParticles3D_property_linear_accel_curve:
  748. .. rst-class:: classref-property
  749. :ref:`Curve<class_Curve>` **linear_accel_curve**
  750. .. rst-class:: classref-property-setget
  751. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  752. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  753. Each particle's linear acceleration will vary along this :ref:`Curve<class_Curve>`.
  754. .. rst-class:: classref-item-separator
  755. ----
  756. .. _class_CPUParticles3D_property_linear_accel_max:
  757. .. rst-class:: classref-property
  758. :ref:`float<class_float>` **linear_accel_max** = ``0.0``
  759. .. rst-class:: classref-property-setget
  760. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  761. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  762. Maximum linear acceleration.
  763. .. rst-class:: classref-item-separator
  764. ----
  765. .. _class_CPUParticles3D_property_linear_accel_min:
  766. .. rst-class:: classref-property
  767. :ref:`float<class_float>` **linear_accel_min** = ``0.0``
  768. .. rst-class:: classref-property-setget
  769. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  770. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  771. Minimum linear acceleration.
  772. .. rst-class:: classref-item-separator
  773. ----
  774. .. _class_CPUParticles3D_property_local_coords:
  775. .. rst-class:: classref-property
  776. :ref:`bool<class_bool>` **local_coords** = ``false``
  777. .. rst-class:: classref-property-setget
  778. - void **set_use_local_coordinates** **(** :ref:`bool<class_bool>` value **)**
  779. - :ref:`bool<class_bool>` **get_use_local_coordinates** **(** **)**
  780. If ``true``, particles use the parent node's coordinate space (known as local coordinates). This will cause particles to move and rotate along the **CPUParticles3D** node (and its parents) when it is moved or rotated. If ``false``, particles use global coordinates; they will not move or rotate along the **CPUParticles3D** node (and its parents) when it is moved or rotated.
  781. .. rst-class:: classref-item-separator
  782. ----
  783. .. _class_CPUParticles3D_property_mesh:
  784. .. rst-class:: classref-property
  785. :ref:`Mesh<class_Mesh>` **mesh**
  786. .. rst-class:: classref-property-setget
  787. - void **set_mesh** **(** :ref:`Mesh<class_Mesh>` value **)**
  788. - :ref:`Mesh<class_Mesh>` **get_mesh** **(** **)**
  789. The :ref:`Mesh<class_Mesh>` used for each particle. If ``null``, particles will be spheres.
  790. .. rst-class:: classref-item-separator
  791. ----
  792. .. _class_CPUParticles3D_property_one_shot:
  793. .. rst-class:: classref-property
  794. :ref:`bool<class_bool>` **one_shot** = ``false``
  795. .. rst-class:: classref-property-setget
  796. - void **set_one_shot** **(** :ref:`bool<class_bool>` value **)**
  797. - :ref:`bool<class_bool>` **get_one_shot** **(** **)**
  798. If ``true``, only one emission cycle occurs. If set ``true`` during a cycle, emission will stop at the cycle's end.
  799. .. rst-class:: classref-item-separator
  800. ----
  801. .. _class_CPUParticles3D_property_orbit_velocity_curve:
  802. .. rst-class:: classref-property
  803. :ref:`Curve<class_Curve>` **orbit_velocity_curve**
  804. .. rst-class:: classref-property-setget
  805. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  806. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  807. Each particle's orbital velocity will vary along this :ref:`Curve<class_Curve>`.
  808. .. rst-class:: classref-item-separator
  809. ----
  810. .. _class_CPUParticles3D_property_orbit_velocity_max:
  811. .. rst-class:: classref-property
  812. :ref:`float<class_float>` **orbit_velocity_max**
  813. .. rst-class:: classref-property-setget
  814. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  815. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  816. Maximum orbit velocity.
  817. .. rst-class:: classref-item-separator
  818. ----
  819. .. _class_CPUParticles3D_property_orbit_velocity_min:
  820. .. rst-class:: classref-property
  821. :ref:`float<class_float>` **orbit_velocity_min**
  822. .. rst-class:: classref-property-setget
  823. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  824. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  825. Minimum orbit velocity.
  826. .. rst-class:: classref-item-separator
  827. ----
  828. .. _class_CPUParticles3D_property_particle_flag_align_y:
  829. .. rst-class:: classref-property
  830. :ref:`bool<class_bool>` **particle_flag_align_y** = ``false``
  831. .. rst-class:: classref-property-setget
  832. - void **set_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag, :ref:`bool<class_bool>` enable **)**
  833. - :ref:`bool<class_bool>` **get_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag **)** |const|
  834. Align Y axis of particle with the direction of its velocity.
  835. .. rst-class:: classref-item-separator
  836. ----
  837. .. _class_CPUParticles3D_property_particle_flag_disable_z:
  838. .. rst-class:: classref-property
  839. :ref:`bool<class_bool>` **particle_flag_disable_z** = ``false``
  840. .. rst-class:: classref-property-setget
  841. - void **set_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag, :ref:`bool<class_bool>` enable **)**
  842. - :ref:`bool<class_bool>` **get_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag **)** |const|
  843. If ``true``, particles will not move on the Z axis.
  844. .. rst-class:: classref-item-separator
  845. ----
  846. .. _class_CPUParticles3D_property_particle_flag_rotate_y:
  847. .. rst-class:: classref-property
  848. :ref:`bool<class_bool>` **particle_flag_rotate_y** = ``false``
  849. .. rst-class:: classref-property-setget
  850. - void **set_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag, :ref:`bool<class_bool>` enable **)**
  851. - :ref:`bool<class_bool>` **get_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag **)** |const|
  852. If ``true``, particles rotate around Y axis by :ref:`angle_min<class_CPUParticles3D_property_angle_min>`.
  853. .. rst-class:: classref-item-separator
  854. ----
  855. .. _class_CPUParticles3D_property_preprocess:
  856. .. rst-class:: classref-property
  857. :ref:`float<class_float>` **preprocess** = ``0.0``
  858. .. rst-class:: classref-property-setget
  859. - void **set_pre_process_time** **(** :ref:`float<class_float>` value **)**
  860. - :ref:`float<class_float>` **get_pre_process_time** **(** **)**
  861. Particle system starts as if it had already run for this many seconds.
  862. .. rst-class:: classref-item-separator
  863. ----
  864. .. _class_CPUParticles3D_property_radial_accel_curve:
  865. .. rst-class:: classref-property
  866. :ref:`Curve<class_Curve>` **radial_accel_curve**
  867. .. rst-class:: classref-property-setget
  868. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  869. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  870. Each particle's radial acceleration will vary along this :ref:`Curve<class_Curve>`.
  871. .. rst-class:: classref-item-separator
  872. ----
  873. .. _class_CPUParticles3D_property_radial_accel_max:
  874. .. rst-class:: classref-property
  875. :ref:`float<class_float>` **radial_accel_max** = ``0.0``
  876. .. rst-class:: classref-property-setget
  877. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  878. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  879. Maximum radial acceleration.
  880. .. rst-class:: classref-item-separator
  881. ----
  882. .. _class_CPUParticles3D_property_radial_accel_min:
  883. .. rst-class:: classref-property
  884. :ref:`float<class_float>` **radial_accel_min** = ``0.0``
  885. .. rst-class:: classref-property-setget
  886. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  887. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  888. Minimum radial acceleration.
  889. .. rst-class:: classref-item-separator
  890. ----
  891. .. _class_CPUParticles3D_property_randomness:
  892. .. rst-class:: classref-property
  893. :ref:`float<class_float>` **randomness** = ``0.0``
  894. .. rst-class:: classref-property-setget
  895. - void **set_randomness_ratio** **(** :ref:`float<class_float>` value **)**
  896. - :ref:`float<class_float>` **get_randomness_ratio** **(** **)**
  897. Emission lifetime randomness ratio.
  898. .. rst-class:: classref-item-separator
  899. ----
  900. .. _class_CPUParticles3D_property_scale_amount_curve:
  901. .. rst-class:: classref-property
  902. :ref:`Curve<class_Curve>` **scale_amount_curve**
  903. .. rst-class:: classref-property-setget
  904. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  905. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  906. Each particle's scale will vary along this :ref:`Curve<class_Curve>`.
  907. .. rst-class:: classref-item-separator
  908. ----
  909. .. _class_CPUParticles3D_property_scale_amount_max:
  910. .. rst-class:: classref-property
  911. :ref:`float<class_float>` **scale_amount_max** = ``1.0``
  912. .. rst-class:: classref-property-setget
  913. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  914. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  915. Maximum scale.
  916. .. rst-class:: classref-item-separator
  917. ----
  918. .. _class_CPUParticles3D_property_scale_amount_min:
  919. .. rst-class:: classref-property
  920. :ref:`float<class_float>` **scale_amount_min** = ``1.0``
  921. .. rst-class:: classref-property-setget
  922. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  923. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  924. Minimum scale.
  925. .. rst-class:: classref-item-separator
  926. ----
  927. .. _class_CPUParticles3D_property_scale_curve_x:
  928. .. rst-class:: classref-property
  929. :ref:`Curve<class_Curve>` **scale_curve_x**
  930. .. rst-class:: classref-property-setget
  931. - void **set_scale_curve_x** **(** :ref:`Curve<class_Curve>` value **)**
  932. - :ref:`Curve<class_Curve>` **get_scale_curve_x** **(** **)**
  933. Curve for the scale over life, along the x axis.
  934. .. rst-class:: classref-item-separator
  935. ----
  936. .. _class_CPUParticles3D_property_scale_curve_y:
  937. .. rst-class:: classref-property
  938. :ref:`Curve<class_Curve>` **scale_curve_y**
  939. .. rst-class:: classref-property-setget
  940. - void **set_scale_curve_y** **(** :ref:`Curve<class_Curve>` value **)**
  941. - :ref:`Curve<class_Curve>` **get_scale_curve_y** **(** **)**
  942. Curve for the scale over life, along the y axis.
  943. .. rst-class:: classref-item-separator
  944. ----
  945. .. _class_CPUParticles3D_property_scale_curve_z:
  946. .. rst-class:: classref-property
  947. :ref:`Curve<class_Curve>` **scale_curve_z**
  948. .. rst-class:: classref-property-setget
  949. - void **set_scale_curve_z** **(** :ref:`Curve<class_Curve>` value **)**
  950. - :ref:`Curve<class_Curve>` **get_scale_curve_z** **(** **)**
  951. Curve for the scale over life, along the z axis.
  952. .. rst-class:: classref-item-separator
  953. ----
  954. .. _class_CPUParticles3D_property_speed_scale:
  955. .. rst-class:: classref-property
  956. :ref:`float<class_float>` **speed_scale** = ``1.0``
  957. .. rst-class:: classref-property-setget
  958. - void **set_speed_scale** **(** :ref:`float<class_float>` value **)**
  959. - :ref:`float<class_float>` **get_speed_scale** **(** **)**
  960. Particle system's running speed scaling ratio. A value of ``0`` can be used to pause the particles.
  961. .. rst-class:: classref-item-separator
  962. ----
  963. .. _class_CPUParticles3D_property_split_scale:
  964. .. rst-class:: classref-property
  965. :ref:`bool<class_bool>` **split_scale** = ``false``
  966. .. rst-class:: classref-property-setget
  967. - void **set_split_scale** **(** :ref:`bool<class_bool>` value **)**
  968. - :ref:`bool<class_bool>` **get_split_scale** **(** **)**
  969. If set to ``true``, three different scale curves can be specified, one per scale axis.
  970. .. rst-class:: classref-item-separator
  971. ----
  972. .. _class_CPUParticles3D_property_spread:
  973. .. rst-class:: classref-property
  974. :ref:`float<class_float>` **spread** = ``45.0``
  975. .. rst-class:: classref-property-setget
  976. - void **set_spread** **(** :ref:`float<class_float>` value **)**
  977. - :ref:`float<class_float>` **get_spread** **(** **)**
  978. Each particle's initial direction range from ``+spread`` to ``-spread`` degrees. Applied to X/Z plane and Y/Z planes.
  979. .. rst-class:: classref-item-separator
  980. ----
  981. .. _class_CPUParticles3D_property_tangential_accel_curve:
  982. .. rst-class:: classref-property
  983. :ref:`Curve<class_Curve>` **tangential_accel_curve**
  984. .. rst-class:: classref-property-setget
  985. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  986. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  987. Each particle's tangential acceleration will vary along this :ref:`Curve<class_Curve>`.
  988. .. rst-class:: classref-item-separator
  989. ----
  990. .. _class_CPUParticles3D_property_tangential_accel_max:
  991. .. rst-class:: classref-property
  992. :ref:`float<class_float>` **tangential_accel_max** = ``0.0``
  993. .. rst-class:: classref-property-setget
  994. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  995. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  996. Maximum tangent acceleration.
  997. .. rst-class:: classref-item-separator
  998. ----
  999. .. _class_CPUParticles3D_property_tangential_accel_min:
  1000. .. rst-class:: classref-property
  1001. :ref:`float<class_float>` **tangential_accel_min** = ``0.0``
  1002. .. rst-class:: classref-property-setget
  1003. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  1004. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  1005. Minimum tangent acceleration.
  1006. .. rst-class:: classref-section-separator
  1007. ----
  1008. .. rst-class:: classref-descriptions-group
  1009. Method Descriptions
  1010. -------------------
  1011. .. _class_CPUParticles3D_method_convert_from_particles:
  1012. .. rst-class:: classref-method
  1013. void **convert_from_particles** **(** :ref:`Node<class_Node>` particles **)**
  1014. Sets this node's properties to match a given :ref:`GPUParticles3D<class_GPUParticles3D>` node with an assigned :ref:`ParticleProcessMaterial<class_ParticleProcessMaterial>`.
  1015. .. rst-class:: classref-item-separator
  1016. ----
  1017. .. _class_CPUParticles3D_method_get_param_curve:
  1018. .. rst-class:: classref-method
  1019. :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  1020. Returns the :ref:`Curve<class_Curve>` of the parameter specified by :ref:`Parameter<enum_CPUParticles3D_Parameter>`.
  1021. .. rst-class:: classref-item-separator
  1022. ----
  1023. .. _class_CPUParticles3D_method_get_param_max:
  1024. .. rst-class:: classref-method
  1025. :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  1026. Returns the maximum value range for the given parameter.
  1027. .. rst-class:: classref-item-separator
  1028. ----
  1029. .. _class_CPUParticles3D_method_get_param_min:
  1030. .. rst-class:: classref-method
  1031. :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param **)** |const|
  1032. Returns the minimum value range for the given parameter.
  1033. .. rst-class:: classref-item-separator
  1034. ----
  1035. .. _class_CPUParticles3D_method_get_particle_flag:
  1036. .. rst-class:: classref-method
  1037. :ref:`bool<class_bool>` **get_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag **)** |const|
  1038. Returns the enabled state of the given particle flag (see :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` for options).
  1039. .. rst-class:: classref-item-separator
  1040. ----
  1041. .. _class_CPUParticles3D_method_restart:
  1042. .. rst-class:: classref-method
  1043. void **restart** **(** **)**
  1044. Restarts the particle emitter.
  1045. .. rst-class:: classref-item-separator
  1046. ----
  1047. .. _class_CPUParticles3D_method_set_param_curve:
  1048. .. rst-class:: classref-method
  1049. void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  1050. Sets the :ref:`Curve<class_Curve>` of the parameter specified by :ref:`Parameter<enum_CPUParticles3D_Parameter>`.
  1051. .. rst-class:: classref-item-separator
  1052. ----
  1053. .. _class_CPUParticles3D_method_set_param_max:
  1054. .. rst-class:: classref-method
  1055. void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  1056. Sets the maximum value for the given parameter.
  1057. .. rst-class:: classref-item-separator
  1058. ----
  1059. .. _class_CPUParticles3D_method_set_param_min:
  1060. .. rst-class:: classref-method
  1061. void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles3D_Parameter>` param, :ref:`float<class_float>` value **)**
  1062. Sets the minimum value for the given parameter.
  1063. .. rst-class:: classref-item-separator
  1064. ----
  1065. .. _class_CPUParticles3D_method_set_particle_flag:
  1066. .. rst-class:: classref-method
  1067. void **set_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` particle_flag, :ref:`bool<class_bool>` enable **)**
  1068. Enables or disables the given particle flag (see :ref:`ParticleFlags<enum_CPUParticles3D_ParticleFlags>` for options).
  1069. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  1070. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  1071. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  1072. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  1073. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  1074. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  1075. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`