We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to change the effect on an emmiter I've found that release is not called in proper variable
EffekseerForCocos2d-x/Players/Cocos2d-x_v3/Effekseer.cpp
Line 706 in 6dc9547
if (this->effect != nullptr) this->effect->release();
The text was updated successfully, but these errors were encountered:
It is bug. Thank you for your report. I will fix it
Sorry, something went wrong.
Fix a bug that registered effect is released
cb23095
#8
I fixed
Thanks!
No branches or pull requests
When trying to change the effect on an emmiter I've found that release is not called in proper variable
EffekseerForCocos2d-x/Players/Cocos2d-x_v3/Effekseer.cpp
Line 706 in 6dc9547
That line should be
if (this->effect != nullptr) this->effect->release();
Otherwise you are releasing the effect you are trying to set
The text was updated successfully, but these errors were encountered: