Last active
April 28, 2016 23:53
-
-
Save captDaylight/ce7fb5c28e228f71f89d4a065e65cde2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="https://rawgit.com/aframevr/aframe/b813db0614ac2b518e547105e810b5b6eccfe1c8/dist/aframe.min.js"></script> | |
</head> | |
<body> | |
<script> | |
AFRAME.registerComponent('set-sky', { | |
schema: {default: ''}, | |
init() { | |
const sky = document.querySelector('a-sky'); | |
this.el.addEventListener('click', () => { | |
sky.setAttribute('src', this.data); | |
}); | |
} | |
}); | |
</script> | |
<a-scene> | |
<a-camera position="0 2 4"> | |
<a-cursor color="#4CC3D9" fuse="true" timeout="10"></a-cursor> | |
</a-camera> | |
<a-sphere color="#F44336" radius="1" position="-4 2 0" set-sky="https://c3.staticflickr.com/2/1475/26239222850_cabde81c39_k.jpg"></a-sphere> | |
<a-sphere color="#FFEB3B" radius="1" position="4 2 0" set-sky="https://c2.staticflickr.com/2/1688/25044226823_53c979f8a1_k.jpg"></a-sphere> | |
<a-sky></a-sky> | |
</a-scene> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment