How does one create multiple lines of text in Cocos?
I know how to do a single line of text:
// create and initialize a CCLabel
CCLabel* label2 = [CCLabel labelWithString:@"This is my line of text." fontName:@"ITCAvantGardeStd-Bold.otf" fontSize:58];
label2.anchorPoint = ccp(0,0);
label2.position = ccp( 0,300);
[aboutLayer addChild: label2 z:2];
How do you do multiple lines of text?
Demetrius