Szukaj…


Wprowadzenie

Komponent gltf-model pozwala na stosowanie modeli 3D w formacie glTF z ramką A. glTF jest standardem Khronos dla wydajnych modeli 3D z pełną sceną i jest zoptymalizowany do użycia w Internecie.

Składnia

  • <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>

Parametry

Parametr Detale
url(...) załaduje model glTF zawinięty z adresu URL zawiniętego w url()
#example załaduje <a-asset-item> z example ID

Ładowanie modelu glTF przez 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>

Ładowanie modelu gltf za pośrednictwem systemu zasobów

<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
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow