kennyviperhk / aframe-starter

Simple A-Frame (webVR framework) starter project for local development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A-Frame Starter Project

A simple way to get started with local development on the web-based virtual reality framework, A-frame.

Prequisites

Download NodeJS - I recommend LTS version 8+.

Getting started

Clone the repo:

git clone https://github.com/anselanza/aframe-starter.git

Install the dependencies:

cd aframe-starter
npm install

Build and launch the server:

npm run start

Now open your web browser and point to http://localhost:1234

screenshot

More complex example

You can see an example of the tutorial at https://aframe.io/docs/0.7.0/guides/building-a-basic-scene.html implemented using this starter project, which demonstrates environments, textures, interaction, lighting, text and audio. Just switch to the tutorial-basic-scene branch:

git checkout tutorial-basic-scene

The result is something like this:

screenshot

Next steps

  1. Open the folder up in your favourite text editor.
  2. Make changes in the markup in index.html.
  3. Hit save - the project will re-compile and live-reload in your browser.

If you need to do a proper production build at any time, just run npm run build and a compiled version will go to the dist/ folder.

Under the hood

This starter project is made so, so simple using Parcel

...the Blazing fast, zero configuration web application bundler

About

Simple A-Frame (webVR framework) starter project for local development

License:MIT License


Languages

Language:HTML 96.8%Language:JavaScript 3.2%