class_cpuparticles2d.rst 68 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409
  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/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CPUParticles2D.xml.
  6. .. _class_CPUParticles2D:
  7. CPUParticles2D
  8. ==============
  9. **Inherits:** :ref:`Node2D<class_Node2D>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. CPU-based 2D particle emitter.
  11. Description
  12. -----------
  13. CPU-based 2D particle node used to create a variety of particle systems and effects.
  14. See also :ref:`GPUParticles2D<class_GPUParticles2D>`, which provides the same functionality with hardware acceleration, but may not run on older devices.
  15. Tutorials
  16. ---------
  17. - :doc:`Particle systems (2D) <../tutorials/2d/particle_systems_2d>`
  18. Properties
  19. ----------
  20. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  21. | :ref:`int<class_int>` | :ref:`amount<class_CPUParticles2D_property_amount>` | ``8`` |
  22. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  23. | :ref:`Curve<class_Curve>` | :ref:`angle_curve<class_CPUParticles2D_property_angle_curve>` | |
  24. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  25. | :ref:`float<class_float>` | :ref:`angle_max<class_CPUParticles2D_property_angle_max>` | ``0.0`` |
  26. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  27. | :ref:`float<class_float>` | :ref:`angle_min<class_CPUParticles2D_property_angle_min>` | ``0.0`` |
  28. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  29. | :ref:`Curve<class_Curve>` | :ref:`angular_velocity_curve<class_CPUParticles2D_property_angular_velocity_curve>` | |
  30. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  31. | :ref:`float<class_float>` | :ref:`angular_velocity_max<class_CPUParticles2D_property_angular_velocity_max>` | ``0.0`` |
  32. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  33. | :ref:`float<class_float>` | :ref:`angular_velocity_min<class_CPUParticles2D_property_angular_velocity_min>` | ``0.0`` |
  34. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  35. | :ref:`Curve<class_Curve>` | :ref:`anim_offset_curve<class_CPUParticles2D_property_anim_offset_curve>` | |
  36. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  37. | :ref:`float<class_float>` | :ref:`anim_offset_max<class_CPUParticles2D_property_anim_offset_max>` | ``0.0`` |
  38. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  39. | :ref:`float<class_float>` | :ref:`anim_offset_min<class_CPUParticles2D_property_anim_offset_min>` | ``0.0`` |
  40. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  41. | :ref:`Curve<class_Curve>` | :ref:`anim_speed_curve<class_CPUParticles2D_property_anim_speed_curve>` | |
  42. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  43. | :ref:`float<class_float>` | :ref:`anim_speed_max<class_CPUParticles2D_property_anim_speed_max>` | ``0.0`` |
  44. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  45. | :ref:`float<class_float>` | :ref:`anim_speed_min<class_CPUParticles2D_property_anim_speed_min>` | ``0.0`` |
  46. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  47. | :ref:`Color<class_Color>` | :ref:`color<class_CPUParticles2D_property_color>` | ``Color(1, 1, 1, 1)`` |
  48. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  49. | :ref:`Gradient<class_Gradient>` | :ref:`color_initial_ramp<class_CPUParticles2D_property_color_initial_ramp>` | |
  50. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  51. | :ref:`Gradient<class_Gradient>` | :ref:`color_ramp<class_CPUParticles2D_property_color_ramp>` | |
  52. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  53. | :ref:`Curve<class_Curve>` | :ref:`damping_curve<class_CPUParticles2D_property_damping_curve>` | |
  54. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  55. | :ref:`float<class_float>` | :ref:`damping_max<class_CPUParticles2D_property_damping_max>` | ``0.0`` |
  56. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  57. | :ref:`float<class_float>` | :ref:`damping_min<class_CPUParticles2D_property_damping_min>` | ``0.0`` |
  58. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  59. | :ref:`Vector2<class_Vector2>` | :ref:`direction<class_CPUParticles2D_property_direction>` | ``Vector2(1, 0)`` |
  60. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  61. | :ref:`DrawOrder<enum_CPUParticles2D_DrawOrder>` | :ref:`draw_order<class_CPUParticles2D_property_draw_order>` | ``0`` |
  62. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  63. | :ref:`PackedColorArray<class_PackedColorArray>` | :ref:`emission_colors<class_CPUParticles2D_property_emission_colors>` | |
  64. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  65. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`emission_normals<class_CPUParticles2D_property_emission_normals>` | |
  66. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  67. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`emission_points<class_CPUParticles2D_property_emission_points>` | |
  68. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  69. | :ref:`Vector2<class_Vector2>` | :ref:`emission_rect_extents<class_CPUParticles2D_property_emission_rect_extents>` | |
  70. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  71. | :ref:`EmissionShape<enum_CPUParticles2D_EmissionShape>` | :ref:`emission_shape<class_CPUParticles2D_property_emission_shape>` | ``0`` |
  72. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  73. | :ref:`float<class_float>` | :ref:`emission_sphere_radius<class_CPUParticles2D_property_emission_sphere_radius>` | |
  74. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  75. | :ref:`bool<class_bool>` | :ref:`emitting<class_CPUParticles2D_property_emitting>` | ``true`` |
  76. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  77. | :ref:`float<class_float>` | :ref:`explosiveness<class_CPUParticles2D_property_explosiveness>` | ``0.0`` |
  78. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  79. | :ref:`int<class_int>` | :ref:`fixed_fps<class_CPUParticles2D_property_fixed_fps>` | ``0`` |
  80. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  81. | :ref:`bool<class_bool>` | :ref:`fract_delta<class_CPUParticles2D_property_fract_delta>` | ``true`` |
  82. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  83. | :ref:`Vector2<class_Vector2>` | :ref:`gravity<class_CPUParticles2D_property_gravity>` | ``Vector2(0, 980)`` |
  84. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  85. | :ref:`Curve<class_Curve>` | :ref:`hue_variation_curve<class_CPUParticles2D_property_hue_variation_curve>` | |
  86. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  87. | :ref:`float<class_float>` | :ref:`hue_variation_max<class_CPUParticles2D_property_hue_variation_max>` | ``0.0`` |
  88. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  89. | :ref:`float<class_float>` | :ref:`hue_variation_min<class_CPUParticles2D_property_hue_variation_min>` | ``0.0`` |
  90. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  91. | :ref:`float<class_float>` | :ref:`initial_velocity_max<class_CPUParticles2D_property_initial_velocity_max>` | ``0.0`` |
  92. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  93. | :ref:`float<class_float>` | :ref:`initial_velocity_min<class_CPUParticles2D_property_initial_velocity_min>` | ``0.0`` |
  94. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  95. | :ref:`float<class_float>` | :ref:`lifetime<class_CPUParticles2D_property_lifetime>` | ``1.0`` |
  96. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  97. | :ref:`float<class_float>` | :ref:`lifetime_randomness<class_CPUParticles2D_property_lifetime_randomness>` | ``0.0`` |
  98. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  99. | :ref:`Curve<class_Curve>` | :ref:`linear_accel_curve<class_CPUParticles2D_property_linear_accel_curve>` | |
  100. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  101. | :ref:`float<class_float>` | :ref:`linear_accel_max<class_CPUParticles2D_property_linear_accel_max>` | ``0.0`` |
  102. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  103. | :ref:`float<class_float>` | :ref:`linear_accel_min<class_CPUParticles2D_property_linear_accel_min>` | ``0.0`` |
  104. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  105. | :ref:`bool<class_bool>` | :ref:`local_coords<class_CPUParticles2D_property_local_coords>` | ``false`` |
  106. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  107. | :ref:`bool<class_bool>` | :ref:`one_shot<class_CPUParticles2D_property_one_shot>` | ``false`` |
  108. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  109. | :ref:`Curve<class_Curve>` | :ref:`orbit_velocity_curve<class_CPUParticles2D_property_orbit_velocity_curve>` | |
  110. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  111. | :ref:`float<class_float>` | :ref:`orbit_velocity_max<class_CPUParticles2D_property_orbit_velocity_max>` | ``0.0`` |
  112. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  113. | :ref:`float<class_float>` | :ref:`orbit_velocity_min<class_CPUParticles2D_property_orbit_velocity_min>` | ``0.0`` |
  114. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  115. | :ref:`bool<class_bool>` | :ref:`particle_flag_align_y<class_CPUParticles2D_property_particle_flag_align_y>` | ``false`` |
  116. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  117. | :ref:`float<class_float>` | :ref:`preprocess<class_CPUParticles2D_property_preprocess>` | ``0.0`` |
  118. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  119. | :ref:`Curve<class_Curve>` | :ref:`radial_accel_curve<class_CPUParticles2D_property_radial_accel_curve>` | |
  120. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  121. | :ref:`float<class_float>` | :ref:`radial_accel_max<class_CPUParticles2D_property_radial_accel_max>` | ``0.0`` |
  122. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  123. | :ref:`float<class_float>` | :ref:`radial_accel_min<class_CPUParticles2D_property_radial_accel_min>` | ``0.0`` |
  124. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  125. | :ref:`float<class_float>` | :ref:`randomness<class_CPUParticles2D_property_randomness>` | ``0.0`` |
  126. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  127. | :ref:`Curve<class_Curve>` | :ref:`scale_amount_curve<class_CPUParticles2D_property_scale_amount_curve>` | |
  128. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  129. | :ref:`float<class_float>` | :ref:`scale_amount_max<class_CPUParticles2D_property_scale_amount_max>` | ``1.0`` |
  130. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  131. | :ref:`float<class_float>` | :ref:`scale_amount_min<class_CPUParticles2D_property_scale_amount_min>` | ``1.0`` |
  132. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  133. | :ref:`Curve<class_Curve>` | :ref:`scale_curve_x<class_CPUParticles2D_property_scale_curve_x>` | |
  134. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  135. | :ref:`Curve<class_Curve>` | :ref:`scale_curve_y<class_CPUParticles2D_property_scale_curve_y>` | |
  136. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  137. | :ref:`float<class_float>` | :ref:`speed_scale<class_CPUParticles2D_property_speed_scale>` | ``1.0`` |
  138. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  139. | :ref:`bool<class_bool>` | :ref:`split_scale<class_CPUParticles2D_property_split_scale>` | ``false`` |
  140. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  141. | :ref:`float<class_float>` | :ref:`spread<class_CPUParticles2D_property_spread>` | ``45.0`` |
  142. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  143. | :ref:`Curve<class_Curve>` | :ref:`tangential_accel_curve<class_CPUParticles2D_property_tangential_accel_curve>` | |
  144. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  145. | :ref:`float<class_float>` | :ref:`tangential_accel_max<class_CPUParticles2D_property_tangential_accel_max>` | ``0.0`` |
  146. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  147. | :ref:`float<class_float>` | :ref:`tangential_accel_min<class_CPUParticles2D_property_tangential_accel_min>` | ``0.0`` |
  148. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  149. | :ref:`Texture2D<class_Texture2D>` | :ref:`texture<class_CPUParticles2D_property_texture>` | |
  150. +---------------------------------------------------------+-------------------------------------------------------------------------------------+-----------------------+
  151. Methods
  152. -------
  153. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  154. | void | :ref:`convert_from_particles<class_CPUParticles2D_method_convert_from_particles>` **(** :ref:`Node<class_Node>` particles **)** |
  155. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  156. | :ref:`Curve<class_Curve>` | :ref:`get_param_curve<class_CPUParticles2D_method_get_param_curve>` **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param **)** |const| |
  157. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  158. | :ref:`float<class_float>` | :ref:`get_param_max<class_CPUParticles2D_method_get_param_max>` **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param **)** |const| |
  159. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  160. | :ref:`float<class_float>` | :ref:`get_param_min<class_CPUParticles2D_method_get_param_min>` **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param **)** |const| |
  161. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  162. | :ref:`bool<class_bool>` | :ref:`get_particle_flag<class_CPUParticles2D_method_get_particle_flag>` **(** :ref:`ParticleFlags<enum_CPUParticles2D_ParticleFlags>` particle_flag **)** |const| |
  163. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  164. | void | :ref:`restart<class_CPUParticles2D_method_restart>` **(** **)** |
  165. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  166. | void | :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)** |
  167. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  168. | void | :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>` **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param, :ref:`float<class_float>` value **)** |
  169. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  170. | void | :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>` **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param, :ref:`float<class_float>` value **)** |
  171. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  172. | void | :ref:`set_particle_flag<class_CPUParticles2D_method_set_particle_flag>` **(** :ref:`ParticleFlags<enum_CPUParticles2D_ParticleFlags>` particle_flag, :ref:`bool<class_bool>` enable **)** |
  173. +---------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  174. Enumerations
  175. ------------
  176. .. _enum_CPUParticles2D_DrawOrder:
  177. .. _class_CPUParticles2D_constant_DRAW_ORDER_INDEX:
  178. .. _class_CPUParticles2D_constant_DRAW_ORDER_LIFETIME:
  179. enum **DrawOrder**:
  180. - **DRAW_ORDER_INDEX** = **0** --- Particles are drawn in the order emitted.
  181. - **DRAW_ORDER_LIFETIME** = **1** --- Particles are drawn in order of remaining lifetime.
  182. ----
  183. .. _enum_CPUParticles2D_Parameter:
  184. .. _class_CPUParticles2D_constant_PARAM_INITIAL_LINEAR_VELOCITY:
  185. .. _class_CPUParticles2D_constant_PARAM_ANGULAR_VELOCITY:
  186. .. _class_CPUParticles2D_constant_PARAM_ORBIT_VELOCITY:
  187. .. _class_CPUParticles2D_constant_PARAM_LINEAR_ACCEL:
  188. .. _class_CPUParticles2D_constant_PARAM_RADIAL_ACCEL:
  189. .. _class_CPUParticles2D_constant_PARAM_TANGENTIAL_ACCEL:
  190. .. _class_CPUParticles2D_constant_PARAM_DAMPING:
  191. .. _class_CPUParticles2D_constant_PARAM_ANGLE:
  192. .. _class_CPUParticles2D_constant_PARAM_SCALE:
  193. .. _class_CPUParticles2D_constant_PARAM_HUE_VARIATION:
  194. .. _class_CPUParticles2D_constant_PARAM_ANIM_SPEED:
  195. .. _class_CPUParticles2D_constant_PARAM_ANIM_OFFSET:
  196. .. _class_CPUParticles2D_constant_PARAM_MAX:
  197. enum **Parameter**:
  198. - **PARAM_INITIAL_LINEAR_VELOCITY** = **0** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set initial velocity properties.
  199. - **PARAM_ANGULAR_VELOCITY** = **1** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set angular velocity properties.
  200. - **PARAM_ORBIT_VELOCITY** = **2** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set orbital velocity properties.
  201. - **PARAM_LINEAR_ACCEL** = **3** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set linear acceleration properties.
  202. - **PARAM_RADIAL_ACCEL** = **4** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set radial acceleration properties.
  203. - **PARAM_TANGENTIAL_ACCEL** = **5** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set tangential acceleration properties.
  204. - **PARAM_DAMPING** = **6** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set damping properties.
  205. - **PARAM_ANGLE** = **7** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set angle properties.
  206. - **PARAM_SCALE** = **8** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set scale properties.
  207. - **PARAM_HUE_VARIATION** = **9** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set hue variation properties.
  208. - **PARAM_ANIM_SPEED** = **10** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set animation speed properties.
  209. - **PARAM_ANIM_OFFSET** = **11** --- Use with :ref:`set_param_min<class_CPUParticles2D_method_set_param_min>`, :ref:`set_param_max<class_CPUParticles2D_method_set_param_max>`, and :ref:`set_param_curve<class_CPUParticles2D_method_set_param_curve>` to set animation offset properties.
  210. - **PARAM_MAX** = **12** --- Represents the size of the :ref:`Parameter<enum_CPUParticles2D_Parameter>` enum.
  211. ----
  212. .. _enum_CPUParticles2D_ParticleFlags:
  213. .. _class_CPUParticles2D_constant_PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY:
  214. .. _class_CPUParticles2D_constant_PARTICLE_FLAG_ROTATE_Y:
  215. .. _class_CPUParticles2D_constant_PARTICLE_FLAG_DISABLE_Z:
  216. .. _class_CPUParticles2D_constant_PARTICLE_FLAG_MAX:
  217. enum **ParticleFlags**:
  218. - **PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY** = **0** --- Use with :ref:`set_particle_flag<class_CPUParticles2D_method_set_particle_flag>` to set :ref:`particle_flag_align_y<class_CPUParticles2D_property_particle_flag_align_y>`.
  219. - **PARTICLE_FLAG_ROTATE_Y** = **1** --- Present for consistency with 3D particle nodes, not used in 2D.
  220. - **PARTICLE_FLAG_DISABLE_Z** = **2** --- Present for consistency with 3D particle nodes, not used in 2D.
  221. - **PARTICLE_FLAG_MAX** = **3** --- Represents the size of the :ref:`ParticleFlags<enum_CPUParticles2D_ParticleFlags>` enum.
  222. ----
  223. .. _enum_CPUParticles2D_EmissionShape:
  224. .. _class_CPUParticles2D_constant_EMISSION_SHAPE_POINT:
  225. .. _class_CPUParticles2D_constant_EMISSION_SHAPE_SPHERE:
  226. .. _class_CPUParticles2D_constant_EMISSION_SHAPE_SPHERE_SURFACE:
  227. .. _class_CPUParticles2D_constant_EMISSION_SHAPE_RECTANGLE:
  228. .. _class_CPUParticles2D_constant_EMISSION_SHAPE_POINTS:
  229. .. _class_CPUParticles2D_constant_EMISSION_SHAPE_DIRECTED_POINTS:
  230. .. _class_CPUParticles2D_constant_EMISSION_SHAPE_MAX:
  231. enum **EmissionShape**:
  232. - **EMISSION_SHAPE_POINT** = **0** --- All particles will be emitted from a single point.
  233. - **EMISSION_SHAPE_SPHERE** = **1** --- Particles will be emitted in the volume of a sphere flattened to two dimensions.
  234. - **EMISSION_SHAPE_SPHERE_SURFACE** = **2** --- Particles will be emitted on the surface of a sphere flattened to two dimensions.
  235. - **EMISSION_SHAPE_RECTANGLE** = **3** --- Particles will be emitted in the area of a rectangle.
  236. - **EMISSION_SHAPE_POINTS** = **4** --- Particles will be emitted at a position chosen randomly among :ref:`emission_points<class_CPUParticles2D_property_emission_points>`. Particle color will be modulated by :ref:`emission_colors<class_CPUParticles2D_property_emission_colors>`.
  237. - **EMISSION_SHAPE_DIRECTED_POINTS** = **5** --- Particles will be emitted at a position chosen randomly among :ref:`emission_points<class_CPUParticles2D_property_emission_points>`. Particle velocity and rotation will be set based on :ref:`emission_normals<class_CPUParticles2D_property_emission_normals>`. Particle color will be modulated by :ref:`emission_colors<class_CPUParticles2D_property_emission_colors>`.
  238. - **EMISSION_SHAPE_MAX** = **6** --- Represents the size of the :ref:`EmissionShape<enum_CPUParticles2D_EmissionShape>` enum.
  239. Property Descriptions
  240. ---------------------
  241. .. _class_CPUParticles2D_property_amount:
  242. - :ref:`int<class_int>` **amount**
  243. +-----------+-------------------+
  244. | *Default* | ``8`` |
  245. +-----------+-------------------+
  246. | *Setter* | set_amount(value) |
  247. +-----------+-------------------+
  248. | *Getter* | get_amount() |
  249. +-----------+-------------------+
  250. Number of particles emitted in one emission cycle.
  251. ----
  252. .. _class_CPUParticles2D_property_angle_curve:
  253. - :ref:`Curve<class_Curve>` **angle_curve**
  254. +----------+------------------------+
  255. | *Setter* | set_param_curve(value) |
  256. +----------+------------------------+
  257. | *Getter* | get_param_curve() |
  258. +----------+------------------------+
  259. Each particle's rotation will be animated along this :ref:`Curve<class_Curve>`.
  260. ----
  261. .. _class_CPUParticles2D_property_angle_max:
  262. - :ref:`float<class_float>` **angle_max**
  263. +-----------+----------------------+
  264. | *Default* | ``0.0`` |
  265. +-----------+----------------------+
  266. | *Setter* | set_param_max(value) |
  267. +-----------+----------------------+
  268. | *Getter* | get_param_max() |
  269. +-----------+----------------------+
  270. Maximum initial rotation applied to each particle, in degrees.
  271. ----
  272. .. _class_CPUParticles2D_property_angle_min:
  273. - :ref:`float<class_float>` **angle_min**
  274. +-----------+----------------------+
  275. | *Default* | ``0.0`` |
  276. +-----------+----------------------+
  277. | *Setter* | set_param_min(value) |
  278. +-----------+----------------------+
  279. | *Getter* | get_param_min() |
  280. +-----------+----------------------+
  281. Minimum equivalent of :ref:`angle_max<class_CPUParticles2D_property_angle_max>`.
  282. ----
  283. .. _class_CPUParticles2D_property_angular_velocity_curve:
  284. - :ref:`Curve<class_Curve>` **angular_velocity_curve**
  285. +----------+------------------------+
  286. | *Setter* | set_param_curve(value) |
  287. +----------+------------------------+
  288. | *Getter* | get_param_curve() |
  289. +----------+------------------------+
  290. Each particle's angular velocity will vary along this :ref:`Curve<class_Curve>`.
  291. ----
  292. .. _class_CPUParticles2D_property_angular_velocity_max:
  293. - :ref:`float<class_float>` **angular_velocity_max**
  294. +-----------+----------------------+
  295. | *Default* | ``0.0`` |
  296. +-----------+----------------------+
  297. | *Setter* | set_param_max(value) |
  298. +-----------+----------------------+
  299. | *Getter* | get_param_max() |
  300. +-----------+----------------------+
  301. Maximum initial angular velocity (rotation speed) applied to each particle in *degrees* per second.
  302. ----
  303. .. _class_CPUParticles2D_property_angular_velocity_min:
  304. - :ref:`float<class_float>` **angular_velocity_min**
  305. +-----------+----------------------+
  306. | *Default* | ``0.0`` |
  307. +-----------+----------------------+
  308. | *Setter* | set_param_min(value) |
  309. +-----------+----------------------+
  310. | *Getter* | get_param_min() |
  311. +-----------+----------------------+
  312. Minimum equivalent of :ref:`angular_velocity_max<class_CPUParticles2D_property_angular_velocity_max>`.
  313. ----
  314. .. _class_CPUParticles2D_property_anim_offset_curve:
  315. - :ref:`Curve<class_Curve>` **anim_offset_curve**
  316. +----------+------------------------+
  317. | *Setter* | set_param_curve(value) |
  318. +----------+------------------------+
  319. | *Getter* | get_param_curve() |
  320. +----------+------------------------+
  321. Each particle's animation offset will vary along this :ref:`Curve<class_Curve>`.
  322. ----
  323. .. _class_CPUParticles2D_property_anim_offset_max:
  324. - :ref:`float<class_float>` **anim_offset_max**
  325. +-----------+----------------------+
  326. | *Default* | ``0.0`` |
  327. +-----------+----------------------+
  328. | *Setter* | set_param_max(value) |
  329. +-----------+----------------------+
  330. | *Getter* | get_param_max() |
  331. +-----------+----------------------+
  332. Maximum animation offset that corresponds to frame index in the texture. ``0`` is the first frame, ``1`` is the last one. See :ref:`CanvasItemMaterial.particles_animation<class_CanvasItemMaterial_property_particles_animation>`.
  333. ----
  334. .. _class_CPUParticles2D_property_anim_offset_min:
  335. - :ref:`float<class_float>` **anim_offset_min**
  336. +-----------+----------------------+
  337. | *Default* | ``0.0`` |
  338. +-----------+----------------------+
  339. | *Setter* | set_param_min(value) |
  340. +-----------+----------------------+
  341. | *Getter* | get_param_min() |
  342. +-----------+----------------------+
  343. Minimum equivalent of :ref:`anim_offset_max<class_CPUParticles2D_property_anim_offset_max>`.
  344. ----
  345. .. _class_CPUParticles2D_property_anim_speed_curve:
  346. - :ref:`Curve<class_Curve>` **anim_speed_curve**
  347. +----------+------------------------+
  348. | *Setter* | set_param_curve(value) |
  349. +----------+------------------------+
  350. | *Getter* | get_param_curve() |
  351. +----------+------------------------+
  352. Each particle's animation speed will vary along this :ref:`Curve<class_Curve>`.
  353. ----
  354. .. _class_CPUParticles2D_property_anim_speed_max:
  355. - :ref:`float<class_float>` **anim_speed_max**
  356. +-----------+----------------------+
  357. | *Default* | ``0.0`` |
  358. +-----------+----------------------+
  359. | *Setter* | set_param_max(value) |
  360. +-----------+----------------------+
  361. | *Getter* | get_param_max() |
  362. +-----------+----------------------+
  363. Maximum particle animation speed. Animation speed of ``1`` means that the particles will make full ``0`` to ``1`` offset cycle during lifetime, ``2`` means ``2`` cycles etc.
  364. With animation speed greater than ``1``, remember to enable :ref:`CanvasItemMaterial.particles_anim_loop<class_CanvasItemMaterial_property_particles_anim_loop>` property if you want the animation to repeat.
  365. ----
  366. .. _class_CPUParticles2D_property_anim_speed_min:
  367. - :ref:`float<class_float>` **anim_speed_min**
  368. +-----------+----------------------+
  369. | *Default* | ``0.0`` |
  370. +-----------+----------------------+
  371. | *Setter* | set_param_min(value) |
  372. +-----------+----------------------+
  373. | *Getter* | get_param_min() |
  374. +-----------+----------------------+
  375. Minimum equivalent of :ref:`anim_speed_max<class_CPUParticles2D_property_anim_speed_max>`.
  376. ----
  377. .. _class_CPUParticles2D_property_color:
  378. - :ref:`Color<class_Color>` **color**
  379. +-----------+-----------------------+
  380. | *Default* | ``Color(1, 1, 1, 1)`` |
  381. +-----------+-----------------------+
  382. | *Setter* | set_color(value) |
  383. +-----------+-----------------------+
  384. | *Getter* | get_color() |
  385. +-----------+-----------------------+
  386. Each particle's initial color. If :ref:`texture<class_CPUParticles2D_property_texture>` is defined, it will be multiplied by this color.
  387. ----
  388. .. _class_CPUParticles2D_property_color_initial_ramp:
  389. - :ref:`Gradient<class_Gradient>` **color_initial_ramp**
  390. +----------+-------------------------------+
  391. | *Setter* | set_color_initial_ramp(value) |
  392. +----------+-------------------------------+
  393. | *Getter* | get_color_initial_ramp() |
  394. +----------+-------------------------------+
  395. Each particle's initial color will vary along this :ref:`GradientTexture1D<class_GradientTexture1D>` (multiplied with :ref:`color<class_CPUParticles2D_property_color>`).
  396. ----
  397. .. _class_CPUParticles2D_property_color_ramp:
  398. - :ref:`Gradient<class_Gradient>` **color_ramp**
  399. +----------+-----------------------+
  400. | *Setter* | set_color_ramp(value) |
  401. +----------+-----------------------+
  402. | *Getter* | get_color_ramp() |
  403. +----------+-----------------------+
  404. Each particle's color will vary along this :ref:`Gradient<class_Gradient>` (multiplied with :ref:`color<class_CPUParticles2D_property_color>`).
  405. ----
  406. .. _class_CPUParticles2D_property_damping_curve:
  407. - :ref:`Curve<class_Curve>` **damping_curve**
  408. +----------+------------------------+
  409. | *Setter* | set_param_curve(value) |
  410. +----------+------------------------+
  411. | *Getter* | get_param_curve() |
  412. +----------+------------------------+
  413. Damping will vary along this :ref:`Curve<class_Curve>`.
  414. ----
  415. .. _class_CPUParticles2D_property_damping_max:
  416. - :ref:`float<class_float>` **damping_max**
  417. +-----------+----------------------+
  418. | *Default* | ``0.0`` |
  419. +-----------+----------------------+
  420. | *Setter* | set_param_max(value) |
  421. +-----------+----------------------+
  422. | *Getter* | get_param_max() |
  423. +-----------+----------------------+
  424. The maximum rate at which particles lose velocity. For example value of ``100`` means that the particle will go from ``100`` velocity to ``0`` in ``1`` second.
  425. ----
  426. .. _class_CPUParticles2D_property_damping_min:
  427. - :ref:`float<class_float>` **damping_min**
  428. +-----------+----------------------+
  429. | *Default* | ``0.0`` |
  430. +-----------+----------------------+
  431. | *Setter* | set_param_min(value) |
  432. +-----------+----------------------+
  433. | *Getter* | get_param_min() |
  434. +-----------+----------------------+
  435. Minimum equivalent of :ref:`damping_max<class_CPUParticles2D_property_damping_max>`.
  436. ----
  437. .. _class_CPUParticles2D_property_direction:
  438. - :ref:`Vector2<class_Vector2>` **direction**
  439. +-----------+----------------------+
  440. | *Default* | ``Vector2(1, 0)`` |
  441. +-----------+----------------------+
  442. | *Setter* | set_direction(value) |
  443. +-----------+----------------------+
  444. | *Getter* | get_direction() |
  445. +-----------+----------------------+
  446. Unit vector specifying the particles' emission direction.
  447. ----
  448. .. _class_CPUParticles2D_property_draw_order:
  449. - :ref:`DrawOrder<enum_CPUParticles2D_DrawOrder>` **draw_order**
  450. +-----------+-----------------------+
  451. | *Default* | ``0`` |
  452. +-----------+-----------------------+
  453. | *Setter* | set_draw_order(value) |
  454. +-----------+-----------------------+
  455. | *Getter* | get_draw_order() |
  456. +-----------+-----------------------+
  457. Particle draw order. Uses :ref:`DrawOrder<enum_CPUParticles2D_DrawOrder>` values.
  458. ----
  459. .. _class_CPUParticles2D_property_emission_colors:
  460. - :ref:`PackedColorArray<class_PackedColorArray>` **emission_colors**
  461. +----------+----------------------------+
  462. | *Setter* | set_emission_colors(value) |
  463. +----------+----------------------------+
  464. | *Getter* | get_emission_colors() |
  465. +----------+----------------------------+
  466. Sets the :ref:`Color<class_Color>`\ s to modulate particles by when using :ref:`EMISSION_SHAPE_POINTS<class_CPUParticles2D_constant_EMISSION_SHAPE_POINTS>` or :ref:`EMISSION_SHAPE_DIRECTED_POINTS<class_CPUParticles2D_constant_EMISSION_SHAPE_DIRECTED_POINTS>`.
  467. ----
  468. .. _class_CPUParticles2D_property_emission_normals:
  469. - :ref:`PackedVector2Array<class_PackedVector2Array>` **emission_normals**
  470. +----------+-----------------------------+
  471. | *Setter* | set_emission_normals(value) |
  472. +----------+-----------------------------+
  473. | *Getter* | get_emission_normals() |
  474. +----------+-----------------------------+
  475. Sets the direction the particles will be emitted in when using :ref:`EMISSION_SHAPE_DIRECTED_POINTS<class_CPUParticles2D_constant_EMISSION_SHAPE_DIRECTED_POINTS>`.
  476. ----
  477. .. _class_CPUParticles2D_property_emission_points:
  478. - :ref:`PackedVector2Array<class_PackedVector2Array>` **emission_points**
  479. +----------+----------------------------+
  480. | *Setter* | set_emission_points(value) |
  481. +----------+----------------------------+
  482. | *Getter* | get_emission_points() |
  483. +----------+----------------------------+
  484. Sets the initial positions to spawn particles when using :ref:`EMISSION_SHAPE_POINTS<class_CPUParticles2D_constant_EMISSION_SHAPE_POINTS>` or :ref:`EMISSION_SHAPE_DIRECTED_POINTS<class_CPUParticles2D_constant_EMISSION_SHAPE_DIRECTED_POINTS>`.
  485. ----
  486. .. _class_CPUParticles2D_property_emission_rect_extents:
  487. - :ref:`Vector2<class_Vector2>` **emission_rect_extents**
  488. +----------+----------------------------------+
  489. | *Setter* | set_emission_rect_extents(value) |
  490. +----------+----------------------------------+
  491. | *Getter* | get_emission_rect_extents() |
  492. +----------+----------------------------------+
  493. The rectangle's extents if :ref:`emission_shape<class_CPUParticles2D_property_emission_shape>` is set to :ref:`EMISSION_SHAPE_RECTANGLE<class_CPUParticles2D_constant_EMISSION_SHAPE_RECTANGLE>`.
  494. ----
  495. .. _class_CPUParticles2D_property_emission_shape:
  496. - :ref:`EmissionShape<enum_CPUParticles2D_EmissionShape>` **emission_shape**
  497. +-----------+---------------------------+
  498. | *Default* | ``0`` |
  499. +-----------+---------------------------+
  500. | *Setter* | set_emission_shape(value) |
  501. +-----------+---------------------------+
  502. | *Getter* | get_emission_shape() |
  503. +-----------+---------------------------+
  504. Particles will be emitted inside this region. See :ref:`EmissionShape<enum_CPUParticles2D_EmissionShape>` for possible values.
  505. ----
  506. .. _class_CPUParticles2D_property_emission_sphere_radius:
  507. - :ref:`float<class_float>` **emission_sphere_radius**
  508. +----------+-----------------------------------+
  509. | *Setter* | set_emission_sphere_radius(value) |
  510. +----------+-----------------------------------+
  511. | *Getter* | get_emission_sphere_radius() |
  512. +----------+-----------------------------------+
  513. The sphere's radius if :ref:`emission_shape<class_CPUParticles2D_property_emission_shape>` is set to :ref:`EMISSION_SHAPE_SPHERE<class_CPUParticles2D_constant_EMISSION_SHAPE_SPHERE>`.
  514. ----
  515. .. _class_CPUParticles2D_property_emitting:
  516. - :ref:`bool<class_bool>` **emitting**
  517. +-----------+---------------------+
  518. | *Default* | ``true`` |
  519. +-----------+---------------------+
  520. | *Setter* | set_emitting(value) |
  521. +-----------+---------------------+
  522. | *Getter* | is_emitting() |
  523. +-----------+---------------------+
  524. If ``true``, particles are being emitted.
  525. ----
  526. .. _class_CPUParticles2D_property_explosiveness:
  527. - :ref:`float<class_float>` **explosiveness**
  528. +-----------+--------------------------------+
  529. | *Default* | ``0.0`` |
  530. +-----------+--------------------------------+
  531. | *Setter* | set_explosiveness_ratio(value) |
  532. +-----------+--------------------------------+
  533. | *Getter* | get_explosiveness_ratio() |
  534. +-----------+--------------------------------+
  535. 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.
  536. ----
  537. .. _class_CPUParticles2D_property_fixed_fps:
  538. - :ref:`int<class_int>` **fixed_fps**
  539. +-----------+----------------------+
  540. | *Default* | ``0`` |
  541. +-----------+----------------------+
  542. | *Setter* | set_fixed_fps(value) |
  543. +-----------+----------------------+
  544. | *Getter* | get_fixed_fps() |
  545. +-----------+----------------------+
  546. 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 simulation of the particle system itself.
  547. ----
  548. .. _class_CPUParticles2D_property_fract_delta:
  549. - :ref:`bool<class_bool>` **fract_delta**
  550. +-----------+-----------------------------+
  551. | *Default* | ``true`` |
  552. +-----------+-----------------------------+
  553. | *Setter* | set_fractional_delta(value) |
  554. +-----------+-----------------------------+
  555. | *Getter* | get_fractional_delta() |
  556. +-----------+-----------------------------+
  557. If ``true``, results in fractional delta calculation which has a smoother particles display effect.
  558. ----
  559. .. _class_CPUParticles2D_property_gravity:
  560. - :ref:`Vector2<class_Vector2>` **gravity**
  561. +-----------+---------------------+
  562. | *Default* | ``Vector2(0, 980)`` |
  563. +-----------+---------------------+
  564. | *Setter* | set_gravity(value) |
  565. +-----------+---------------------+
  566. | *Getter* | get_gravity() |
  567. +-----------+---------------------+
  568. Gravity applied to every particle.
  569. ----
  570. .. _class_CPUParticles2D_property_hue_variation_curve:
  571. - :ref:`Curve<class_Curve>` **hue_variation_curve**
  572. +----------+------------------------+
  573. | *Setter* | set_param_curve(value) |
  574. +----------+------------------------+
  575. | *Getter* | get_param_curve() |
  576. +----------+------------------------+
  577. Each particle's hue will vary along this :ref:`Curve<class_Curve>`.
  578. ----
  579. .. _class_CPUParticles2D_property_hue_variation_max:
  580. - :ref:`float<class_float>` **hue_variation_max**
  581. +-----------+----------------------+
  582. | *Default* | ``0.0`` |
  583. +-----------+----------------------+
  584. | *Setter* | set_param_max(value) |
  585. +-----------+----------------------+
  586. | *Getter* | get_param_max() |
  587. +-----------+----------------------+
  588. Maximum initial hue variation applied to each particle. It will shift the particle color's hue.
  589. ----
  590. .. _class_CPUParticles2D_property_hue_variation_min:
  591. - :ref:`float<class_float>` **hue_variation_min**
  592. +-----------+----------------------+
  593. | *Default* | ``0.0`` |
  594. +-----------+----------------------+
  595. | *Setter* | set_param_min(value) |
  596. +-----------+----------------------+
  597. | *Getter* | get_param_min() |
  598. +-----------+----------------------+
  599. Minimum equivalent of :ref:`hue_variation_max<class_CPUParticles2D_property_hue_variation_max>`.
  600. ----
  601. .. _class_CPUParticles2D_property_initial_velocity_max:
  602. - :ref:`float<class_float>` **initial_velocity_max**
  603. +-----------+----------------------+
  604. | *Default* | ``0.0`` |
  605. +-----------+----------------------+
  606. | *Setter* | set_param_max(value) |
  607. +-----------+----------------------+
  608. | *Getter* | get_param_max() |
  609. +-----------+----------------------+
  610. Maximum initial velocity magnitude for each particle. Direction comes from :ref:`direction<class_CPUParticles2D_property_direction>` and :ref:`spread<class_CPUParticles2D_property_spread>`.
  611. ----
  612. .. _class_CPUParticles2D_property_initial_velocity_min:
  613. - :ref:`float<class_float>` **initial_velocity_min**
  614. +-----------+----------------------+
  615. | *Default* | ``0.0`` |
  616. +-----------+----------------------+
  617. | *Setter* | set_param_min(value) |
  618. +-----------+----------------------+
  619. | *Getter* | get_param_min() |
  620. +-----------+----------------------+
  621. Minimum equivalent of :ref:`initial_velocity_max<class_CPUParticles2D_property_initial_velocity_max>`.
  622. ----
  623. .. _class_CPUParticles2D_property_lifetime:
  624. - :ref:`float<class_float>` **lifetime**
  625. +-----------+---------------------+
  626. | *Default* | ``1.0`` |
  627. +-----------+---------------------+
  628. | *Setter* | set_lifetime(value) |
  629. +-----------+---------------------+
  630. | *Getter* | get_lifetime() |
  631. +-----------+---------------------+
  632. Amount of time each particle will exist.
  633. ----
  634. .. _class_CPUParticles2D_property_lifetime_randomness:
  635. - :ref:`float<class_float>` **lifetime_randomness**
  636. +-----------+--------------------------------+
  637. | *Default* | ``0.0`` |
  638. +-----------+--------------------------------+
  639. | *Setter* | set_lifetime_randomness(value) |
  640. +-----------+--------------------------------+
  641. | *Getter* | get_lifetime_randomness() |
  642. +-----------+--------------------------------+
  643. Particle lifetime randomness ratio.
  644. ----
  645. .. _class_CPUParticles2D_property_linear_accel_curve:
  646. - :ref:`Curve<class_Curve>` **linear_accel_curve**
  647. +----------+------------------------+
  648. | *Setter* | set_param_curve(value) |
  649. +----------+------------------------+
  650. | *Getter* | get_param_curve() |
  651. +----------+------------------------+
  652. Each particle's linear acceleration will vary along this :ref:`Curve<class_Curve>`.
  653. ----
  654. .. _class_CPUParticles2D_property_linear_accel_max:
  655. - :ref:`float<class_float>` **linear_accel_max**
  656. +-----------+----------------------+
  657. | *Default* | ``0.0`` |
  658. +-----------+----------------------+
  659. | *Setter* | set_param_max(value) |
  660. +-----------+----------------------+
  661. | *Getter* | get_param_max() |
  662. +-----------+----------------------+
  663. Maximum linear acceleration applied to each particle in the direction of motion.
  664. ----
  665. .. _class_CPUParticles2D_property_linear_accel_min:
  666. - :ref:`float<class_float>` **linear_accel_min**
  667. +-----------+----------------------+
  668. | *Default* | ``0.0`` |
  669. +-----------+----------------------+
  670. | *Setter* | set_param_min(value) |
  671. +-----------+----------------------+
  672. | *Getter* | get_param_min() |
  673. +-----------+----------------------+
  674. Minimum equivalent of :ref:`linear_accel_max<class_CPUParticles2D_property_linear_accel_max>`.
  675. ----
  676. .. _class_CPUParticles2D_property_local_coords:
  677. - :ref:`bool<class_bool>` **local_coords**
  678. +-----------+----------------------------------+
  679. | *Default* | ``false`` |
  680. +-----------+----------------------------------+
  681. | *Setter* | set_use_local_coordinates(value) |
  682. +-----------+----------------------------------+
  683. | *Getter* | get_use_local_coordinates() |
  684. +-----------+----------------------------------+
  685. If ``true``, particles use the parent node's coordinate space (known as local coordinates). This will cause particles to move and rotate along the ``CPUParticles2D`` node (and its parents) when it is moved or rotated. If ``false``, particles use global coordinates; they will not move or rotate along the ``CPUParticles2D`` node (and its parents) when it is moved or rotated.
  686. ----
  687. .. _class_CPUParticles2D_property_one_shot:
  688. - :ref:`bool<class_bool>` **one_shot**
  689. +-----------+---------------------+
  690. | *Default* | ``false`` |
  691. +-----------+---------------------+
  692. | *Setter* | set_one_shot(value) |
  693. +-----------+---------------------+
  694. | *Getter* | get_one_shot() |
  695. +-----------+---------------------+
  696. If ``true``, only one emission cycle occurs. If set ``true`` during a cycle, emission will stop at the cycle's end.
  697. ----
  698. .. _class_CPUParticles2D_property_orbit_velocity_curve:
  699. - :ref:`Curve<class_Curve>` **orbit_velocity_curve**
  700. +----------+------------------------+
  701. | *Setter* | set_param_curve(value) |
  702. +----------+------------------------+
  703. | *Getter* | get_param_curve() |
  704. +----------+------------------------+
  705. Each particle's orbital velocity will vary along this :ref:`Curve<class_Curve>`.
  706. ----
  707. .. _class_CPUParticles2D_property_orbit_velocity_max:
  708. - :ref:`float<class_float>` **orbit_velocity_max**
  709. +-----------+----------------------+
  710. | *Default* | ``0.0`` |
  711. +-----------+----------------------+
  712. | *Setter* | set_param_max(value) |
  713. +-----------+----------------------+
  714. | *Getter* | get_param_max() |
  715. +-----------+----------------------+
  716. Maximum orbital velocity applied to each particle. Makes the particles circle around origin. Specified in number of full rotations around origin per second.
  717. ----
  718. .. _class_CPUParticles2D_property_orbit_velocity_min:
  719. - :ref:`float<class_float>` **orbit_velocity_min**
  720. +-----------+----------------------+
  721. | *Default* | ``0.0`` |
  722. +-----------+----------------------+
  723. | *Setter* | set_param_min(value) |
  724. +-----------+----------------------+
  725. | *Getter* | get_param_min() |
  726. +-----------+----------------------+
  727. Minimum equivalent of :ref:`orbit_velocity_max<class_CPUParticles2D_property_orbit_velocity_max>`.
  728. ----
  729. .. _class_CPUParticles2D_property_particle_flag_align_y:
  730. - :ref:`bool<class_bool>` **particle_flag_align_y**
  731. +-----------+--------------------------+
  732. | *Default* | ``false`` |
  733. +-----------+--------------------------+
  734. | *Setter* | set_particle_flag(value) |
  735. +-----------+--------------------------+
  736. | *Getter* | get_particle_flag() |
  737. +-----------+--------------------------+
  738. Align Y axis of particle with the direction of its velocity.
  739. ----
  740. .. _class_CPUParticles2D_property_preprocess:
  741. - :ref:`float<class_float>` **preprocess**
  742. +-----------+-----------------------------+
  743. | *Default* | ``0.0`` |
  744. +-----------+-----------------------------+
  745. | *Setter* | set_pre_process_time(value) |
  746. +-----------+-----------------------------+
  747. | *Getter* | get_pre_process_time() |
  748. +-----------+-----------------------------+
  749. Particle system starts as if it had already run for this many seconds.
  750. ----
  751. .. _class_CPUParticles2D_property_radial_accel_curve:
  752. - :ref:`Curve<class_Curve>` **radial_accel_curve**
  753. +----------+------------------------+
  754. | *Setter* | set_param_curve(value) |
  755. +----------+------------------------+
  756. | *Getter* | get_param_curve() |
  757. +----------+------------------------+
  758. Each particle's radial acceleration will vary along this :ref:`Curve<class_Curve>`.
  759. ----
  760. .. _class_CPUParticles2D_property_radial_accel_max:
  761. - :ref:`float<class_float>` **radial_accel_max**
  762. +-----------+----------------------+
  763. | *Default* | ``0.0`` |
  764. +-----------+----------------------+
  765. | *Setter* | set_param_max(value) |
  766. +-----------+----------------------+
  767. | *Getter* | get_param_max() |
  768. +-----------+----------------------+
  769. Maximum radial acceleration applied to each particle. Makes particle accelerate away from the origin or towards it if negative.
  770. ----
  771. .. _class_CPUParticles2D_property_radial_accel_min:
  772. - :ref:`float<class_float>` **radial_accel_min**
  773. +-----------+----------------------+
  774. | *Default* | ``0.0`` |
  775. +-----------+----------------------+
  776. | *Setter* | set_param_min(value) |
  777. +-----------+----------------------+
  778. | *Getter* | get_param_min() |
  779. +-----------+----------------------+
  780. Minimum equivalent of :ref:`radial_accel_max<class_CPUParticles2D_property_radial_accel_max>`.
  781. ----
  782. .. _class_CPUParticles2D_property_randomness:
  783. - :ref:`float<class_float>` **randomness**
  784. +-----------+-----------------------------+
  785. | *Default* | ``0.0`` |
  786. +-----------+-----------------------------+
  787. | *Setter* | set_randomness_ratio(value) |
  788. +-----------+-----------------------------+
  789. | *Getter* | get_randomness_ratio() |
  790. +-----------+-----------------------------+
  791. Emission lifetime randomness ratio.
  792. ----
  793. .. _class_CPUParticles2D_property_scale_amount_curve:
  794. - :ref:`Curve<class_Curve>` **scale_amount_curve**
  795. +----------+------------------------+
  796. | *Setter* | set_param_curve(value) |
  797. +----------+------------------------+
  798. | *Getter* | get_param_curve() |
  799. +----------+------------------------+
  800. Each particle's scale will vary along this :ref:`Curve<class_Curve>`.
  801. ----
  802. .. _class_CPUParticles2D_property_scale_amount_max:
  803. - :ref:`float<class_float>` **scale_amount_max**
  804. +-----------+----------------------+
  805. | *Default* | ``1.0`` |
  806. +-----------+----------------------+
  807. | *Setter* | set_param_max(value) |
  808. +-----------+----------------------+
  809. | *Getter* | get_param_max() |
  810. +-----------+----------------------+
  811. Maximum initial scale applied to each particle.
  812. ----
  813. .. _class_CPUParticles2D_property_scale_amount_min:
  814. - :ref:`float<class_float>` **scale_amount_min**
  815. +-----------+----------------------+
  816. | *Default* | ``1.0`` |
  817. +-----------+----------------------+
  818. | *Setter* | set_param_min(value) |
  819. +-----------+----------------------+
  820. | *Getter* | get_param_min() |
  821. +-----------+----------------------+
  822. Minimum equivalent of :ref:`scale_amount_max<class_CPUParticles2D_property_scale_amount_max>`.
  823. ----
  824. .. _class_CPUParticles2D_property_scale_curve_x:
  825. - :ref:`Curve<class_Curve>` **scale_curve_x**
  826. +----------+--------------------------+
  827. | *Setter* | set_scale_curve_x(value) |
  828. +----------+--------------------------+
  829. | *Getter* | get_scale_curve_x() |
  830. +----------+--------------------------+
  831. Each particle's horizontal scale will vary along this :ref:`Curve<class_Curve>`.
  832. \ :ref:`split_scale<class_CPUParticles2D_property_split_scale>` must be enabled.
  833. ----
  834. .. _class_CPUParticles2D_property_scale_curve_y:
  835. - :ref:`Curve<class_Curve>` **scale_curve_y**
  836. +----------+--------------------------+
  837. | *Setter* | set_scale_curve_y(value) |
  838. +----------+--------------------------+
  839. | *Getter* | get_scale_curve_y() |
  840. +----------+--------------------------+
  841. Each particle's vertical scale will vary along this :ref:`Curve<class_Curve>`.
  842. \ :ref:`split_scale<class_CPUParticles2D_property_split_scale>` must be enabled.
  843. ----
  844. .. _class_CPUParticles2D_property_speed_scale:
  845. - :ref:`float<class_float>` **speed_scale**
  846. +-----------+------------------------+
  847. | *Default* | ``1.0`` |
  848. +-----------+------------------------+
  849. | *Setter* | set_speed_scale(value) |
  850. +-----------+------------------------+
  851. | *Getter* | get_speed_scale() |
  852. +-----------+------------------------+
  853. Particle system's running speed scaling ratio. A value of ``0`` can be used to pause the particles.
  854. ----
  855. .. _class_CPUParticles2D_property_split_scale:
  856. - :ref:`bool<class_bool>` **split_scale**
  857. +-----------+------------------------+
  858. | *Default* | ``false`` |
  859. +-----------+------------------------+
  860. | *Setter* | set_split_scale(value) |
  861. +-----------+------------------------+
  862. | *Getter* | get_split_scale() |
  863. +-----------+------------------------+
  864. If ``true``, the scale curve will be split into x and y components. See :ref:`scale_curve_x<class_CPUParticles2D_property_scale_curve_x>` and :ref:`scale_curve_y<class_CPUParticles2D_property_scale_curve_y>`.
  865. ----
  866. .. _class_CPUParticles2D_property_spread:
  867. - :ref:`float<class_float>` **spread**
  868. +-----------+-------------------+
  869. | *Default* | ``45.0`` |
  870. +-----------+-------------------+
  871. | *Setter* | set_spread(value) |
  872. +-----------+-------------------+
  873. | *Getter* | get_spread() |
  874. +-----------+-------------------+
  875. Each particle's initial direction range from ``+spread`` to ``-spread`` degrees.
  876. ----
  877. .. _class_CPUParticles2D_property_tangential_accel_curve:
  878. - :ref:`Curve<class_Curve>` **tangential_accel_curve**
  879. +----------+------------------------+
  880. | *Setter* | set_param_curve(value) |
  881. +----------+------------------------+
  882. | *Getter* | get_param_curve() |
  883. +----------+------------------------+
  884. Each particle's tangential acceleration will vary along this :ref:`Curve<class_Curve>`.
  885. ----
  886. .. _class_CPUParticles2D_property_tangential_accel_max:
  887. - :ref:`float<class_float>` **tangential_accel_max**
  888. +-----------+----------------------+
  889. | *Default* | ``0.0`` |
  890. +-----------+----------------------+
  891. | *Setter* | set_param_max(value) |
  892. +-----------+----------------------+
  893. | *Getter* | get_param_max() |
  894. +-----------+----------------------+
  895. Maximum tangential acceleration applied to each particle. Tangential acceleration is perpendicular to the particle's velocity giving the particles a swirling motion.
  896. ----
  897. .. _class_CPUParticles2D_property_tangential_accel_min:
  898. - :ref:`float<class_float>` **tangential_accel_min**
  899. +-----------+----------------------+
  900. | *Default* | ``0.0`` |
  901. +-----------+----------------------+
  902. | *Setter* | set_param_min(value) |
  903. +-----------+----------------------+
  904. | *Getter* | get_param_min() |
  905. +-----------+----------------------+
  906. Minimum equivalent of :ref:`tangential_accel_max<class_CPUParticles2D_property_tangential_accel_max>`.
  907. ----
  908. .. _class_CPUParticles2D_property_texture:
  909. - :ref:`Texture2D<class_Texture2D>` **texture**
  910. +----------+--------------------+
  911. | *Setter* | set_texture(value) |
  912. +----------+--------------------+
  913. | *Getter* | get_texture() |
  914. +----------+--------------------+
  915. Particle texture. If ``null``, particles will be squares.
  916. Method Descriptions
  917. -------------------
  918. .. _class_CPUParticles2D_method_convert_from_particles:
  919. - void **convert_from_particles** **(** :ref:`Node<class_Node>` particles **)**
  920. Sets this node's properties to match a given :ref:`GPUParticles2D<class_GPUParticles2D>` node with an assigned :ref:`ParticleProcessMaterial<class_ParticleProcessMaterial>`.
  921. ----
  922. .. _class_CPUParticles2D_method_get_param_curve:
  923. - :ref:`Curve<class_Curve>` **get_param_curve** **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param **)** |const|
  924. Returns the :ref:`Curve<class_Curve>` of the parameter specified by :ref:`Parameter<enum_CPUParticles2D_Parameter>`.
  925. ----
  926. .. _class_CPUParticles2D_method_get_param_max:
  927. - :ref:`float<class_float>` **get_param_max** **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param **)** |const|
  928. Returns the maximum value range for the given parameter.
  929. ----
  930. .. _class_CPUParticles2D_method_get_param_min:
  931. - :ref:`float<class_float>` **get_param_min** **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param **)** |const|
  932. Returns the minimum value range for the given parameter.
  933. ----
  934. .. _class_CPUParticles2D_method_get_particle_flag:
  935. - :ref:`bool<class_bool>` **get_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles2D_ParticleFlags>` particle_flag **)** |const|
  936. Returns the enabled state of the given flag (see :ref:`ParticleFlags<enum_CPUParticles2D_ParticleFlags>` for options).
  937. ----
  938. .. _class_CPUParticles2D_method_restart:
  939. - void **restart** **(** **)**
  940. Restarts the particle emitter.
  941. ----
  942. .. _class_CPUParticles2D_method_set_param_curve:
  943. - void **set_param_curve** **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param, :ref:`Curve<class_Curve>` curve **)**
  944. Sets the :ref:`Curve<class_Curve>` of the parameter specified by :ref:`Parameter<enum_CPUParticles2D_Parameter>`.
  945. ----
  946. .. _class_CPUParticles2D_method_set_param_max:
  947. - void **set_param_max** **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param, :ref:`float<class_float>` value **)**
  948. Sets the maximum value for the given parameter.
  949. ----
  950. .. _class_CPUParticles2D_method_set_param_min:
  951. - void **set_param_min** **(** :ref:`Parameter<enum_CPUParticles2D_Parameter>` param, :ref:`float<class_float>` value **)**
  952. Sets the minimum value for the given parameter.
  953. ----
  954. .. _class_CPUParticles2D_method_set_particle_flag:
  955. - void **set_particle_flag** **(** :ref:`ParticleFlags<enum_CPUParticles2D_ParticleFlags>` particle_flag, :ref:`bool<class_bool>` enable **)**
  956. Enables or disables the given flag (see :ref:`ParticleFlags<enum_CPUParticles2D_ParticleFlags>` for options).
  957. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  958. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  959. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  960. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  961. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  962. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`