为什么我在这个 A 帧中看不到 obj 和 mtl?

Why I do not see obj and mtl in this A-frame?

我刚开始使用 a-frame 0.4.0 3d 对象,但我认为我犯了一些基本错误。 我从这里开始:https://aframe.io/docs/0.4.0/components/obj-model.html 我使用了这个模型:http://tf3dm.com/3d-model/wood-texture-created-in-cycles-82780.html 但这对我不起作用。为什么?我怎样才能做好?

<!DOCTYPE html>
    <html>
    <head>
        <title>objtest</title>
        <meta charset="utf-8">
    </head>
    <body>
    <a-scene>
      <a-assets>
        <a-asset-item id="tree-obj" src="WoodTexture.obj"></a-asset-item>
        <a-asset-item id="tree-mtl" src="WoodTexture.mtl"></a-asset-item>
      </a-assets>
      <a-entity obj-model="obj: #tree-obj; mtl: #tree-mtl"></a-entity>
    </a-scene>

    </body>
    </html>

你用过aframe.js吗?如果没有,试试吧。重命名 .obj 和不带 space 的“.mtl”文件。我试过这个模型文件,它对我有用。