Hi.
My desire is to take some text, and scale it towards the screen on the Z axis. So, I have derived a new class from CCBitmapFontAtlas, I added a scheduled method (to change the Z axis scale factor) and an update method to do the scaling.
Just for a test, I have overridden the draw method like this
-(void) draw
{
DEBUG_NSLOG(@"\n m_scaleFactor = %f", m_scaleFactor);
glScalef(1, 1, -100);
[super draw];
}
I have verified that my overridden method does get called, but there is absolutely no sclaing taking place.
Im definitely doing something wrong as I am pretty new to cocos2d and I am definitely an openGL n00b.
Any help please?