0
self.background = [CCSprite spriteWithFile:@"LetterBrick.png"];
    CCLOG(@"background contentSize: (w: %d, h: %d)", self.background.contentSize.width, self.background.contentSize.height);
    CCLOG(@"background boundingBox: (x: %d, y: %d, w: %d, h: %d)", self.background.boundingBox.origin.x, self.background.boundingBox.origin.y, self.background.boundingBox.size.width, self.background.boundingBox.size.height);

    /**
     OUTPUT:
        background contentSize: (w: 0, h: 1078984704)
        background boundingBox: (x: 0, y: -1069547520, w: 0, h: -1069547520)
     */

したがって、基本的には、ファイルから CCSprite を作成し、contentsize と境界ボックスを出力するだけです。しかし、これらの値は少し奇妙に思えます。

助けてください。:)

4

1 に答える 1

0

それらを出力するときは、整数の代わりに浮動小数点数を使用してください

于 2012-08-31T12:09:40.543 に答える