top of page

VR Pop Quiz 03/10


My VR code:

<!DOCTYPE html>


<html>

<head>

<script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>

<script src="https://rawgit.com/donmccurdy/aframe-extras/master/dist/aframe-extras.loaders.min.js"></script>

<script src="inflate.min.js"></script>

</head>


<body>

<a-scene>

<a-assets>

<a-asset-item

id="cuppy"

src="https://cdn.glitch.global/39c2faba-a050-42e8-8378-12ad57d6a4ec/creature%20%231%20final.gltf?v=1646943548075"

></a-asset-item>

<a-asset-item

id="bug"

src="https://cdn.glitch.global/39c2faba-a050-42e8-8378-12ad57d6a4ec/New%20creature%202.gltf?v=1646947275967"

></a-asset-item>

<img

id="cheetah"

src="https://thumbs.dreamstime.com/b/rainbow-leopard-skin-vector-seamless-pattern-holographic-colorful-neon-gradient-cheetah-dots-abstract-psychedelic-animal-217768043.jpg"

/>

<a-video

id="haha"

src="https://cdn.glitch.me/39c2faba-a050-42e8-8378-12ad57d6a4ec/small%20size%20vid.mov?v=1646948063858"

autoplay

loop="true"

></a-video>

</a-assets>


<a-entity

gltf-model="#cuppy"

position="0 5 -20"

animation-mixer="loop : true"

scale="0.7 0.7 0.7"

rotation="0 270 0"

></a-entity>


<a-entity

gltf-model="#bug"

position="-4 10 -14"

animation-mixer="loop : true"

scale="0.7 0.7 0.7"

rotation="0 270 0"

></a-entity>

<a-videosphere src="#haha"></a-videosphere>

<a-plane

position="0 0 -4"

rotation="-90 0 0"

width="10"

height="10"

material="src:#cheetah"

></a-plane>

<a-box

position="3 0.5 -3"

rotation="0 45 0"

width=".5"

height="4"

color="#FE1FED"

></a-box>

<a-sphere position="-3 1.25 -5" radius="1" color="#50F2FB"></a-sphere>

<a-sphere position="-1.25 1.25 -5" radius="1" color="#50F2FB"></a-sphere>

<a-ring color="#F6E70F" position="-7 4 -1" radius-inner="1" radius-outer="2"></a-ring>

</a-scene>

</body>

</html>


Recent Posts

See All

Virtual Reality Final Project

For my final virtual reality project, I created a Lisa Frank theme park. I created this environment specifically for my two blender creatures that couldn’t be happy with their new home. My goal was to

bottom of page