From 6ca5481edf9140188a3370376f2d0e5cd67592b8 Mon Sep 17 00:00:00 2001 From: DelinWorks Date: Fri, 20 May 2022 01:45:55 +0300 Subject: [PATCH] Correct function naming --- core/2d/CCParticleSystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/2d/CCParticleSystem.h b/core/2d/CCParticleSystem.h index f4747c621d..3be224dd17 100644 --- a/core/2d/CCParticleSystem.h +++ b/core/2d/CCParticleSystem.h @@ -786,7 +786,7 @@ public: /** Sets wether to start from first cell and go forward (normal) * or last cell and go backward (reversed) when using life animation */ - void setAnimationLifeReverse(bool reverse) { _isLifeAnimationReversed = reverse; } + void setLifeAnimationReverse(bool reverse) { _isLifeAnimationReversed = reverse; } bool isAnimationLifeReversed() { return _isLifeAnimationReversed; } /** Gets the particles movement type: Free or Grouped.