jMonkeyEngine 在网格内部应用材质?

发布于 2024-12-04 10:52:16 字数 225 浏览 0 评论 0原文

我正在使用 jMonkeyEngine 开发桌面 PC 游戏。它仍处于早期阶段(总是开始,永远不会结束,是吗?)。

由于没有物理作用(仅移动相机),当您进入 内部时,面孔会消失几何模型。所以我的问题是,如何将材质(纹理)应用到网格内部?

I'm using jMonkeyEngine to develop a desktop PC game. It's still in early stages (always starting, never finishing, eh?).

With no physics (just moving the camera), faces disappear when you enter the inside of a Geometry model. So my question is, how do you apply a Material (texture) to the inside of a mesh?

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

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

发布评论

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

评论(2

画尸师 2024-12-11 10:52:16

看一下:material.getAdditionalRenderState().setFaceCullMode(FaceCullMode.Off);

这应该显示两侧的纹理。如果您仅需要网格内部的材质,请使用 FaceCullMode.Front,尽管在这种情况下您可能应该重新定义网格,使其法线指向内。

Have a look at this: material.getAdditionalRenderState().setFaceCullMode(FaceCullMode.Off);

This should show the texture on both sides. If you need the material only on the inside of your mesh, use FaceCullMode.Front, although in that case you should probably redefine your mesh instead so that its normals are pointing inwards.

层林尽染 2024-12-11 10:52:16

由于大多数网格体没有“内部”,因此您无法使用相同的几何体来做到这一点,对我来说一个很好的解决方法是使用网格体的克隆,但尺寸为负,尽管这仅适用于对称网格体。

Since most meshes don't have an 'inside' you can't do it with the same geometry, a good workaround that worked for me was to use a clone of the mesh but with a negative size though this only works for symmetrical meshes.

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