Skip to content

Commit ef651f5

Browse files
committed
Removed logging from Fix to make opacity from the parent CCNode cascade to CCNodeColor and CCNodeGradient
1 parent 04802e3 commit ef651f5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

cocos2d/CCNodeColor.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ - (void) updateColor
192192

193193
float gmin = MIN(MIN(g0, g1), MIN(g2, g3));
194194
float gmax = MAX(MAX(g0, g1), MAX(g2, g3));
195-
NSLog(@"RCB");
196195
GLKVector4 a = GLKVector4Make(_color.r*_color.a*_displayColor.a, _color.g*_color.a*_displayColor.a, _color.b*_color.a*_displayColor.a, _color.a*_displayColor.a);
197196
GLKVector4 b = GLKVector4Make(_endColor.r*_endColor.a*_displayColor.a, _endColor.g*_endColor.a*_displayColor.a, _endColor.b*_endColor.a*_displayColor.a, _endColor.a*_displayColor.a);
198197
_colors[0] = GLKVector4Lerp(a, b, (g0 - gmin)/(gmax - gmin));

0 commit comments

Comments
 (0)