在X3D / X3DOM中显示静态文本或图片的正确方法是什么?使用HTML元素真的很容易搞砸了整个网站的格式......
答案 0 :(得分:0)
您可以使用ImageTexture
例如:
<x3d width='500px' height='400px'>
<scene>
<shape>
<appearance>
<ImageTexture url="myTexture.png"><ImageTexture/>
</appearance>
<box> </box>
</shape>
</scene>
</x3d>
对于静态文本,您可以使用Text
节点。