index.wxml 1.0 KB

1234567891011121314151617181920
  1. <xr-scene id="xr-scene" bind:ready="handleReady">
  2. <xr-assets bind:progress="handleAssetsProgress" bind:loaded="handleAssetsLoaded">
  3. <xr-asset-load type="gltf" asset-id="gltf-sheenChair" src="https://mmbizwxaminiprogram-1258344707.cos.ap-guangzhou.myqcloud.com/xr-frame/demo/SheenChair/glTF-Binary/SheenChair.glb" />
  4. </xr-assets>
  5. <xr-env env-data="xr-frame-team-workspace-day" />
  6. <xr-node>
  7. <xr-node node-id="camera-target" position="0 0 0"></xr-node>
  8. <xr-gltf node-id="gltf-sheenChair" position="0 -3 0" rotation="0 0 0" scale="8 8 8" model="gltf-sheenChair"></xr-gltf>
  9. <xr-camera
  10. id="camera" node-id="camera" position="4 2 8" clear-color="0.925 0.925 0.925 1"
  11. near="0.1"
  12. far="2000"
  13. target="camera-target" background="skybox" camera-orbit-control=""
  14. ></xr-camera>
  15. </xr-node>
  16. <xr-node node-id="lights">
  17. <xr-light type="ambient" color="1 1 1" intensity="0.6" />
  18. <xr-light type="directional" rotation="120 20 0" color="1 1 1" intensity="1" />
  19. </xr-node>
  20. </xr-scene>