侧面碰撞 Flash ActionScript-3?
有谁有任何示例/知道任何教程可以让我在 Flash ActionScript 3 中与对象进行侧面碰撞吗?我一直在寻找但找不到任何东西..感谢您的帮助。
does anyone have any examples/know of any tutorials which would let me do side collision in flash actionscript 3 with objects? I have been searching and havent been able to find anything .. thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您正在寻找的是可用于所有显示对象的“hitTest”函数。 hitTestObject 告诉您两个对象是否发生碰撞,hitTestPoint 告诉您一个对象是否与某个点发生碰撞。假设有一个名为“myDisplayObj”的 MovieClip 变量:
I believe what you're looking for are the "hitTest" functions that are available to all Display Objects. hitTestObject tells you whether two objects have collided, and hitTestPoint tells you whether an object has collided with a point. Given, say, a MovieClip var named "myDisplayObj":
试试这个..
实现是 checkForCollision() 将返回一个字符串来表示您碰撞的一侧。您想要检查碰撞的对象需要扩展此类。另外,如果您想使用有角度的图块,请将 angl 属性设置为 tl、bl、tr、tl 来表示倾斜面的位置。希望这不会太令人困惑。
Try this..
Implementation is that checkForCollision() will return a String to represent the side you've collided against. The object you want to check for a collision against needs to extend this class. Also, if you want to use angled tiles, set the angl property to be either tl, bl, tr, tl to represent the position of the sloped side. Hope this isn't too confusing.