Skip to content

Commit

Permalink
rename assets.aframe to cdn.aframe
Browse files Browse the repository at this point in the history
  • Loading branch information
ngokevin committed Aug 3, 2016
1 parent 622d049 commit b68abfc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions examples/showcase/wikipedia/index.html
Expand Up @@ -96,8 +96,8 @@ <h1 id="firstHeading" class="firstHeading" lang="en">Burj Khalifa</h1>
<td colspan="2" style="text-align:center">
<a-scene class="ascene" debug="" embedded style="margin: auto">
<a-assets>
<a-asset-item id="crate-obj" src="https://assets.aframe.io/wikipedia/model.obj"></a-asset-item>
<a-asset-item id="crate-mtl" src="https://assets.aframe.io/wikipedia/model.mtl"></a-asset-item>
<a-asset-item id="crate-obj" src="https://cdn.aframe.io/wikipedia/model.obj"></a-asset-item>
<a-asset-item id="crate-mtl" src="https://cdn.aframe.io/wikipedia/model.mtl"></a-asset-item>
</a-assets>
<a-entity id="sky" geometry="primitive: sphere; radius: 2000;"
material="shader: sky; sunPosition: 10 18 0;side: back"></a-entity>
Expand Down
4 changes: 2 additions & 2 deletions examples/showcase/wikipedia/indexMobile.html
Expand Up @@ -245,8 +245,8 @@
<td colspan="2" style="text-align:center">
<a-scene class="ascene" debug="true" embedded style="margin: auto">
<a-assets>
<a-asset-item id="crate-obj" src="https://assets.aframe.io/wikipedia/model.obj"></a-asset-item>
<a-asset-item id="crate-mtl" src="https://assets.aframe.io/wikipedia/model.mtl"></a-asset-item>
<a-asset-item id="crate-obj" src="https://cdn.aframe.io/wikipedia/model.obj"></a-asset-item>
<a-asset-item id="crate-mtl" src="https://cdn.aframe.io/wikipedia/model.mtl"></a-asset-item>
</a-assets>
<a-entity id="sky" geometry="primitive: sphere; radius: 2000;"
material="shader: sky; sunPosition: 10 18 0;side: back"></a-entity>
Expand Down
4 changes: 2 additions & 2 deletions src/components/hand-controls.js
@@ -1,7 +1,7 @@
var registerComponent = require('../core/component').registerComponent;

var LEFT_HAND_MODEL_URL = 'https://assets.aframe.io/controllers/hands/leftHand.json';
var RIGHT_HAND_MODEL_URL = 'https://assets.aframe.io/controllers/hands/rightHand.json';
var LEFT_HAND_MODEL_URL = 'https://cdn.aframe.io/controllers/hands/leftHand.json';
var RIGHT_HAND_MODEL_URL = 'https://cdn.aframe.io/controllers/hands/rightHand.json';

/**
*
Expand Down
4 changes: 2 additions & 2 deletions src/components/vive-controls.js
@@ -1,7 +1,7 @@
var registerComponent = require('../core/component').registerComponent;

var VIVE_CONTROLLER_MODEL_OBJ_URL = 'https://assets.aframe.io/controllers/vive/vr_controller_vive.obj';
var VIVE_CONTROLLER_MODEL_OBJ_MTL = 'https://assets.aframe.io/controllers/vive/vr_controller_vive.mtl';
var VIVE_CONTROLLER_MODEL_OBJ_URL = 'https://cdn.aframe.io/controllers/vive/vr_controller_vive.obj';
var VIVE_CONTROLLER_MODEL_OBJ_MTL = 'https://cdn.aframe.io/controllers/vive/vr_controller_vive.mtl';

/**
* Vive Controls Component
Expand Down

0 comments on commit b68abfc

Please sign in to comment.