Skip to content

Commit b68abfc

Browse files
committed
rename assets.aframe to cdn.aframe
1 parent 622d049 commit b68abfc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

examples/showcase/wikipedia/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ <h1 id="firstHeading" class="firstHeading" lang="en">Burj Khalifa</h1>
9696
<td colspan="2" style="text-align:center">
9797
<a-scene class="ascene" debug="" embedded style="margin: auto">
9898
<a-assets>
99-
<a-asset-item id="crate-obj" src="https://assets.aframe.io/wikipedia/model.obj"></a-asset-item>
100-
<a-asset-item id="crate-mtl" src="https://assets.aframe.io/wikipedia/model.mtl"></a-asset-item>
99+
<a-asset-item id="crate-obj" src="https://cdn.aframe.io/wikipedia/model.obj"></a-asset-item>
100+
<a-asset-item id="crate-mtl" src="https://cdn.aframe.io/wikipedia/model.mtl"></a-asset-item>
101101
</a-assets>
102102
<a-entity id="sky" geometry="primitive: sphere; radius: 2000;"
103103
material="shader: sky; sunPosition: 10 18 0;side: back"></a-entity>

examples/showcase/wikipedia/indexMobile.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@
245245
<td colspan="2" style="text-align:center">
246246
<a-scene class="ascene" debug="true" embedded style="margin: auto">
247247
<a-assets>
248-
<a-asset-item id="crate-obj" src="https://assets.aframe.io/wikipedia/model.obj"></a-asset-item>
249-
<a-asset-item id="crate-mtl" src="https://assets.aframe.io/wikipedia/model.mtl"></a-asset-item>
248+
<a-asset-item id="crate-obj" src="https://cdn.aframe.io/wikipedia/model.obj"></a-asset-item>
249+
<a-asset-item id="crate-mtl" src="https://cdn.aframe.io/wikipedia/model.mtl"></a-asset-item>
250250
</a-assets>
251251
<a-entity id="sky" geometry="primitive: sphere; radius: 2000;"
252252
material="shader: sky; sunPosition: 10 18 0;side: back"></a-entity>

src/components/hand-controls.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var registerComponent = require('../core/component').registerComponent;
22

3-
var LEFT_HAND_MODEL_URL = 'https://assets.aframe.io/controllers/hands/leftHand.json';
4-
var RIGHT_HAND_MODEL_URL = 'https://assets.aframe.io/controllers/hands/rightHand.json';
3+
var LEFT_HAND_MODEL_URL = 'https://cdn.aframe.io/controllers/hands/leftHand.json';
4+
var RIGHT_HAND_MODEL_URL = 'https://cdn.aframe.io/controllers/hands/rightHand.json';
55

66
/**
77
*

src/components/vive-controls.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var registerComponent = require('../core/component').registerComponent;
22

3-
var VIVE_CONTROLLER_MODEL_OBJ_URL = 'https://assets.aframe.io/controllers/vive/vr_controller_vive.obj';
4-
var VIVE_CONTROLLER_MODEL_OBJ_MTL = 'https://assets.aframe.io/controllers/vive/vr_controller_vive.mtl';
3+
var VIVE_CONTROLLER_MODEL_OBJ_URL = 'https://cdn.aframe.io/controllers/vive/vr_controller_vive.obj';
4+
var VIVE_CONTROLLER_MODEL_OBJ_MTL = 'https://cdn.aframe.io/controllers/vive/vr_controller_vive.mtl';
55

66
/**
77
* Vive Controls Component

0 commit comments

Comments
 (0)