| 175 | /// <param name="autoDestroy">If set to <c>true</c> effect be auto-destroyed after duration.</param> |
| 176 | /// <returns>The spawned effect.</returns> |
| 177 | API_FUNCTION() ParticleEffect* Spawn(const Vector3& position, bool autoDestroy = false) |
| 178 | { |
| 179 | return Spawn(nullptr, Transform(position), autoDestroy); |
| 180 | } |
| 181 | |
| 182 | /// <summary> |
| 183 | /// Spawns the particles at the given location. |
no test coverage detected