网络上有没有关于如何使用着色器实现碰撞检测的示例?
网络上是否有任何 OpenGL、OpenGL ES 或 WebGL 代码示例,说明如何使用着色器(最好是 GLSL)实现 3D 碰撞检测?
谢谢。
Is there any OpenGL, OpenGL ES or WebGL code example on the web how 3D Collision Detection can be implemented with Shaders (preferably GLSL)?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GLGE 具有基于着色器的碰撞检测。请参阅此演示。 (WASD、空格键和鼠标四处移动。注意如何与墙壁碰撞等)
如果您查看源代码,则碰撞检测是通过代码处理的
如果您按照此进入
glge.js
您将看到这是如何通过特殊渲染模式GLGE.RENDER_PICK
实现的(该模式又使用pkfragStr
中的拾取片段着色器)。GLGE has shader based collision detection. See this demo. (WASD,spacebar and mouse to move around. Notice how you collide with walls, etc.)
If you look at the source code, collision detection is handled with the code
If you follow this into
glge.js
you'll see how this is implemented with a special render modeGLGE.RENDER_PICK
(which in turn uses a picking fragment shader inpkfragStr
).