forked from colinfizgig/aframe_Components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cube_Camera_Environment_Reflect.html
50 lines (29 loc) · 2.99 KB
/
Cube_Camera_Environment_Reflect.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Hello, World! • A-Frame</title>
<meta name="description" content="Hello, World! • A-Frame" />
<script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
</head>
<body class="a-body ">
<script src="./components/camera-cube-env.js"></script>
<a-scene background="color:#5f5f5f" class="fullscreen" inspector="" keyboard-shortcuts="" screenshot="" vr-mode-ui="" shadow="autoUpdate: true; type:pcfsoft">
<a-assets>
<img id="sky" src="./textures/sky.jpg">
<img id="door_C" src="./textures/ParthenonOptimized_DoorMat_BaseColor.png">
<img id="door_N" src="./textures/ParthenonOptimized_DoorMat_Normal.png">
<img id="door_M" src="./textures/ParthenonOptimized_DoorMat_Metallic.png">
<img id="door_R" src="./textures/ParthenonOptimized_DoorMat_Roughness.png">
<a-asset-item id="buzz" src="./Buzz1.glb"></a-asset-item>
</a-assets>
<a-sky src="#sky" material="" geometry="" rotation="0 90 0"></a-sky>
<a-box id="box" position="-1 0.4873319116589905 -3" rotation="0 45 0" color="#4CC3D9" shadow="" material="" geometry="" animation="property: position; to: 1 8 -10; dur: 2000; easing: linear; loop: true"></a-box>
<a-entity gltf-model="#buzz" camera-cube-env="resolution:256; repeat: true; interval: 50; roughness: 0.1; metalness: 1.0; matoverride: true" shadow="true" position="-6 3.0 -10.0" scale="1 1 1"></a-entity>
<a-sphere position="-0.030882298031221847 1.193090656580662 -5.974771159246423" radius="1.25" color="#EF2D5E" shadow="" material="color:#ffffff;metalness:1;roughness:1;metalnessMap:#door_M;normalMap:#door_N;normalScale:0.3200000000000001 -0.38;src:#door_C;roughnessMap:#door_R;metalnessTextureRepeat:1 0.5;normalTextureRepeat:1 0.5;roughnessTextureRepeat:1 0.5;repeat:1 0.5" camera-cube-env="distance: 1000; resolution: 256; repeat: true; interval: 100; roughness:1.0; metalness:1.0" geometry="" id="sphere" ></a-sphere>
<a-sphere position="1.9235126854468014 1.2578420656285436 -2.7593437232222047" radius="2" color="#FFC65D" segments-height="36" segments-width="64" shadow="" camera-cube-env="distance: 5000; resolution: 512; repeat: true; interval: 50;metalness:1;roughness:0.1" material="metalness:1.0;roughness:0.1" id="goldSphere"></a-sphere>
<a-plane position="0 0 -4" rotation="-90 0 0" width="4" height="4" color="#7BC8A4" shadow="" material="" geometry="" scale="100 100 1"></a-plane>
<a-entity position="-3.25 6.437 3.45" id="spotlight" light="castShadow:true;penumbra:0.78;angle:20.59;target:#sphere;shadowMapHeight:2048;shadowMapWidth:2048;shadowCameraFov:50;shadowCameraFar:492.95;shadowCameraVisible:false;shadowCameraTop:30;shadowCameraRight:15;shadowCameraBottom:-15;shadowCameraLeft:-15"></a-entity>
<a-entity light="type:hemisphere;groundColor:#4a4137;color:#ceeaf7;angle:0;distance:100;decay:0;intensity:0.53;target:#statue" rotation="0 0 0.01" visible=""></a-entity>
<a-entity camera look-controls wasd-controls="acceleration: 600" position="0 1.6 0"></a-entity>
</a-scene>
</body></html>