gpt4 book ai didi

cocos2d-iphone - cocos2d支持ccsprite缩放位置吗?

转载 作者:行者123 更新时间:2023-12-04 04:31:20 25 4
gpt4 key购买 nike

这是一个问题图。

下图是cocos2d的 Sprite 图。

当绿色 Sprite 从 1.0 缩放到 0.5 比例时,我想获得黄色 Sprite 的位置。

我想知道cocos2d是否支持缩放位置。

enter image description here

this is some code.

    CCSprite *green = [CCSprite spriteWithFile:@"green.png"];
CCSprite *yellow = [CCSprite spriteWithFile:@"yellow.png"];
green.anchorPoint = CGPointZero;
yellow.anchorPoint = CGPointZero;

green.position = CGPointMake(0, 0);
yellow.position = CGPointMake(100, 100);

[green addChild:yellow];

[self addChild:green];

green.scale = 0.5;

CGPoint scaled = yellow.scaledposition(?) <=== How to get?

最佳答案

试试这个:

CGPoint scaled = ccp(yellow.postion.x * green.scale, yellow.position.y * green.scale);

关于cocos2d-iphone - cocos2d支持ccsprite缩放位置吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8583155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com