我怎样才能用两堂课做到最热门

发布于 2024-11-09 21:10:05 字数 183 浏览 2 评论 0原文

我怎样才能用2个类别进行命中1个类别称为敌人,第二个称为玩家 它们都是 movieclip 类,并且 movieclip 具有以下实例 敌人类别影片剪辑 = Enemy 玩家类 movieclip = 玩家,

你能给我代码吗?我已经被困在这两天了,请帮忙,

谢谢 快男619 actionscript.org 论坛的

how can i make a hitest with 2 classes 1 class is called enemy and the second is called player
they both are movieclip classes and the movieclips have instances of
the enemy class movieclip = Enemy
and the player class movieclip = Player

can you give me the code please ive been stuck on this 2 days now please help

thanks
fastboy619
of the actionscript.org forum

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

听风吹 2024-11-16 21:10:05

这很简单。下面是教程的链接以及专门执行此操作的代码教程的摘录:

if (circle.hitTestObject(square)) {
     hittext.text = "Ouch!";
} else {
     hittext.text = "";
}

http://www.foundation-flash.com/tutorials/as3hittesting/

This is very simple. Below is a link to a tutorial + an excerpt from the tutorial of the code that is specifically performing this op:

if (circle.hitTestObject(square)) {
     hittext.text = "Ouch!";
} else {
     hittext.text = "";
}

http://www.foundation-flash.com/tutorials/as3hittesting/

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