We are migrating issue tracker of Cocos2d-x Project to Github, please create new issue there. Thanks.
ParticleSystem has a bug on supporting "ycoordflipped" attribute
ParticleSystem has a bug on supporting "ycoordflipped" attribute
Bug #4077 [Closed]
Redmine issue system is closed, we are using github issue system instead.
This issue was moved to https://github.com/cocos2d/cocos2d-x/issues/8350
Status: | Closed | |
---|---|---|
Start date: | 2014-02-19 | |
Priority: | Low | |
Due date: | ||
Assignee: | - | |
% Done: | 0% |
|
Category: | all | |
Target version: | - |
CCParticleSystem.cpp
if (_yCoordFlipped == -1) // Here should be (_yCoordFlipped == 1)
{
tmp = p->modeA.dir * dt;
}
else
{
tmp = p->modeA.dir * -dt;
}