Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当有线条和物理对象时,我正在开发游戏
行代码是:
有趣的是,当我编写打印代码时(“碰撞在这里”)(例如),它们甚至不会发生碰撞!
line 和 obj 主体都是静态的
怎样才能让这种碰撞发生?提前致谢!
静态物体不能相互碰撞,但是这个问题有一个解决方案。
如果两条线都是静态的,则创建一个函数,您可以在其中检测两个对象的 x 和 y 并相应地生成方程式,例如:line.x + 20 > obj.x 然后打印(碰撞)。