You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I change the .position of a CCTransformationNode it wont refresh its transform (internal _dirty flag not set). I presume other properties like rotation etc. will be ignored.
I changed the line
if (_dirty)
to
if (_dirty || _isTransformDirty)
and it worked for my limited case, but looking through CCNode.m I think more is going on with _isTransformDirty than is being dealt with in CCTransformationNode visit.
Thoughts/suggestions? Or is just an expected limitation of the transform node - it should be used purely for adding a roll/pitch/yaw transform in a node hierarchy?
The text was updated successfully, but these errors were encountered:
If I change the .position of a CCTransformationNode it wont refresh its transform (internal _dirty flag not set). I presume other properties like rotation etc. will be ignored.
I changed the line
to
if (_dirty || _isTransformDirty)
and it worked for my limited case, but looking through CCNode.m I think more is going on with _isTransformDirty than is being dealt with in CCTransformationNode visit.
Thoughts/suggestions? Or is just an expected limitation of the transform node - it should be used purely for adding a roll/pitch/yaw transform in a node hierarchy?
The text was updated successfully, but these errors were encountered: