我使用cocos2d中的iPhone 我想創建一個敵人如何創建在cocos2d敵人類
看到我的代碼
#import <Foundation/Foundation.h>
#import "cocos2d.h"
@interface Enemies : CCSprite {
float imageHeight;
}
@property float imageHeight;
+(id) enemies;
@end
@implementation Enemies
@synthesize imageHeight;
+(id) enemies{
return [[[self alloc] initWithFile:@"enemy.png"] autorelease];
}
@end
我想設置imageHeight類
float imageHeight = [enemy texture].contentSize.height;
所以,每當我創建一個類敵人的實例,我應該有imageHeight設置正確嗎?
感謝
注:我想提高this code
Enimies有屬性imageHeight和圖像高度屬性 – iOSPawan 2010-12-02 06:25:49