Search code examples
ioscolorstexturescocos3d

Reset color of Node in Cocos3d


I'm using Cocos3d to show a 3D Model. When I click on a node, I change the color of it.

Now I want to reset the color at the second click to the original texture (not only simple color, but patterns etc.). How can I do this? (My problem is resetting the color and not to detect the second click!)

I change the color in the first click:

ccColor3B ccDARKMAGENTA = {139,0,139};
[aNode setColor:ccColor3B.ccDARKMAGENTA];

Thank you!


Solution

  • White is the no-color color:

    [aNode setColor:ccColor3B.ccWHITE];