From 49ca40cdbf804d604af04b953b20f54837d76a51 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Fri, 13 Dec 2024 16:41:41 +0100 Subject: [PATCH] Document `GPUParticles.emit_particle()` only working on Forward+ and Mobile --- doc/classes/GPUParticles2D.xml | 1 + doc/classes/GPUParticles3D.xml | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/classes/GPUParticles2D.xml b/doc/classes/GPUParticles2D.xml index 96232f4277b8..41f7b02ca6c6 100644 --- a/doc/classes/GPUParticles2D.xml +++ b/doc/classes/GPUParticles2D.xml @@ -38,6 +38,7 @@ Emits a single particle. Whether [param xform], [param velocity], [param color] and [param custom] are applied depends on the value of [param flags]. See [enum EmitFlags]. The default ParticleProcessMaterial will overwrite [param color] and use the contents of [param custom] as [code](rotation, age, animation, lifetime)[/code]. + [b]Note:[/b] [method emit_particle] is only supported on the Forward+ and Mobile rendering methods, not Compatibility. diff --git a/doc/classes/GPUParticles3D.xml b/doc/classes/GPUParticles3D.xml index f5df857391cc..89958ed21774 100644 --- a/doc/classes/GPUParticles3D.xml +++ b/doc/classes/GPUParticles3D.xml @@ -36,6 +36,7 @@ Emits a single particle. Whether [param xform], [param velocity], [param color] and [param custom] are applied depends on the value of [param flags]. See [enum EmitFlags]. The default ParticleProcessMaterial will overwrite [param color] and use the contents of [param custom] as [code](rotation, age, animation, lifetime)[/code]. + [b]Note:[/b] [method emit_particle] is only supported on the Forward+ and Mobile rendering methods, not Compatibility.