是否可以在 Java Monkey Engine 中创建平坦的地形?
作为一个使用JME引擎的初学者,我想知道是否可以创建平坦的地形?
我使用了 TerrainBlock 并使用 MidPointHeightMap 创建了一个有些凹凸不平的地形,但似乎无法使其完全平坦。
提前致谢。
As a beginner using the JME engine, I was wondering whether it is possible to create flat terrain?
I have played with the TerrainBlock and created a somewhat bumpy terrain using MidPointHeightMap, but can't seem to get it perfectly flat.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Quad
形状创建一个原始平面。http://www.jmonkeyengine.com/doc/com/jme /scene/shape/Quad.html
这始终是完全平坦的。您可以使用其他技术进行纹理化。另请注意:此
Quad
的 Z 高度始终为 0。(它真的很平!)You can create a primitive plane, using a
Quad
shape.http://www.jmonkeyengine.com/doc/com/jme/scene/shape/Quad.html
This is always perfectly flat. You can use other techniques for texturing. Also note: the Z-height of this
Quad
is always 0. (It's really flat!)