Skip to content

Instantly share code, notes, and snippets.

@brakmic
Created March 12, 2017 12:23
Show Gist options
  • Save brakmic/3b62dac198b8e7ce9f354e00a0e19921 to your computer and use it in GitHub Desktop.
Save brakmic/3b62dac198b8e7ce9f354e00a0e19921 to your computer and use it in GitHub Desktop.
const hello = <IVrModule>{
id: '001',
name: 'hello',
type: VrModuleType.AFrame,
markup: `
<a-scene>
<a-sphere position="0 1.25 -1" radius="1.25" color="#EF2D5E"></a-sphere>
<a-box position="-1 0.5 1" rotation="0 45 0" width="1" height="1" depth="1"
color="#4CC3D9"></a-box>
<a-cylinder position="1 0.75 1" radius="0.5" height="1.5" color="#FFC65D">
</a-cylinder>
<a-plane rotation="-90 0 0" width="4" height="4" color="#7BC8A4"></a-plane>
<a-sky color="#ECECEC"></a-sky>
</a-scene>
`
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment