gpt4 book ai didi

JavaScript/Jquery 游戏边界碰撞检测

转载 作者:行者123 更新时间:2023-11-28 09:39:45 25 4
gpt4 key购买 nike

Possible Duplicate:
jQuery/Javascript collision detection

我正在学习如何使用 JavaScript 进行编码,并且正在使用 jQuery 库。我有一个使用 WASD 键在屏幕上移动的播放器。我希望他在到达游戏边界时停下来。我正在使用两个 div s,一个称为 Playground (游戏发生的区域),另一个称为玩家。我将它们设置如下:

<div id="playground">
<div id="player"></div>
</div>

该球员移动得很好,但我希望他在到达 Playground 边缘时停下来。请深入解释你的答案,因为我是 JavaScript 编程新手。任何帮助将不胜感激。

最佳答案

所以你需要使用这样的东西:

 if (this.__move.left) {
if (!this.isPlaying("walk_left"))
this.stop().animate("walk_left", 10);
}

这是一个非常好的示例和演示。试试吧http://craftyjs.com/demos/tutorial/tutorial.html

关于JavaScript/Jquery 游戏边界碰撞检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12541556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com