수색…


소개

gltf 모델 구성 요소는 A 프레임과 함께 glTF 형식의 3D 모델을 사용할 수 있도록합니다. glTF는 효율적인 풀 - 장면 3D 모델을위한 Khronos 표준이며 웹에서의 사용에 최적화되어 있습니다.

통사론

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

매개 변수

매개 변수 세부
url(...) url() 래핑 된 url() 에서 래핑 된 glTF 모델을로드합니다.
#example ID example 와 함께 <a-asset-item> 을로드합니다.

URL을 통해 glTF 모델로드

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

자산 시스템을 통한 gltf 모델 로딩

<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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow