Corona sdk 交换图像文件

发布于 2024-11-27 17:57:27 字数 279 浏览 0 评论 0原文

有没有一种简单的方法来交换分配给主体的图像?示例代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-12-04 17:57:27

我不确定,但您可以使用单个 .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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文