commit
df68a1f55b
@ -0,0 +1,21 @@ |
||||
The MIT License |
||||
|
||||
Copyright © 2015 A-Frame. |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to deal |
||||
in the Software without restriction, including without limitation the rights |
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
THE SOFTWARE. |
@ -0,0 +1,18 @@ |
||||
<!DOCTYPE html> |
||||
<html> |
||||
<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/0.5.0/aframe.min.js"></script> |
||||
</head> |
||||
<body> |
||||
<a-scene> |
||||
<a-box position="-1 0.5 -3" rotation="0 45 0" color="#4CC3D9"></a-box> |
||||
<a-sphere position="0 1.25 -5" radius="1.25" color="#EF2D5E"></a-sphere> |
||||
<a-cylinder position="1 0.75 -3" radius="0.5" height="1.5" color="#FFC65D"></a-cylinder> |
||||
<a-plane position="0 0 -4" rotation="-90 0 0" width="4" height="4" color="#7BC8A4"></a-plane> |
||||
<a-sky color="#ECECEC"></a-sky> |
||||
</a-scene> |
||||
</body> |
||||
</html> |
@ -0,0 +1,23 @@ |
||||
{ |
||||
"name": "aframe-hello-world-boilerplate", |
||||
"description": "Boilerplate with A-Frame's 'Hello, World!' of WebVR.", |
||||
"version": "0.3.0", |
||||
"license": "MIT", |
||||
"scripts": { |
||||
"start": "budo --live --verbose --port 3000 --open", |
||||
"deploy": "ghpages", |
||||
"ghpages": "ghpages" |
||||
}, |
||||
"devDependencies": { |
||||
"budo": "^7.0.0", |
||||
"ghpages": "0.0.3" |
||||
}, |
||||
"keywords": [ |
||||
"aframe", |
||||
"aframe-example", |
||||
"aframe-boilerplate", |
||||
"aframe-scene", |
||||
"webvr", |
||||
"vr" |
||||
] |
||||
} |
Loading…
Reference in new issue