setScaleX/setScaleY (Cocos2D)
我只是想在这里为Cocos2D澄清一些事情,setScaleX/和setScale Y是否调整对象的宽度和高度?
我在 google 上搜索了 Cocos2D 的文档,但没有看到它,所以我只是想在这里澄清一下。
那么像这样的东西会让宽度变成35吗?
[sprite1 setScaleX:35 / sprite1.contentSize.width];
谢谢!
I just wanted to clarify something here for Cocos2D, does setScaleX/and setScale Y adjust the width and height of the object?
I have googled for the documentation for Cocos2D but I didn't see it so I just wanted to clarify here.
So would something like this make the width 35?
[sprite1 setScaleX:35 / sprite1.contentSize.width];
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您希望 CCNodes 的 x 和 y 缩放属性:
如果您想逐步执行此操作,请使用以下操作之一:
You want CCNodes scale property for both x and y:
If you want to do it gradually use one of these actions: