Hi
I have a question regarding the use of the BitmapFontAtlas. I have a menu with a couple of menu items.
BitmapFontAtlas *label1 = [BitmapFontAtlas bitmapFontAtlasWithString:@"Option 1" fntFile:@"bitmapFont.fnt"];
MenuItemLabel *item1 = [MenuItemLabel itemWithLabel:label1 target:self selector:@selector(menuCallback1:)];
BitmapFontAtlas *label2 = [BitmapFontAtlas bitmapFontAtlasWithString:@"Option 2" fntFile:@"bitmapFont.fnt"];
MenuItemLabel *item2 = [MenuItemLabel itemWithLabel:label2 target:self selector:@selector(menuCallback2:)];
I was wondering if this is the correct way to do this. I mean do I really have to init the same font for every item even if it uses the same font ?
-mcb