Do the CCParticle members work? I tried CCParticleExplosion and CCParticleSun and both gave me MissingMethodException. Is there something I am missing? I was following example:
void AddSun () { circleNode = new CCDrawNode (); circleNode.DrawSolidCircle (CCPoint.Zero, 30.0f, CCColor4B.Yellow); AddChild (circleNode); sun = new CCParticleSun (CCPoint.Zero); sun.StartColor = new CCColor4F (CCColor3B.Red); sun.EndColor = new CCColor4F (CCColor3B.Yellow); AddChild (sun); }