Corona sdk 交换图像文件
有没有一种简单的方法来交换分配给主体的图像?示例代码:
local cat = display.newImage( "catright.png",100, 375 );
physics.addBody( cat, { density=0.9, friction=5, bounce=0 } );
cat.name = "cat";
在某些时候,我需要将 catright.png 替换为 catleft.png。
感谢您的任何建议。
Is there a simple way to swap an image that is assigned to a body? Example code:
local cat = display.newImage( "catright.png",100, 375 );
physics.addBody( cat, { density=0.9, friction=5, bounce=0 } );
cat.name = "cat";
At certain times, I need to swap catright.png for catleft.png.
Thanks for any advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定,但您可以使用单个 .png 文件作为精灵表。然后您可以添加两个名为“catright”和“catleft”的序列,并在必要的地方使用它们。
此链接是一个很好的参考点:
http://developer.anscamobile.com/reference/sprite-sheets
I am not sure, but you can use a single .png file to use as a sprite sheet instead. Then you can add two sequences named as "catright" and "catleft", and use them in necessary places.
This link is a good reference point:
http://developer.anscamobile.com/reference/sprite-sheets