Created
June 15, 2018 14:47
-
-
Save peted70/8576d609ef10d1e65b74c8a73c5a8a31 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
<title>WebVR on Hololens</title> | |
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script> | |
<script type="javascript"> | |
</script> | |
</head> | |
<body> | |
<a-scene background="#00000000"> | |
<a-assets> | |
<a-asset-item id="sun" src="sun.glb" response-type="arraybuffer"></a-asset-item> | |
</a-assets> | |
<a-entity gltf-model="#sun" scale = "15 15 15" position="0 0 -10"></a-entity> | |
<a-camera> | |
<a-cursor material="color: #FFF; shader: flat;"></a-cursor> | |
</a-camera> | |
</a-scene> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment