aframe
gltf-modell (komponent)
Sök…
Introduktion
Komponenten gltf-modell gör det möjligt att använda 3D-modeller i glTF-format med A-Frame. glTF är en Khronos-standard för effektiva 3D-modeller i full scen och är optimerad för användning på webben.
Syntax
-
<a-entity gltf-model="url(https://cdn.rawgit.com/KhronosGroup/glTF-Sample-Models/9176d098/1.0/Duck/glTF/Duck.gltf)"></a-entity>
-
<a-entity gltf-model="#duck"></a-entity>
parametrar
Parameter | detaljer |
---|---|
url(...) | kommer att ladda glTF-modellen som är lindad från webbadressen inlindad i url() |
#example | laddar <a-asset-item> med ID- example |
Laddar en glTF-modell via URL
<a-scene>
<a-entity gltf-model="url(https://cdn.rawgit.com/KhronosGroup/glTF-Sample-Models/9176d098/1.0/Duck/glTF/Duck.gltf)" position="0 0 -5"></a-entity>
</a-scene>
Laddar en gltf-modell via tillgångssystemet
<a-scene>
<a-assets>
<a-asset-item id="duck" src="https://cdn.rawgit.com/KhronosGroup/glTF-Sample-Models/9176d098/1.0/Duck/glTF/Duck.gltf"></a-asset-item>
</a-assets>
<a-entity gltf-model="#duck" position="0 0 -5"></a-entity>
</a-scene>
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow