index.wxml 1.4 KB

1234567891011121314151617181920
  1. <xr-scene id="xr-scene" bind:ready="handleReady">
  2. <xr-assets bind:progress="handleAssetsProgress" bind:loaded="handleAssetsLoaded">
  3. <xr-asset-material asset-id="standard-mat" effect="standard" />
  4. </xr-assets>
  5. <xr-node>
  6. <xr-mesh node-id="mesh-plane" position="0 -0.02 -4" rotation="0 0 0" scale="5 1 5" geometry="plane" material="standard-mat" uniforms="u_baseColorFactor:0.48 0.78 0.64 1" receive-shadow></xr-mesh>
  7. <xr-mesh id="cube" node-id="mesh-cube" position="-1 0.5 -3.5" scale="1 1 1" rotation="0 45 0" geometry="cube" material="standard-mat" uniforms="u_baseColorFactor:0.298 0.764 0.85 1" cast-shadow></xr-mesh>
  8. <xr-mesh node-id="mesh-cylinder" position="1 0.7 -3.5" scale="1 0.7 1" geometry="cylinder" material="standard-mat" uniforms="u_baseColorFactor:1 0.776 0.364 1" cast-shadow></xr-mesh>
  9. <xr-mesh node-id="mesh-sphere" position="0 1.25 -5" scale="1.25 1.25 1.25" geometry="sphere" material="standard-mat" uniforms="u_baseColorFactor:0.937 0.176 0.368 1" cast-shadow></xr-mesh>
  10. <xr-camera
  11. id="camera" node-id="camera" position="0 1.6 0" clear-color="0.925 0.925 0.925 1"
  12. target="mesh-sphere"
  13. 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="1" />
  18. <xr-light type="directional" rotation="40 170 0" color="1 1 1" intensity="3" cast-shadow/>
  19. </xr-node>
  20. </xr-scene>