├── .gitignore ├── README.md ├── content ├── 2014 │ └── 11 │ │ └── 10 │ │ ├── images │ │ ├── construct-1.jpg │ │ ├── construct-2.jpg │ │ ├── hud-1.jpg │ │ ├── hud-2.jpg │ │ ├── landing-1.jpg │ │ ├── landing-2.jpg │ │ ├── pano-1.jpg │ │ ├── photo-1.jpg │ │ └── sechelt-1.jpg │ │ └── mozvr-launches.html ├── construct │ ├── images │ │ ├── bg.jpg │ │ ├── bg2.png │ │ ├── cylinder-text-1.png │ │ ├── cylinder-text-2.png │ │ ├── cylinder-text-3.png │ │ ├── cylinder-wherever-1.png │ │ ├── cylinder-wherever-2.png │ │ ├── cylinder-wherever-3.png │ │ ├── instructions-1.png │ │ ├── mozvr-logo-2.png │ │ ├── popup-infodive-1.png │ │ ├── popup-polarsea-1.png │ │ ├── popup-sechelt-1.png │ │ ├── txt-elevr-1.png │ │ ├── txt-futureofthevrweb.png │ │ ├── txt-infodive-1.png │ │ ├── txt-infodive-2.png │ │ ├── txt-leap-2.png │ │ ├── txt-panos-1.png │ │ ├── txt-polarsea-3.png │ │ └── txt-sechelt-1.png │ ├── index.html │ ├── js │ │ ├── DeviceOrientationControls.js │ │ ├── StereoEffect.js │ │ ├── VRControls.js │ │ ├── VREffect.js │ │ ├── three.min.js │ │ ├── tween.min.js │ │ └── vrclient.js │ ├── models │ │ ├── figure.json │ │ ├── frame-2.dae │ │ ├── frame-2.json │ │ ├── frame-3.dae │ │ ├── frame-3.json │ │ ├── frame.dae │ │ ├── frame.json │ │ ├── icon-infodive-1.dae │ │ ├── icon-infodive-1.json │ │ ├── icon-infodive-2.c4d │ │ ├── icon-infodive-2.dae │ │ ├── icon-infodive-2.json │ │ ├── icon-polarsea-1.dae │ │ ├── icon-polarsea-1.json │ │ ├── icon-sechelt-1.dae │ │ ├── icon-sechelt-1.json │ │ ├── icon-sechelt-2.dae │ │ ├── icon-sechelt-2.json │ │ ├── icon-sechelt-3.dae │ │ ├── icon-sechelt-3.json │ │ ├── mozvr-logo-2.dae │ │ ├── mozvr-logo-2.json │ │ ├── sechelt-1.json │ │ ├── test-4.json │ │ ├── wherever.dae │ │ └── wherever.json │ ├── readme.md │ └── sounds │ │ ├── click.mp3 │ │ ├── special.opus │ │ └── special.wav ├── landing │ ├── images │ │ ├── bg.jpg │ │ ├── bg2.png │ │ ├── hiro-logo-1.svg │ │ ├── mozvr-logo-1.svg │ │ ├── mozvr-logo-2.svg │ │ ├── tag-browser.png │ │ ├── tag-click.png │ │ ├── tag-esc.png │ │ ├── tag-f.png │ │ ├── tag-hmd.png │ │ └── tag-space.png │ ├── index.html │ ├── js │ │ ├── DeviceOrientationControls.js │ │ ├── StereoEffect.js │ │ ├── VRControls.js │ │ ├── VREffect.js │ │ ├── startup_old.js │ │ ├── three.min.js │ │ ├── tween.min.js │ │ └── vrclient.js │ └── models │ │ ├── figure.json │ │ └── rings.json └── leap │ ├── LICENSE │ ├── README.md │ ├── bower_components │ └── tween.js │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ ├── examples │ │ │ ├── 00_hello_world.png │ │ │ ├── 01_bars.png │ │ │ ├── 02_black_and_red.png │ │ │ ├── 03_graphs.png │ │ │ ├── 04_simplest.png │ │ │ ├── 05_spline.png │ │ │ ├── 06_video_and_time.png │ │ │ ├── 07_dynamic_to.png │ │ │ ├── 08_repeat.png │ │ │ ├── 09_relative.png │ │ │ ├── 10_yoyo.png │ │ │ └── 11_stop_all_chained_tweens.png │ │ ├── projects │ │ │ ├── 00_linechart.png │ │ │ ├── 01_wilderness.png │ │ │ ├── 02_floweroscope.png │ │ │ ├── 03_androidify.png │ │ │ ├── 04_webgl_globe.png │ │ │ ├── 05_rome.png │ │ │ ├── 06_minesweeper3d.png │ │ │ ├── 07_macchina.png │ │ │ ├── 08_web_lab.png │ │ │ └── 09_moma.png │ │ └── style.css │ │ ├── build │ │ └── tween.min.js │ │ ├── docs │ │ └── user_guide.md │ │ ├── examples │ │ ├── 00_hello_world.html │ │ ├── 01_bars.html │ │ ├── 02_black_and_red.html │ │ ├── 03_graphs.html │ │ ├── 04_simplest.html │ │ ├── 05_video_and_time.html │ │ ├── 06_array_interpolation.html │ │ ├── 07_dynamic_to.html │ │ ├── 08_repeat.html │ │ ├── 09_relative_values.html │ │ ├── 10_yoyo.html │ │ ├── 11_stop_all_chained_tweens.html │ │ ├── 12_graphs_custom_functions.html │ │ ├── css │ │ │ └── style.css │ │ └── js │ │ │ ├── RequestAnimationFrame.js │ │ │ ├── createGraph.js │ │ │ └── stats.min.js │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── src │ │ └── Tween.js │ │ ├── test │ │ ├── travis_install.sh │ │ └── unit │ │ │ ├── nodeunit.html │ │ │ ├── nodeunitheadless.js │ │ │ └── tests.js │ │ └── utils │ │ ├── builder.py │ │ ├── compiler │ │ ├── COPYING │ │ ├── README │ │ └── compiler.jar │ │ └── npm │ │ └── package.json │ ├── images │ ├── Grid-01.png │ ├── README │ ├── UP │ │ ├── LARGE-001347H tour buses-1.psd.jpg │ │ ├── LARGE-10233 through the pipe.tif.jpg │ │ ├── LARGE-14618 UP9026 Archer.tif.jpg │ │ ├── LARGE-1791A M10000 overhead.Tif.jpg │ │ ├── LARGE-1802 poster BW M10000 progress.Tif.jpg │ │ ├── LARGE-3-175 UP3618 mallet 1929.tif.jpg │ │ ├── LARGE-3-420 oiling 9000.Tif.jpg │ │ ├── LARGE-504590 Joseph ag train.jpg.jpg │ │ ├── LARGE-5127A LA Ltd SPA semaphores.Tif.jpg │ │ ├── LARGE-6 sideview 9000.Tif.jpg │ │ ├── LARGE-68-13 UP3703 mallet 1918.tif.jpg │ │ ├── LARGE-68-80 Council Bluffs no date.jpg.jpg │ │ ├── LARGE-7-160 Durant FD 1910.tif.jpg │ │ ├── LARGE-7-40 depot Omaha Stimson.Tif.jpg │ │ ├── LARGE-7-67 coach shop.tif.jpg │ │ ├── LARGE-73069 Lane cutoff.tif.jpg │ │ ├── LARGE-73209 4-4-2 SFA 97.tif.jpg │ │ ├── LARGE-74688 Children's Book of Yellowstone Bears.jpg.jpg │ │ ├── LARGE-74690 poster Zion.tif.jpg │ │ ├── LARGE-74694 ad Grand Canyon.Tif.jpg │ │ ├── LARGE-CoP Rochester NY .tif.jpg │ │ ├── LARGE-EHHarriman Sale of UP.tif.jpg │ │ ├── LARGE-H7-74 Omaha Shop emp 1908.tif.jpg │ │ ├── LARGE-LA Ltd SPA crew 3413.Tif.jpg │ │ ├── LARGE-Lane cutoff fill .tif.jpg │ │ ├── LARGE-Mountain type 4-8-2.tif.jpg │ │ ├── LARGE-Omaha Shop ext air 1907.tif.jpg │ │ ├── LARGE-Omaha stores dept 1912.tif.jpg │ │ ├── LARGE-PFE Las Vegas 1931.tif.jpg │ │ ├── LARGE-PFE cars ice dock.tif.jpg │ │ ├── LARGE-Papio trestle construction.tif.jpg │ │ ├── LARGE-SPLAandSL num504.tif.jpg │ │ ├── LARGE-Streamliner 3 locos.Tif.jpg │ │ ├── LARGE-UP SP office KC.tif.jpg │ │ ├── LARGE-X1729 No 4038 near Truckee.tif.jpg │ │ ├── LARGE-X2313 Excursion Midlake.tif.jpg │ │ ├── LARGE-Zoin Lodge opening 04-15-25.tif.jpg │ │ ├── LARGE-ag train Pilot Rock OWRN.jpg.jpg │ │ └── LARGE-lane cutoff.jpg.jpg │ ├── domStates │ │ ├── desktopHover.png │ │ ├── desktopMode.png │ │ ├── recordingHover.png │ │ ├── riftHover.png │ │ └── riftMode.png │ ├── foto-viewer-dark.png │ ├── foto-viewer.jpg │ ├── intro │ │ ├── auto-play-hover.png │ │ ├── auto-play-ok.png │ │ ├── auto-play.png │ │ ├── desktop-hover.png │ │ ├── desktop-ok.png │ │ ├── desktop.png │ │ ├── hmd-hover.png │ │ ├── hmd-ok.png │ │ ├── hmd.png │ │ ├── plug-in-leap-hover.png │ │ ├── plug-in-leap-ok.png │ │ └── plug-in-leap.png │ ├── landscapes │ │ ├── landscape1.jpg │ │ ├── landscape2.jpg │ │ ├── landscape3.jpg │ │ └── landscape4.jpg │ └── trains │ │ ├── 3d-abstract_hdwallpaper_steam-engine_50474.jpg │ │ ├── 52_8134_Hoentrop_2012-09-16.jpg │ │ ├── steam-engine-4.png │ │ └── steam-engine-wallpaper-9.jpg │ ├── index.html │ ├── javascript │ ├── app.js │ ├── directives │ │ └── scene.js │ ├── fonts │ │ ├── droid_sans_bold.typeface.js │ │ ├── droid_sans_regular.typeface.js │ │ ├── droid_serif_bold.typeface.js │ │ ├── droid_serif_regular.typeface.js │ │ ├── gentilis_bold.typeface.js │ │ ├── gentilis_regular.typeface.js │ │ ├── helvetiker_bold.typeface.js │ │ ├── helvetiker_regular.typeface.js │ │ ├── optimer_bold.typeface.js │ │ └── optimer_regular.typeface.js │ ├── interface.js │ ├── interface.map │ ├── lib │ │ ├── Arrows.js │ │ ├── Dock.js │ │ ├── HandArrow.js │ │ ├── InteractablePlane.js │ │ ├── LeapDataPlotter.js │ │ ├── OrbitControls.js │ │ ├── PlaneStack.js │ │ ├── THREEDialog.js │ │ ├── TextMaker.js │ │ ├── VRClient.js │ │ ├── VRControls.js │ │ ├── VRCursor.js │ │ ├── VREffect.js │ │ ├── leap.bone-hand.js │ │ ├── leap.pinchEvent.js │ │ ├── leap.proximity.js │ │ ├── leap.singleHandRecognizer.js │ │ ├── leap.transform.js │ │ ├── leap.twoHandRecognizer.js │ │ ├── three.MeshCorners.js │ │ ├── three.PlaneIntersection.js │ │ └── three.grid.js │ └── unused │ │ ├── README │ │ ├── leap-0.6.3.js │ │ └── three.js │ ├── meshes │ └── MozillaVR-3D-arrow-01.json │ ├── recordings │ ├── remove-photos-110fps.json (1).lz │ ├── remove-photos-28fps.json.lz │ ├── remove-photos-3-110fps.json.lz │ ├── remove-photos-3-27fps.json.lz │ ├── remove-photos-3-53fps.json.lz │ ├── remove-photos-57fps.json.lz │ ├── spread-photos-110fps.json (1).lz │ ├── spread-photos-28fps.json.lz │ ├── spread-photos-55fps.json.lz │ ├── stack-images-100fps.json.lz │ ├── stack-images-26fps.json.lz │ └── stack-images-51fps.json.lz │ ├── stylesheets │ └── index.less │ └── testProximity.html ├── css ├── fira.css ├── hiro.css └── instructions.css ├── d23 ├── hud │ ├── index.json │ └── index.png └── title │ ├── index.json │ └── index.png ├── fonts └── montserrat │ ├── Montserrat-Bold.ttf │ ├── Montserrat-Regular.ttf │ ├── OFL.txt │ └── montserrat.css ├── gulpfile.js ├── images ├── alpha-2pxblack-leftright.png ├── instructions │ ├── couchknights.png │ ├── nickycase.png │ ├── oculusrex.png │ ├── polarsea.png │ ├── progressbar-1.png │ ├── rainbowmembrane.png │ ├── sechelt.png │ └── xibalba.png ├── mozilla.png └── transition │ ├── alpha-2pxblack-topbottom.png │ └── eyelid-gradient.png ├── index.html ├── js ├── lib │ ├── dom2three.js │ ├── sketch2three.js │ ├── utils.js │ └── vruikit.js ├── main.js ├── vendor │ ├── DeviceOrientationControls.js │ ├── evt.js │ ├── gamepadmapping.js │ ├── mappings.json │ ├── three │ │ ├── OrbitControls.js │ │ ├── Projector.js │ │ ├── StereoEffect.js │ │ ├── VRControls.js │ │ ├── VREffect.js │ │ └── three.min.js │ └── tween.min.js ├── vrclient.js ├── vrcursor.js ├── vrhud.js ├── vrinstructions.js ├── vrloading.js ├── vrmanager.js ├── vrsound.js ├── vrtab.js ├── vrtitle.js ├── vrtransition.js ├── vrui.js ├── vrutils.js └── xboxpad.js ├── json └── favorites.json ├── landing └── images │ ├── hiro-logo-1.svg │ ├── mozvr-logo-1.svg │ └── mozvr-logo-2.svg ├── manifest.webapp ├── models └── test-4.json ├── package.json ├── s23 ├── images │ ├── fav-couchknights.png │ ├── fav-nickycase.png │ ├── fav-polarsea.png │ ├── fav-rainbow.png │ ├── fav-rex.png │ ├── fav-sechelt.png │ ├── fav-xibalba.png │ ├── frame.png │ └── index.json └── sketch │ └── hiro.sketch └── sounds └── click.mp3 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/README.md -------------------------------------------------------------------------------- /content/2014/11/10/images/construct-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/construct-1.jpg -------------------------------------------------------------------------------- /content/2014/11/10/images/construct-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/construct-2.jpg -------------------------------------------------------------------------------- /content/2014/11/10/images/hud-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/hud-1.jpg -------------------------------------------------------------------------------- /content/2014/11/10/images/hud-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/hud-2.jpg -------------------------------------------------------------------------------- /content/2014/11/10/images/landing-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/landing-1.jpg -------------------------------------------------------------------------------- /content/2014/11/10/images/landing-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/landing-2.jpg -------------------------------------------------------------------------------- /content/2014/11/10/images/pano-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/pano-1.jpg -------------------------------------------------------------------------------- /content/2014/11/10/images/photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/photo-1.jpg -------------------------------------------------------------------------------- /content/2014/11/10/images/sechelt-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/images/sechelt-1.jpg -------------------------------------------------------------------------------- /content/2014/11/10/mozvr-launches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/2014/11/10/mozvr-launches.html -------------------------------------------------------------------------------- /content/construct/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/bg.jpg -------------------------------------------------------------------------------- /content/construct/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/bg2.png -------------------------------------------------------------------------------- /content/construct/images/cylinder-text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/cylinder-text-1.png -------------------------------------------------------------------------------- /content/construct/images/cylinder-text-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/cylinder-text-2.png -------------------------------------------------------------------------------- /content/construct/images/cylinder-text-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/cylinder-text-3.png -------------------------------------------------------------------------------- /content/construct/images/cylinder-wherever-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/cylinder-wherever-1.png -------------------------------------------------------------------------------- /content/construct/images/cylinder-wherever-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/cylinder-wherever-2.png -------------------------------------------------------------------------------- /content/construct/images/cylinder-wherever-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/cylinder-wherever-3.png -------------------------------------------------------------------------------- /content/construct/images/instructions-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/instructions-1.png -------------------------------------------------------------------------------- /content/construct/images/mozvr-logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/mozvr-logo-2.png -------------------------------------------------------------------------------- /content/construct/images/popup-infodive-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/popup-infodive-1.png -------------------------------------------------------------------------------- /content/construct/images/popup-polarsea-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/popup-polarsea-1.png -------------------------------------------------------------------------------- /content/construct/images/popup-sechelt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/popup-sechelt-1.png -------------------------------------------------------------------------------- /content/construct/images/txt-elevr-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/txt-elevr-1.png -------------------------------------------------------------------------------- /content/construct/images/txt-futureofthevrweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/txt-futureofthevrweb.png -------------------------------------------------------------------------------- /content/construct/images/txt-infodive-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/txt-infodive-1.png -------------------------------------------------------------------------------- /content/construct/images/txt-infodive-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/txt-infodive-2.png -------------------------------------------------------------------------------- /content/construct/images/txt-leap-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/txt-leap-2.png -------------------------------------------------------------------------------- /content/construct/images/txt-panos-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/txt-panos-1.png -------------------------------------------------------------------------------- /content/construct/images/txt-polarsea-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/txt-polarsea-3.png -------------------------------------------------------------------------------- /content/construct/images/txt-sechelt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/images/txt-sechelt-1.png -------------------------------------------------------------------------------- /content/construct/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/index.html -------------------------------------------------------------------------------- /content/construct/js/DeviceOrientationControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/js/DeviceOrientationControls.js -------------------------------------------------------------------------------- /content/construct/js/StereoEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/js/StereoEffect.js -------------------------------------------------------------------------------- /content/construct/js/VRControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/js/VRControls.js -------------------------------------------------------------------------------- /content/construct/js/VREffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/js/VREffect.js -------------------------------------------------------------------------------- /content/construct/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/js/three.min.js -------------------------------------------------------------------------------- /content/construct/js/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/js/tween.min.js -------------------------------------------------------------------------------- /content/construct/js/vrclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/js/vrclient.js -------------------------------------------------------------------------------- /content/construct/models/figure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/figure.json -------------------------------------------------------------------------------- /content/construct/models/frame-2.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/frame-2.dae -------------------------------------------------------------------------------- /content/construct/models/frame-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/frame-2.json -------------------------------------------------------------------------------- /content/construct/models/frame-3.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/frame-3.dae -------------------------------------------------------------------------------- /content/construct/models/frame-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/frame-3.json -------------------------------------------------------------------------------- /content/construct/models/frame.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/frame.dae -------------------------------------------------------------------------------- /content/construct/models/frame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/frame.json -------------------------------------------------------------------------------- /content/construct/models/icon-infodive-1.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-infodive-1.dae -------------------------------------------------------------------------------- /content/construct/models/icon-infodive-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-infodive-1.json -------------------------------------------------------------------------------- /content/construct/models/icon-infodive-2.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-infodive-2.c4d -------------------------------------------------------------------------------- /content/construct/models/icon-infodive-2.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-infodive-2.dae -------------------------------------------------------------------------------- /content/construct/models/icon-infodive-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-infodive-2.json -------------------------------------------------------------------------------- /content/construct/models/icon-polarsea-1.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-polarsea-1.dae -------------------------------------------------------------------------------- /content/construct/models/icon-polarsea-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-polarsea-1.json -------------------------------------------------------------------------------- /content/construct/models/icon-sechelt-1.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-sechelt-1.dae -------------------------------------------------------------------------------- /content/construct/models/icon-sechelt-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-sechelt-1.json -------------------------------------------------------------------------------- /content/construct/models/icon-sechelt-2.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-sechelt-2.dae -------------------------------------------------------------------------------- /content/construct/models/icon-sechelt-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-sechelt-2.json -------------------------------------------------------------------------------- /content/construct/models/icon-sechelt-3.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-sechelt-3.dae -------------------------------------------------------------------------------- /content/construct/models/icon-sechelt-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/icon-sechelt-3.json -------------------------------------------------------------------------------- /content/construct/models/mozvr-logo-2.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/mozvr-logo-2.dae -------------------------------------------------------------------------------- /content/construct/models/mozvr-logo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/mozvr-logo-2.json -------------------------------------------------------------------------------- /content/construct/models/sechelt-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/sechelt-1.json -------------------------------------------------------------------------------- /content/construct/models/test-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/test-4.json -------------------------------------------------------------------------------- /content/construct/models/wherever.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/wherever.dae -------------------------------------------------------------------------------- /content/construct/models/wherever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/models/wherever.json -------------------------------------------------------------------------------- /content/construct/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/readme.md -------------------------------------------------------------------------------- /content/construct/sounds/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/sounds/click.mp3 -------------------------------------------------------------------------------- /content/construct/sounds/special.opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/sounds/special.opus -------------------------------------------------------------------------------- /content/construct/sounds/special.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/construct/sounds/special.wav -------------------------------------------------------------------------------- /content/landing/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/bg.jpg -------------------------------------------------------------------------------- /content/landing/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/bg2.png -------------------------------------------------------------------------------- /content/landing/images/hiro-logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/hiro-logo-1.svg -------------------------------------------------------------------------------- /content/landing/images/mozvr-logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/mozvr-logo-1.svg -------------------------------------------------------------------------------- /content/landing/images/mozvr-logo-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/mozvr-logo-2.svg -------------------------------------------------------------------------------- /content/landing/images/tag-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/tag-browser.png -------------------------------------------------------------------------------- /content/landing/images/tag-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/tag-click.png -------------------------------------------------------------------------------- /content/landing/images/tag-esc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/tag-esc.png -------------------------------------------------------------------------------- /content/landing/images/tag-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/tag-f.png -------------------------------------------------------------------------------- /content/landing/images/tag-hmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/tag-hmd.png -------------------------------------------------------------------------------- /content/landing/images/tag-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/images/tag-space.png -------------------------------------------------------------------------------- /content/landing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/index.html -------------------------------------------------------------------------------- /content/landing/js/DeviceOrientationControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/js/DeviceOrientationControls.js -------------------------------------------------------------------------------- /content/landing/js/StereoEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/js/StereoEffect.js -------------------------------------------------------------------------------- /content/landing/js/VRControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/js/VRControls.js -------------------------------------------------------------------------------- /content/landing/js/VREffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/js/VREffect.js -------------------------------------------------------------------------------- /content/landing/js/startup_old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/js/startup_old.js -------------------------------------------------------------------------------- /content/landing/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/js/three.min.js -------------------------------------------------------------------------------- /content/landing/js/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/js/tween.min.js -------------------------------------------------------------------------------- /content/landing/js/vrclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/js/vrclient.js -------------------------------------------------------------------------------- /content/landing/models/figure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/models/figure.json -------------------------------------------------------------------------------- /content/landing/models/rings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/landing/models/rings.json -------------------------------------------------------------------------------- /content/leap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/LICENSE -------------------------------------------------------------------------------- /content/leap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/README.md -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/.bower.json -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build/npm* 3 | node_modules 4 | -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/.travis.yml -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/CONTRIBUTING.md -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/LICENSE -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/README.md -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/00_hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/00_hello_world.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/01_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/01_bars.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/02_black_and_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/02_black_and_red.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/03_graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/03_graphs.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/04_simplest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/04_simplest.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/05_spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/05_spline.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/06_video_and_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/06_video_and_time.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/07_dynamic_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/07_dynamic_to.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/08_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/08_repeat.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/09_relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/09_relative.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/10_yoyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/10_yoyo.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/examples/11_stop_all_chained_tweens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/examples/11_stop_all_chained_tweens.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/00_linechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/00_linechart.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/01_wilderness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/01_wilderness.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/02_floweroscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/02_floweroscope.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/03_androidify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/03_androidify.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/04_webgl_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/04_webgl_globe.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/05_rome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/05_rome.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/06_minesweeper3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/06_minesweeper3d.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/07_macchina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/07_macchina.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/08_web_lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/08_web_lab.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/projects/09_moma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/projects/09_moma.png -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/assets/style.css -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/build/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/build/tween.min.js -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/docs/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/docs/user_guide.md -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/00_hello_world.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/00_hello_world.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/01_bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/01_bars.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/02_black_and_red.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/02_black_and_red.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/03_graphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/03_graphs.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/04_simplest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/04_simplest.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/05_video_and_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/05_video_and_time.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/06_array_interpolation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/06_array_interpolation.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/07_dynamic_to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/07_dynamic_to.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/08_repeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/08_repeat.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/09_relative_values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/09_relative_values.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/10_yoyo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/10_yoyo.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/11_stop_all_chained_tweens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/11_stop_all_chained_tweens.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/12_graphs_custom_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/12_graphs_custom_functions.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/css/style.css -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/js/RequestAnimationFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/js/RequestAnimationFrame.js -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/js/createGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/js/createGraph.js -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/examples/js/stats.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/examples/js/stats.min.js -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/gulpfile.js -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/package.json -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/src/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/src/Tween.js -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/test/travis_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/test/travis_install.sh -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/test/unit/nodeunit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/test/unit/nodeunit.html -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/test/unit/nodeunitheadless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/test/unit/nodeunitheadless.js -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/test/unit/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/test/unit/tests.js -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/utils/builder.py -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/utils/compiler/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/utils/compiler/COPYING -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/utils/compiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/utils/compiler/README -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/utils/compiler/compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/utils/compiler/compiler.jar -------------------------------------------------------------------------------- /content/leap/bower_components/tween.js/utils/npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/bower_components/tween.js/utils/npm/package.json -------------------------------------------------------------------------------- /content/leap/images/Grid-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/Grid-01.png -------------------------------------------------------------------------------- /content/leap/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/README -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-001347H tour buses-1.psd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-001347H tour buses-1.psd.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-10233 through the pipe.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-10233 through the pipe.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-14618 UP9026 Archer.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-14618 UP9026 Archer.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-1791A M10000 overhead.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-1791A M10000 overhead.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-1802 poster BW M10000 progress.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-1802 poster BW M10000 progress.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-3-175 UP3618 mallet 1929.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-3-175 UP3618 mallet 1929.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-3-420 oiling 9000.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-3-420 oiling 9000.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-504590 Joseph ag train.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-504590 Joseph ag train.jpg.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-5127A LA Ltd SPA semaphores.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-5127A LA Ltd SPA semaphores.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-6 sideview 9000.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-6 sideview 9000.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-68-13 UP3703 mallet 1918.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-68-13 UP3703 mallet 1918.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-68-80 Council Bluffs no date.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-68-80 Council Bluffs no date.jpg.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-7-160 Durant FD 1910.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-7-160 Durant FD 1910.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-7-40 depot Omaha Stimson.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-7-40 depot Omaha Stimson.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-7-67 coach shop.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-7-67 coach shop.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-73069 Lane cutoff.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-73069 Lane cutoff.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-73209 4-4-2 SFA 97.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-73209 4-4-2 SFA 97.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-74688 Children's Book of Yellowstone Bears.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-74688 Children's Book of Yellowstone Bears.jpg.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-74690 poster Zion.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-74690 poster Zion.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-74694 ad Grand Canyon.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-74694 ad Grand Canyon.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-CoP Rochester NY .tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-CoP Rochester NY .tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-EHHarriman Sale of UP.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-EHHarriman Sale of UP.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-H7-74 Omaha Shop emp 1908.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-H7-74 Omaha Shop emp 1908.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-LA Ltd SPA crew 3413.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-LA Ltd SPA crew 3413.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-Lane cutoff fill .tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-Lane cutoff fill .tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-Mountain type 4-8-2.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-Mountain type 4-8-2.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-Omaha Shop ext air 1907.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-Omaha Shop ext air 1907.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-Omaha stores dept 1912.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-Omaha stores dept 1912.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-PFE Las Vegas 1931.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-PFE Las Vegas 1931.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-PFE cars ice dock.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-PFE cars ice dock.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-Papio trestle construction.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-Papio trestle construction.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-SPLAandSL num504.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-SPLAandSL num504.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-Streamliner 3 locos.Tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-Streamliner 3 locos.Tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-UP SP office KC.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-UP SP office KC.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-X1729 No 4038 near Truckee.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-X1729 No 4038 near Truckee.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-X2313 Excursion Midlake.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-X2313 Excursion Midlake.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-Zoin Lodge opening 04-15-25.tif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-Zoin Lodge opening 04-15-25.tif.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-ag train Pilot Rock OWRN.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-ag train Pilot Rock OWRN.jpg.jpg -------------------------------------------------------------------------------- /content/leap/images/UP/LARGE-lane cutoff.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/UP/LARGE-lane cutoff.jpg.jpg -------------------------------------------------------------------------------- /content/leap/images/domStates/desktopHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/domStates/desktopHover.png -------------------------------------------------------------------------------- /content/leap/images/domStates/desktopMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/domStates/desktopMode.png -------------------------------------------------------------------------------- /content/leap/images/domStates/recordingHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/domStates/recordingHover.png -------------------------------------------------------------------------------- /content/leap/images/domStates/riftHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/domStates/riftHover.png -------------------------------------------------------------------------------- /content/leap/images/domStates/riftMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/domStates/riftMode.png -------------------------------------------------------------------------------- /content/leap/images/foto-viewer-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/foto-viewer-dark.png -------------------------------------------------------------------------------- /content/leap/images/foto-viewer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/foto-viewer.jpg -------------------------------------------------------------------------------- /content/leap/images/intro/auto-play-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/auto-play-hover.png -------------------------------------------------------------------------------- /content/leap/images/intro/auto-play-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/auto-play-ok.png -------------------------------------------------------------------------------- /content/leap/images/intro/auto-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/auto-play.png -------------------------------------------------------------------------------- /content/leap/images/intro/desktop-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/desktop-hover.png -------------------------------------------------------------------------------- /content/leap/images/intro/desktop-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/desktop-ok.png -------------------------------------------------------------------------------- /content/leap/images/intro/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/desktop.png -------------------------------------------------------------------------------- /content/leap/images/intro/hmd-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/hmd-hover.png -------------------------------------------------------------------------------- /content/leap/images/intro/hmd-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/hmd-ok.png -------------------------------------------------------------------------------- /content/leap/images/intro/hmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/hmd.png -------------------------------------------------------------------------------- /content/leap/images/intro/plug-in-leap-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/plug-in-leap-hover.png -------------------------------------------------------------------------------- /content/leap/images/intro/plug-in-leap-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/plug-in-leap-ok.png -------------------------------------------------------------------------------- /content/leap/images/intro/plug-in-leap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/intro/plug-in-leap.png -------------------------------------------------------------------------------- /content/leap/images/landscapes/landscape1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/landscapes/landscape1.jpg -------------------------------------------------------------------------------- /content/leap/images/landscapes/landscape2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/landscapes/landscape2.jpg -------------------------------------------------------------------------------- /content/leap/images/landscapes/landscape3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/landscapes/landscape3.jpg -------------------------------------------------------------------------------- /content/leap/images/landscapes/landscape4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/landscapes/landscape4.jpg -------------------------------------------------------------------------------- /content/leap/images/trains/3d-abstract_hdwallpaper_steam-engine_50474.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/trains/3d-abstract_hdwallpaper_steam-engine_50474.jpg -------------------------------------------------------------------------------- /content/leap/images/trains/52_8134_Hoentrop_2012-09-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/trains/52_8134_Hoentrop_2012-09-16.jpg -------------------------------------------------------------------------------- /content/leap/images/trains/steam-engine-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/trains/steam-engine-4.png -------------------------------------------------------------------------------- /content/leap/images/trains/steam-engine-wallpaper-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/images/trains/steam-engine-wallpaper-9.jpg -------------------------------------------------------------------------------- /content/leap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/index.html -------------------------------------------------------------------------------- /content/leap/javascript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/app.js -------------------------------------------------------------------------------- /content/leap/javascript/directives/scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/directives/scene.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/droid_sans_bold.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/droid_sans_bold.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/droid_sans_regular.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/droid_sans_regular.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/droid_serif_bold.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/droid_serif_bold.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/droid_serif_regular.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/droid_serif_regular.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/gentilis_bold.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/gentilis_bold.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/gentilis_regular.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/gentilis_regular.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/helvetiker_bold.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/helvetiker_bold.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/helvetiker_regular.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/helvetiker_regular.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/optimer_bold.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/optimer_bold.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/fonts/optimer_regular.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/fonts/optimer_regular.typeface.js -------------------------------------------------------------------------------- /content/leap/javascript/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/interface.js -------------------------------------------------------------------------------- /content/leap/javascript/interface.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/interface.map -------------------------------------------------------------------------------- /content/leap/javascript/lib/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/Arrows.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/Dock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/Dock.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/HandArrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/HandArrow.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/InteractablePlane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/InteractablePlane.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/LeapDataPlotter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/LeapDataPlotter.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/OrbitControls.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/PlaneStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/PlaneStack.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/THREEDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/THREEDialog.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/TextMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/TextMaker.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/VRClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/VRClient.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/VRControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/VRControls.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/VRCursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/VRCursor.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/VREffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/VREffect.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/leap.bone-hand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/leap.bone-hand.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/leap.pinchEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/leap.pinchEvent.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/leap.proximity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/leap.proximity.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/leap.singleHandRecognizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/leap.singleHandRecognizer.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/leap.transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/leap.transform.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/leap.twoHandRecognizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/leap.twoHandRecognizer.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/three.MeshCorners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/three.MeshCorners.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/three.PlaneIntersection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/three.PlaneIntersection.js -------------------------------------------------------------------------------- /content/leap/javascript/lib/three.grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/lib/three.grid.js -------------------------------------------------------------------------------- /content/leap/javascript/unused/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/unused/README -------------------------------------------------------------------------------- /content/leap/javascript/unused/leap-0.6.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/unused/leap-0.6.3.js -------------------------------------------------------------------------------- /content/leap/javascript/unused/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/javascript/unused/three.js -------------------------------------------------------------------------------- /content/leap/meshes/MozillaVR-3D-arrow-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/meshes/MozillaVR-3D-arrow-01.json -------------------------------------------------------------------------------- /content/leap/recordings/remove-photos-110fps.json (1).lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/remove-photos-110fps.json (1).lz -------------------------------------------------------------------------------- /content/leap/recordings/remove-photos-28fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/remove-photos-28fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/remove-photos-3-110fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/remove-photos-3-110fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/remove-photos-3-27fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/remove-photos-3-27fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/remove-photos-3-53fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/remove-photos-3-53fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/remove-photos-57fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/remove-photos-57fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/spread-photos-110fps.json (1).lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/spread-photos-110fps.json (1).lz -------------------------------------------------------------------------------- /content/leap/recordings/spread-photos-28fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/spread-photos-28fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/spread-photos-55fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/spread-photos-55fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/stack-images-100fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/stack-images-100fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/stack-images-26fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/stack-images-26fps.json.lz -------------------------------------------------------------------------------- /content/leap/recordings/stack-images-51fps.json.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/recordings/stack-images-51fps.json.lz -------------------------------------------------------------------------------- /content/leap/stylesheets/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/stylesheets/index.less -------------------------------------------------------------------------------- /content/leap/testProximity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/content/leap/testProximity.html -------------------------------------------------------------------------------- /css/fira.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/css/fira.css -------------------------------------------------------------------------------- /css/hiro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/css/hiro.css -------------------------------------------------------------------------------- /css/instructions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/css/instructions.css -------------------------------------------------------------------------------- /d23/hud/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/d23/hud/index.json -------------------------------------------------------------------------------- /d23/hud/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/d23/hud/index.png -------------------------------------------------------------------------------- /d23/title/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/d23/title/index.json -------------------------------------------------------------------------------- /d23/title/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/d23/title/index.png -------------------------------------------------------------------------------- /fonts/montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/fonts/montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /fonts/montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/fonts/montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /fonts/montserrat/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/fonts/montserrat/OFL.txt -------------------------------------------------------------------------------- /fonts/montserrat/montserrat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/fonts/montserrat/montserrat.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/alpha-2pxblack-leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/alpha-2pxblack-leftright.png -------------------------------------------------------------------------------- /images/instructions/couchknights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/instructions/couchknights.png -------------------------------------------------------------------------------- /images/instructions/nickycase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/instructions/nickycase.png -------------------------------------------------------------------------------- /images/instructions/oculusrex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/instructions/oculusrex.png -------------------------------------------------------------------------------- /images/instructions/polarsea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/instructions/polarsea.png -------------------------------------------------------------------------------- /images/instructions/progressbar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/instructions/progressbar-1.png -------------------------------------------------------------------------------- /images/instructions/rainbowmembrane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/instructions/rainbowmembrane.png -------------------------------------------------------------------------------- /images/instructions/sechelt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/instructions/sechelt.png -------------------------------------------------------------------------------- /images/instructions/xibalba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/instructions/xibalba.png -------------------------------------------------------------------------------- /images/mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/mozilla.png -------------------------------------------------------------------------------- /images/transition/alpha-2pxblack-topbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/transition/alpha-2pxblack-topbottom.png -------------------------------------------------------------------------------- /images/transition/eyelid-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/images/transition/eyelid-gradient.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/index.html -------------------------------------------------------------------------------- /js/lib/dom2three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/lib/dom2three.js -------------------------------------------------------------------------------- /js/lib/sketch2three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/lib/sketch2three.js -------------------------------------------------------------------------------- /js/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/lib/utils.js -------------------------------------------------------------------------------- /js/lib/vruikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/lib/vruikit.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/main.js -------------------------------------------------------------------------------- /js/vendor/DeviceOrientationControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/DeviceOrientationControls.js -------------------------------------------------------------------------------- /js/vendor/evt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/evt.js -------------------------------------------------------------------------------- /js/vendor/gamepadmapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/gamepadmapping.js -------------------------------------------------------------------------------- /js/vendor/mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/mappings.json -------------------------------------------------------------------------------- /js/vendor/three/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/three/OrbitControls.js -------------------------------------------------------------------------------- /js/vendor/three/Projector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/three/Projector.js -------------------------------------------------------------------------------- /js/vendor/three/StereoEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/three/StereoEffect.js -------------------------------------------------------------------------------- /js/vendor/three/VRControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/three/VRControls.js -------------------------------------------------------------------------------- /js/vendor/three/VREffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/three/VREffect.js -------------------------------------------------------------------------------- /js/vendor/three/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/three/three.min.js -------------------------------------------------------------------------------- /js/vendor/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vendor/tween.min.js -------------------------------------------------------------------------------- /js/vrclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrclient.js -------------------------------------------------------------------------------- /js/vrcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrcursor.js -------------------------------------------------------------------------------- /js/vrhud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrhud.js -------------------------------------------------------------------------------- /js/vrinstructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrinstructions.js -------------------------------------------------------------------------------- /js/vrloading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrloading.js -------------------------------------------------------------------------------- /js/vrmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrmanager.js -------------------------------------------------------------------------------- /js/vrsound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrsound.js -------------------------------------------------------------------------------- /js/vrtab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrtab.js -------------------------------------------------------------------------------- /js/vrtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrtitle.js -------------------------------------------------------------------------------- /js/vrtransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrtransition.js -------------------------------------------------------------------------------- /js/vrui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrui.js -------------------------------------------------------------------------------- /js/vrutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/vrutils.js -------------------------------------------------------------------------------- /js/xboxpad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/js/xboxpad.js -------------------------------------------------------------------------------- /json/favorites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/json/favorites.json -------------------------------------------------------------------------------- /landing/images/hiro-logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/landing/images/hiro-logo-1.svg -------------------------------------------------------------------------------- /landing/images/mozvr-logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/landing/images/mozvr-logo-1.svg -------------------------------------------------------------------------------- /landing/images/mozvr-logo-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/landing/images/mozvr-logo-2.svg -------------------------------------------------------------------------------- /manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/manifest.webapp -------------------------------------------------------------------------------- /models/test-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/models/test-4.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/package.json -------------------------------------------------------------------------------- /s23/images/fav-couchknights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/fav-couchknights.png -------------------------------------------------------------------------------- /s23/images/fav-nickycase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/fav-nickycase.png -------------------------------------------------------------------------------- /s23/images/fav-polarsea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/fav-polarsea.png -------------------------------------------------------------------------------- /s23/images/fav-rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/fav-rainbow.png -------------------------------------------------------------------------------- /s23/images/fav-rex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/fav-rex.png -------------------------------------------------------------------------------- /s23/images/fav-sechelt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/fav-sechelt.png -------------------------------------------------------------------------------- /s23/images/fav-xibalba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/fav-xibalba.png -------------------------------------------------------------------------------- /s23/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/frame.png -------------------------------------------------------------------------------- /s23/images/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/images/index.json -------------------------------------------------------------------------------- /s23/sketch/hiro.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/s23/sketch/hiro.sketch -------------------------------------------------------------------------------- /sounds/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MozillaReality/hiro/HEAD/sounds/click.mp3 --------------------------------------------------------------------------------