├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── ATTRIBUTION.txt ├── LICENSE ├── README.md ├── README.template.md ├── dist ├── .gitkeep ├── altspace.js └── altspace.min.js ├── doc ├── aframe │ ├── fonts │ │ ├── OpenSans-Bold-webfont.eot │ │ ├── OpenSans-Bold-webfont.svg │ │ ├── OpenSans-Bold-webfont.woff │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ ├── OpenSans-Italic-webfont.eot │ │ ├── OpenSans-Italic-webfont.svg │ │ ├── OpenSans-Italic-webfont.woff │ │ ├── OpenSans-Light-webfont.eot │ │ ├── OpenSans-Light-webfont.svg │ │ ├── OpenSans-Light-webfont.woff │ │ ├── OpenSans-LightItalic-webfont.eot │ │ ├── OpenSans-LightItalic-webfont.svg │ │ ├── OpenSans-LightItalic-webfont.woff │ │ ├── OpenSans-Regular-webfont.eot │ │ ├── OpenSans-Regular-webfont.svg │ │ ├── OpenSans-Regular-webfont.woff │ │ ├── OpenSans-Semibold-webfont.eot │ │ ├── OpenSans-Semibold-webfont.svg │ │ ├── OpenSans-Semibold-webfont.ttf │ │ ├── OpenSans-Semibold-webfont.woff │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ └── OpenSans-SemiboldItalic-webfont.woff │ ├── index.html │ ├── module-altspace_components.AFrameComponent.html │ ├── module-altspace_components.AFrameSystem.html │ ├── module-altspace_components.NativeComponent.html │ ├── module-altspace_components.altspace-cursor-collider.html │ ├── module-altspace_components.altspace-tracked-controls.html │ ├── module-altspace_components.altspace.html │ ├── module-altspace_components.collapse-model.html │ ├── module-altspace_components.html │ ├── module-altspace_components.instantiator.html │ ├── module-altspace_components.n-billboard.html │ ├── module-altspace_components.n-box-collider.html │ ├── module-altspace_components.n-capsule-collider.html │ ├── module-altspace_components.n-cockpit-parent.html │ ├── module-altspace_components.n-collider.html │ ├── module-altspace_components.n-container.html │ ├── module-altspace_components.n-gltf.html │ ├── module-altspace_components.n-layout-browser.html │ ├── module-altspace_components.n-mesh-collider.html │ ├── module-altspace_components.n-object.html │ ├── module-altspace_components.n-portal.html │ ├── module-altspace_components.n-skeleton-parent.html │ ├── module-altspace_components.n-sound.html │ ├── module-altspace_components.n-spawner.html │ ├── module-altspace_components.n-sphere-collider.html │ ├── module-altspace_components.n-text.html │ ├── module-altspace_components.one-per-user.html │ ├── module-altspace_components.sync-color.html │ ├── module-altspace_components.sync-n-skeleton-parent.html │ ├── module-altspace_components.sync-n-sound.html │ ├── module-altspace_components.sync-system.html │ ├── module-altspace_components.sync-transform.html │ ├── module-altspace_components.sync.html │ ├── module-altspace_components.wire.html │ ├── module-altspace_resources.html │ ├── scripts │ │ ├── linenumber.js │ │ └── prettify │ │ │ ├── Apache-License-2.0.txt │ │ │ ├── lang-css.js │ │ │ └── prettify.js │ └── styles │ │ ├── jsdoc-default.css │ │ ├── prettify-jsdoc.css │ │ └── prettify-tomorrow.css ├── index.html └── js │ ├── THREE.Object3D.html │ ├── THREE.Scene.html │ ├── THREE.html │ ├── Window.html │ ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.svg │ ├── OpenSans-Semibold-webfont.ttf │ ├── OpenSans-Semibold-webfont.woff │ ├── OpenSans-SemiboldItalic-webfont.eot │ ├── OpenSans-SemiboldItalic-webfont.svg │ ├── OpenSans-SemiboldItalic-webfont.ttf │ └── OpenSans-SemiboldItalic-webfont.woff │ ├── index.html │ ├── module-altspace-AltRenderer.html │ ├── module-altspace-Document.html │ ├── module-altspace-Enclosure.html │ ├── module-altspace-Gamepad.html │ ├── module-altspace-GamepadButton.html │ ├── module-altspace-Popup.html │ ├── module-altspace-TrackingJoint.html │ ├── module-altspace-TrackingSkeleton.html │ ├── module-altspace-User.html │ ├── module-altspace.html │ ├── module-altspace_utilities.Simulation.html │ ├── module-altspace_utilities_behaviors.Behavior.html │ ├── module-altspace_utilities_behaviors.Bob.html │ ├── module-altspace_utilities_behaviors.ButtonStateStyle.html │ ├── module-altspace_utilities_behaviors.Drag.html │ ├── module-altspace_utilities_behaviors.GamepadControls.html │ ├── module-altspace_utilities_behaviors.HoverColor.html │ ├── module-altspace_utilities_behaviors.HoverScale.html │ ├── module-altspace_utilities_behaviors.JointCollisionEvents.html │ ├── module-altspace_utilities_behaviors.Layout.html │ ├── module-altspace_utilities_behaviors.Object3DSync.html │ ├── module-altspace_utilities_behaviors.SceneSync.html │ ├── module-altspace_utilities_behaviors.Spin.html │ ├── module-altspace_utilities_behaviors.SteamVRInput.html │ ├── module-altspace_utilities_behaviors.SteamVRTrackedObject.html │ ├── module-altspace_utilities_behaviors.TouchpadRotate.html │ ├── module-altspace_utilities_behaviors.html │ ├── module-altspace_utilities_codePen.html │ ├── module-altspace_utilities_shims.OBJMTLLoader.html │ ├── module-altspace_utilities_shims.html │ ├── module-altspace_utilities_shims_bubbling.html │ ├── module-altspace_utilities_shims_cursor.html │ ├── module-altspace_utilities_sync-Connection.html │ ├── module-altspace_utilities_sync.html │ ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js │ └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── examples ├── README.md ├── aframe │ ├── architecture.html │ ├── armory │ │ ├── index.html │ │ └── models │ │ │ ├── armor.mtl │ │ │ ├── armor.obj │ │ │ ├── armor_default_color.jpg │ │ │ ├── helmet.jpg │ │ │ ├── helmet.mtl │ │ │ ├── helmet.obj │ │ │ └── licenses.txt │ ├── basic.html │ ├── custom-component.html │ ├── dialog │ │ ├── index.html │ │ ├── navigate.js │ │ └── resources │ │ │ ├── btn-CLICK-HERE.png │ │ │ ├── btn-NEW-NOTIFICATION.png │ │ │ ├── close-hover.png │ │ │ ├── icon-close.png │ │ │ └── sm-notification-MACH.png │ ├── fireball │ │ ├── index.html │ │ └── main.js │ ├── introduction │ │ ├── gallery.html │ │ ├── gallery.js │ │ ├── images │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── index.html │ │ ├── poster.html │ │ └── poster.js │ ├── model-repos.html │ ├── moon.html │ ├── native-gltf.html │ ├── native-layout-browsers.html │ ├── native-parents.html │ ├── native-portals.html │ ├── native-sound.html │ ├── native.html │ ├── resources │ │ ├── big-buck-bunny-intro.wav │ │ ├── moon.jpg │ │ └── stars.png │ ├── threejs.html │ └── wire.html ├── index.html ├── js │ ├── adding-cubes.html │ ├── aframe.html │ ├── basic-cube.html │ ├── bubbling.html │ ├── chess.html │ ├── circle-button.html │ ├── drag-events.html │ ├── gamepad-cube.html │ ├── hats.html │ ├── hello-hands.html │ ├── hello-world.html │ ├── images │ │ ├── MarkJayBeeFractal-InternalActivity.jpg │ │ ├── altspace-logo.png │ │ └── click-me.jpg │ ├── joint-collision-push.html │ ├── joint-collision-touch.html │ ├── libs │ │ ├── ColladaLoader.js │ │ ├── GLTFLoader.js │ │ ├── MTLLoader.js │ │ ├── OBJLoader.js │ │ ├── OrbitControls.js │ │ ├── helvetiker_regular.typeface.json │ │ └── stats.min.js │ ├── living-room │ │ ├── index.html │ │ ├── living-room.es6.js │ │ ├── living-room.js │ │ └── rollup.conf.js │ ├── models │ │ ├── chess │ │ │ ├── .gitignore │ │ │ ├── 434343.png │ │ │ ├── bishop.jpg │ │ │ ├── bishop.mtl │ │ │ ├── bishop.obj.tt │ │ │ ├── bishop.obj.txt │ │ │ ├── board.jpg │ │ │ ├── board.mtl │ │ │ ├── board.obj.txt │ │ │ ├── king.jpg │ │ │ ├── king.mtl │ │ │ ├── king.obj.txt │ │ │ ├── knight.jpg │ │ │ ├── knight.mtl │ │ │ ├── knight.obj.txt │ │ │ ├── pawn.jpg │ │ │ ├── pawn.mtl │ │ │ ├── pawn.obj.txt │ │ │ ├── queen.fbx │ │ │ ├── queen.jpg │ │ │ ├── queen.mtl │ │ │ ├── queen.obj.txt │ │ │ ├── queen.tga │ │ │ ├── rook.jpg │ │ │ ├── rook.mtl │ │ │ └── rook.obj.txt │ │ ├── cube │ │ │ ├── Thumbs.db │ │ │ ├── altspace-logo.jpg │ │ │ ├── cube-colored-faces.mtl │ │ │ ├── cube-colored-faces.obj │ │ │ ├── cube.mtl │ │ │ └── cube.obj │ │ ├── dice │ │ │ ├── d00_DIFF.jpg │ │ │ ├── d00_high.mtl │ │ │ ├── d00_high.obj │ │ │ ├── d10_DIFF.jpg │ │ │ ├── d10_high.mtl │ │ │ ├── d10_high.obj │ │ │ ├── d12_DIFF.jpg │ │ │ ├── d12_high.mtl │ │ │ ├── d12_high.obj │ │ │ ├── d20_DIFF.jpg │ │ │ ├── d20_high.mtl │ │ │ ├── d20_high.obj │ │ │ ├── d4_DIFF.jpg │ │ │ ├── d4_high.mtl │ │ │ ├── d4_high.obj │ │ │ ├── d6_DIFF.jpg │ │ │ ├── d6_high.mtl │ │ │ ├── d6_high.obj │ │ │ ├── d8_DIFF.jpg │ │ │ ├── d8_high.mtl │ │ │ └── d8_high.obj │ │ ├── hats │ │ │ ├── Helmut.jpg │ │ │ ├── LavaHelmet.mtl │ │ │ ├── LavaHelmet.obj │ │ │ ├── hardhat.mtl │ │ │ ├── hardhat.obj │ │ │ ├── hardhat.png │ │ │ ├── hat_2_texture_wicker.jpg │ │ │ ├── hat_texture.jpg │ │ │ ├── redhat.mtl │ │ │ ├── redhat.obj │ │ │ ├── strawhat.mtl │ │ │ ├── strawhat.obj │ │ │ ├── tophat.jpg │ │ │ ├── tophat.mtl │ │ │ ├── tophat.obj │ │ │ ├── wizardhat.mtl │ │ │ ├── wizardhat.obj │ │ │ └── wizardhat.png │ │ ├── living-room │ │ │ ├── bench.dae │ │ │ ├── bench.png │ │ │ ├── chair.dae │ │ │ ├── chair.png │ │ │ ├── plaque.dae │ │ │ ├── plaque.png │ │ │ ├── shelves.dae │ │ │ ├── shelves.png │ │ │ ├── stool.dae │ │ │ ├── stool.png │ │ │ ├── table.dae │ │ │ └── table.png │ │ ├── solar-system │ │ │ ├── earth.mtl │ │ │ ├── earth.mtl.orig │ │ │ ├── earth.obj │ │ │ ├── earthWClouds.jpg │ │ │ ├── earth_normal_map.jpg │ │ │ ├── jupiter.jpg │ │ │ ├── jupiter.mtl │ │ │ ├── jupiter.obj │ │ │ ├── mars.jpg │ │ │ ├── mars.mtl │ │ │ ├── mars.obj │ │ │ ├── mercury.jpg │ │ │ ├── mercury.mtl │ │ │ ├── mercury.obj │ │ │ ├── moon.jpg │ │ │ ├── moon.mtl │ │ │ ├── moon.obj │ │ │ ├── neptune.jpg │ │ │ ├── neptune.mtl │ │ │ ├── neptune.obj │ │ │ ├── pluto.mtl │ │ │ ├── pluto.obj │ │ │ ├── pluto_fictional.jpg │ │ │ ├── saturn.jpg │ │ │ ├── saturn.mtl │ │ │ ├── saturn.obj │ │ │ ├── saturn_ring_alpha.png │ │ │ ├── sun.jpg │ │ │ ├── sun.mtl │ │ │ ├── sun.obj │ │ │ ├── uranus.jpg │ │ │ ├── uranus.mtl │ │ │ ├── uranus.obj │ │ │ ├── venus.mtl │ │ │ ├── venus.obj │ │ │ └── venus_surface.jpg │ │ ├── symbols │ │ │ ├── color-texture.jpg │ │ │ ├── fa-arrow-left.mtl │ │ │ ├── fa-arrow-left.obj │ │ │ ├── fa-arrow-up.mtl │ │ │ ├── fa-arrow-up.obj │ │ │ ├── fa-arrows-h.mtl │ │ │ ├── fa-arrows-h.obj │ │ │ ├── fa-arrows.mtl │ │ │ ├── fa-arrows.obj │ │ │ ├── fa-ban.mtl │ │ │ ├── fa-ban.obj │ │ │ ├── fa-bars.mtl │ │ │ ├── fa-bars.obj │ │ │ ├── fa-bullseye.mtl │ │ │ ├── fa-bullseye.obj │ │ │ ├── fa-check.mtl │ │ │ ├── fa-check.obj │ │ │ ├── fa-close.mtl │ │ │ ├── fa-close.obj │ │ │ ├── fa-cloud-download.mtl │ │ │ ├── fa-cloud-download.obj │ │ │ ├── fa-cloud-upload.mtl │ │ │ ├── fa-cloud-upload.obj │ │ │ ├── fa-cogs.mtl │ │ │ ├── fa-cogs.obj │ │ │ ├── fa-compress.mtl │ │ │ ├── fa-compress.obj │ │ │ ├── fa-ellipsis-v.mtl │ │ │ ├── fa-ellipsis-v.obj │ │ │ ├── fa-expand.mtl │ │ │ ├── fa-expand.obj │ │ │ ├── fa-font.mtl │ │ │ ├── fa-font.obj │ │ │ ├── fa-heart.mtl │ │ │ ├── fa-heart.obj │ │ │ ├── fa-minus.mtl │ │ │ ├── fa-minus.obj │ │ │ ├── fa-paperclip.mtl │ │ │ ├── fa-paperclip.obj │ │ │ ├── fa-pencil.mtl │ │ │ ├── fa-pencil.obj │ │ │ ├── fa-plus.mtl │ │ │ ├── fa-plus.obj │ │ │ ├── fa-question-circle.mtl │ │ │ ├── fa-question-circle.obj │ │ │ ├── fa-refresh.mtl │ │ │ ├── fa-refresh.obj │ │ │ ├── fa-rotate-left.mtl │ │ │ ├── fa-rotate-left.obj │ │ │ ├── fa-rotate-right.mtl │ │ │ ├── fa-rotate-right.obj │ │ │ ├── fa-rss.mtl │ │ │ ├── fa-rss.obj │ │ │ ├── fa-save.mtl │ │ │ ├── fa-save.obj │ │ │ ├── fa-search.mtl │ │ │ ├── fa-search.obj │ │ │ ├── fa-send.mtl │ │ │ ├── fa-send.obj │ │ │ ├── fa-share.mtl │ │ │ ├── fa-share.obj │ │ │ ├── fa-spinner.mtl │ │ │ ├── fa-spinner.obj │ │ │ ├── fa-star-o.mtl │ │ │ ├── fa-star-o.obj │ │ │ ├── fa-star.mtl │ │ │ └── fa-star.obj │ │ └── test │ │ │ ├── pPyramidShape1_color_1.jpg │ │ │ ├── test.mb │ │ │ ├── test.mtl │ │ │ └── test.obj │ ├── popup │ │ ├── favicon.png │ │ ├── index.html │ │ └── popup.html │ ├── sky-sphere.html │ ├── solar-system.html │ ├── spinning-cube.html │ ├── steamvr │ │ ├── README.md │ │ ├── bundle.js │ │ ├── index.html │ │ ├── rollup.conf.js │ │ └── src │ │ │ ├── behaviors │ │ │ └── brush.js │ │ │ └── index.js │ ├── stonehenge │ │ ├── README.md │ │ ├── Stone_19_UV_H_CM_1.jpg │ │ ├── buffer_combined.bin │ │ ├── index.html │ │ ├── lightmap.jpg │ │ ├── lightmap.xcf │ │ ├── screenshot.png │ │ ├── stonehenge.blend │ │ └── stonehenge.gltf │ ├── synced-dice.html │ ├── telekinetic-cubes │ │ ├── Grab.js │ │ ├── PushPull.js │ │ ├── cube.js │ │ ├── index.html │ │ ├── main.js │ │ └── spheres.js │ ├── touchpad-cube.html │ └── user-api.html ├── resources │ └── click-me.jpg └── tests │ ├── aframe-cursor-events.html │ ├── aframe-fullspace.html │ ├── aframe-mesh-collider.html │ ├── aframe-meter-scale.html │ ├── aframe-pixel-scale.html │ ├── aframe-sync-color.html │ ├── aframe-sync.html │ ├── aframe-vertical-align │ ├── index.html │ ├── models │ │ ├── crate │ │ │ ├── README.md │ │ │ ├── crate.jpg │ │ │ ├── crate.mtl │ │ │ └── crate.obj │ │ ├── tree1 │ │ │ ├── tex │ │ │ │ └── shadow-circle.png │ │ │ └── tree1.dae │ │ └── tree2 │ │ │ ├── tex │ │ │ └── shadow-circle.png │ │ │ └── tree2.dae │ └── peach-gradient.jpg │ ├── behaviors.html │ ├── canvas-update.html │ ├── cloning.html │ ├── deterministic-render.html │ ├── disable-hitbox-collider.html │ ├── document.html │ ├── fullspace │ ├── index.html │ └── meshHelpers.js │ ├── gamepad-and-focus.html │ ├── geo-stress-test │ ├── buffer_combined.bin │ ├── index.html │ ├── lightmap.jpg │ ├── model.blend │ ├── model.gltf │ └── world.jpg │ ├── index.html │ ├── material-side.html │ ├── multimaterial-fallback-test │ ├── index.html │ └── resources │ │ ├── multimaterial.blend │ │ ├── multimaterial.dae │ │ └── test.jpg │ ├── renderer-tests.html │ ├── resources │ ├── ConeImg.jpg │ ├── CubeImg.jpg │ ├── CylImg.jpg │ ├── DoorImg.jpg │ ├── UV_Grid_Sm.jpg │ ├── test.blend │ ├── test.dae │ ├── test.mtl │ └── test.obj │ ├── scene-removal.html │ ├── style.css │ ├── tempmark.html │ ├── texture-batching.html │ ├── texture-repeat-offset.html │ ├── texture-reuse.html │ ├── transparency-stress.html │ ├── transparency.html │ ├── videotexture │ └── index.html │ └── visibility.html ├── lib ├── Please.min.js ├── firebase.min.js └── url.min.js ├── native.md ├── package.json ├── scripts ├── build.js └── deploy.js ├── src ├── README.md ├── components │ ├── AFrameComponent.js │ ├── AltspaceComponent.js │ ├── AltspaceCursorCollider.js │ ├── AltspaceTrackedControls.js │ ├── CollapseModel.js │ ├── NColliders.js │ ├── NContainer.js │ ├── NGLTF.js │ ├── NLayoutBrowser.js │ ├── NPortal.js │ ├── NSmallComponents.js │ ├── NSound.js │ ├── NText.js │ ├── NativeComponent.js │ ├── README.md │ ├── SyncColor.js │ ├── SyncComponent.js │ ├── SyncSystem.js │ ├── index.js │ ├── instantiator.js │ ├── native-resources.js │ ├── one-per-user.js │ ├── sync-n-skeleton-parent.js │ ├── sync-n-sound.js │ ├── sync-transform.js │ ├── utilities.js │ ├── visible.js │ └── wire.js ├── core │ ├── AltRenderer.js │ ├── Cursor.js │ ├── Debug.js │ ├── Document.js │ ├── Enclosure.js │ ├── Flags.js │ ├── Gamepad.js │ ├── Popup.js │ ├── Skeleton.js │ ├── Space.js │ ├── Touchpad.js │ └── User.js ├── index.js └── utilities │ ├── behaviors │ ├── Behavior.js │ ├── Bob.js │ ├── ButtonStateStyle.js │ ├── Drag.js │ ├── GamepadControls.js │ ├── HoverColor.js │ ├── HoverScale.js │ ├── JointCollisionEvents.js │ ├── Layout.js │ ├── Object3DSync.js │ ├── SceneSync.js │ ├── Spin.js │ ├── SteamVRInput.js │ ├── SteamVRTrackedObject.js │ ├── TouchpadRotate.js │ └── index.js │ ├── codepen.js │ ├── index.js │ ├── multiloader.js │ ├── shims │ ├── OBJMTLLoader.js │ ├── behaviors.js │ ├── bubbling.js │ ├── cursor.js │ └── index.js │ ├── simulation.js │ └── sync.js └── tests ├── index.html ├── lib ├── chai-as-promised.js ├── chai.js ├── mocha.css └── mocha.js └── src ├── behaviors.es6.js ├── behaviors.js ├── layout.es6.js ├── layout.js ├── main.js ├── sync.es6.js └── sync.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/.travis.yml -------------------------------------------------------------------------------- /ATTRIBUTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/ATTRIBUTION.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/README.md -------------------------------------------------------------------------------- /README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/README.template.md -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | `npm run dist` to generate browser files. 2 | -------------------------------------------------------------------------------- /dist/altspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/dist/altspace.js -------------------------------------------------------------------------------- /dist/altspace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/dist/altspace.min.js -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Semibold-webfont.svg -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-SemiboldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-SemiboldItalic-webfont.svg -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /doc/aframe/fonts/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/fonts/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /doc/aframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/index.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.AFrameComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.AFrameComponent.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.AFrameSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.AFrameSystem.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.NativeComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.NativeComponent.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.altspace-cursor-collider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.altspace-cursor-collider.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.altspace-tracked-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.altspace-tracked-controls.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.altspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.altspace.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.collapse-model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.collapse-model.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.instantiator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.instantiator.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-billboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-billboard.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-box-collider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-box-collider.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-capsule-collider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-capsule-collider.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-cockpit-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-cockpit-parent.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-collider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-collider.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-container.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-gltf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-gltf.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-layout-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-layout-browser.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-mesh-collider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-mesh-collider.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-object.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-portal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-portal.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-skeleton-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-skeleton-parent.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-sound.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-spawner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-spawner.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-sphere-collider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-sphere-collider.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.n-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.n-text.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.one-per-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.one-per-user.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.sync-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.sync-color.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.sync-n-skeleton-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.sync-n-skeleton-parent.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.sync-n-sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.sync-n-sound.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.sync-system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.sync-system.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.sync-transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.sync-transform.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.sync.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_components.wire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_components.wire.html -------------------------------------------------------------------------------- /doc/aframe/module-altspace_resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/module-altspace_resources.html -------------------------------------------------------------------------------- /doc/aframe/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/scripts/linenumber.js -------------------------------------------------------------------------------- /doc/aframe/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /doc/aframe/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /doc/aframe/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /doc/aframe/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/styles/jsdoc-default.css -------------------------------------------------------------------------------- /doc/aframe/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /doc/aframe/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/aframe/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/js/THREE.Object3D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/THREE.Object3D.html -------------------------------------------------------------------------------- /doc/js/THREE.Scene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/THREE.Scene.html -------------------------------------------------------------------------------- /doc/js/THREE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/THREE.html -------------------------------------------------------------------------------- /doc/js/Window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/Window.html -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Semibold-webfont.svg -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-SemiboldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-SemiboldItalic-webfont.svg -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /doc/js/fonts/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/fonts/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /doc/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/index.html -------------------------------------------------------------------------------- /doc/js/module-altspace-AltRenderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-AltRenderer.html -------------------------------------------------------------------------------- /doc/js/module-altspace-Document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-Document.html -------------------------------------------------------------------------------- /doc/js/module-altspace-Enclosure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-Enclosure.html -------------------------------------------------------------------------------- /doc/js/module-altspace-Gamepad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-Gamepad.html -------------------------------------------------------------------------------- /doc/js/module-altspace-GamepadButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-GamepadButton.html -------------------------------------------------------------------------------- /doc/js/module-altspace-Popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-Popup.html -------------------------------------------------------------------------------- /doc/js/module-altspace-TrackingJoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-TrackingJoint.html -------------------------------------------------------------------------------- /doc/js/module-altspace-TrackingSkeleton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-TrackingSkeleton.html -------------------------------------------------------------------------------- /doc/js/module-altspace-User.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace-User.html -------------------------------------------------------------------------------- /doc/js/module-altspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities.Simulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities.Simulation.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.Behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.Behavior.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.Bob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.Bob.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.ButtonStateStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.ButtonStateStyle.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.Drag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.Drag.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.GamepadControls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.GamepadControls.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.HoverColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.HoverColor.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.HoverScale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.HoverScale.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.JointCollisionEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.JointCollisionEvents.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.Layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.Layout.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.Object3DSync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.Object3DSync.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.SceneSync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.SceneSync.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.Spin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.Spin.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.SteamVRInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.SteamVRInput.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.SteamVRTrackedObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.SteamVRTrackedObject.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.TouchpadRotate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.TouchpadRotate.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_behaviors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_behaviors.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_codePen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_codePen.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_shims.OBJMTLLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_shims.OBJMTLLoader.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_shims.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_shims.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_shims_bubbling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_shims_bubbling.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_shims_cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_shims_cursor.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_sync-Connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_sync-Connection.html -------------------------------------------------------------------------------- /doc/js/module-altspace_utilities_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/module-altspace_utilities_sync.html -------------------------------------------------------------------------------- /doc/js/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/scripts/linenumber.js -------------------------------------------------------------------------------- /doc/js/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /doc/js/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /doc/js/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /doc/js/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/styles/jsdoc-default.css -------------------------------------------------------------------------------- /doc/js/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /doc/js/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/doc/js/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/aframe/architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/architecture.html -------------------------------------------------------------------------------- /examples/aframe/armory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/armory/index.html -------------------------------------------------------------------------------- /examples/aframe/armory/models/armor.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/armory/models/armor.mtl -------------------------------------------------------------------------------- /examples/aframe/armory/models/armor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/armory/models/armor.obj -------------------------------------------------------------------------------- /examples/aframe/armory/models/armor_default_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/armory/models/armor_default_color.jpg -------------------------------------------------------------------------------- /examples/aframe/armory/models/helmet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/armory/models/helmet.jpg -------------------------------------------------------------------------------- /examples/aframe/armory/models/helmet.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/armory/models/helmet.mtl -------------------------------------------------------------------------------- /examples/aframe/armory/models/helmet.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/armory/models/helmet.obj -------------------------------------------------------------------------------- /examples/aframe/armory/models/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/armory/models/licenses.txt -------------------------------------------------------------------------------- /examples/aframe/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/basic.html -------------------------------------------------------------------------------- /examples/aframe/custom-component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/custom-component.html -------------------------------------------------------------------------------- /examples/aframe/dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/dialog/index.html -------------------------------------------------------------------------------- /examples/aframe/dialog/navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/dialog/navigate.js -------------------------------------------------------------------------------- /examples/aframe/dialog/resources/btn-CLICK-HERE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/dialog/resources/btn-CLICK-HERE.png -------------------------------------------------------------------------------- /examples/aframe/dialog/resources/btn-NEW-NOTIFICATION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/dialog/resources/btn-NEW-NOTIFICATION.png -------------------------------------------------------------------------------- /examples/aframe/dialog/resources/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/dialog/resources/close-hover.png -------------------------------------------------------------------------------- /examples/aframe/dialog/resources/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/dialog/resources/icon-close.png -------------------------------------------------------------------------------- /examples/aframe/dialog/resources/sm-notification-MACH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/dialog/resources/sm-notification-MACH.png -------------------------------------------------------------------------------- /examples/aframe/fireball/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/fireball/index.html -------------------------------------------------------------------------------- /examples/aframe/fireball/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/fireball/main.js -------------------------------------------------------------------------------- /examples/aframe/introduction/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/gallery.html -------------------------------------------------------------------------------- /examples/aframe/introduction/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/gallery.js -------------------------------------------------------------------------------- /examples/aframe/introduction/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/1.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/10.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/11.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/2.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/3.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/4.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/5.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/6.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/7.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/8.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/images/9.jpg -------------------------------------------------------------------------------- /examples/aframe/introduction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/index.html -------------------------------------------------------------------------------- /examples/aframe/introduction/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/poster.html -------------------------------------------------------------------------------- /examples/aframe/introduction/poster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/introduction/poster.js -------------------------------------------------------------------------------- /examples/aframe/model-repos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/model-repos.html -------------------------------------------------------------------------------- /examples/aframe/moon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/moon.html -------------------------------------------------------------------------------- /examples/aframe/native-gltf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/native-gltf.html -------------------------------------------------------------------------------- /examples/aframe/native-layout-browsers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/native-layout-browsers.html -------------------------------------------------------------------------------- /examples/aframe/native-parents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/native-parents.html -------------------------------------------------------------------------------- /examples/aframe/native-portals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/native-portals.html -------------------------------------------------------------------------------- /examples/aframe/native-sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/native-sound.html -------------------------------------------------------------------------------- /examples/aframe/native.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/native.html -------------------------------------------------------------------------------- /examples/aframe/resources/big-buck-bunny-intro.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/resources/big-buck-bunny-intro.wav -------------------------------------------------------------------------------- /examples/aframe/resources/moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/resources/moon.jpg -------------------------------------------------------------------------------- /examples/aframe/resources/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/resources/stars.png -------------------------------------------------------------------------------- /examples/aframe/threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/threejs.html -------------------------------------------------------------------------------- /examples/aframe/wire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/aframe/wire.html -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/js/adding-cubes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/adding-cubes.html -------------------------------------------------------------------------------- /examples/js/aframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/aframe.html -------------------------------------------------------------------------------- /examples/js/basic-cube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/basic-cube.html -------------------------------------------------------------------------------- /examples/js/bubbling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/bubbling.html -------------------------------------------------------------------------------- /examples/js/chess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/chess.html -------------------------------------------------------------------------------- /examples/js/circle-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/circle-button.html -------------------------------------------------------------------------------- /examples/js/drag-events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/drag-events.html -------------------------------------------------------------------------------- /examples/js/gamepad-cube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/gamepad-cube.html -------------------------------------------------------------------------------- /examples/js/hats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/hats.html -------------------------------------------------------------------------------- /examples/js/hello-hands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/hello-hands.html -------------------------------------------------------------------------------- /examples/js/hello-world.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/hello-world.html -------------------------------------------------------------------------------- /examples/js/images/MarkJayBeeFractal-InternalActivity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/images/MarkJayBeeFractal-InternalActivity.jpg -------------------------------------------------------------------------------- /examples/js/images/altspace-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/images/altspace-logo.png -------------------------------------------------------------------------------- /examples/js/images/click-me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/images/click-me.jpg -------------------------------------------------------------------------------- /examples/js/joint-collision-push.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/joint-collision-push.html -------------------------------------------------------------------------------- /examples/js/joint-collision-touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/joint-collision-touch.html -------------------------------------------------------------------------------- /examples/js/libs/ColladaLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/libs/ColladaLoader.js -------------------------------------------------------------------------------- /examples/js/libs/GLTFLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/libs/GLTFLoader.js -------------------------------------------------------------------------------- /examples/js/libs/MTLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/libs/MTLLoader.js -------------------------------------------------------------------------------- /examples/js/libs/OBJLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/libs/OBJLoader.js -------------------------------------------------------------------------------- /examples/js/libs/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/libs/OrbitControls.js -------------------------------------------------------------------------------- /examples/js/libs/helvetiker_regular.typeface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/libs/helvetiker_regular.typeface.json -------------------------------------------------------------------------------- /examples/js/libs/stats.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/libs/stats.min.js -------------------------------------------------------------------------------- /examples/js/living-room/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/living-room/index.html -------------------------------------------------------------------------------- /examples/js/living-room/living-room.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/living-room/living-room.es6.js -------------------------------------------------------------------------------- /examples/js/living-room/living-room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/living-room/living-room.js -------------------------------------------------------------------------------- /examples/js/living-room/rollup.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/living-room/rollup.conf.js -------------------------------------------------------------------------------- /examples/js/models/chess/.gitignore: -------------------------------------------------------------------------------- 1 | *.obj.cs 2 | -------------------------------------------------------------------------------- /examples/js/models/chess/434343.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/434343.png -------------------------------------------------------------------------------- /examples/js/models/chess/bishop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/bishop.jpg -------------------------------------------------------------------------------- /examples/js/models/chess/bishop.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/bishop.mtl -------------------------------------------------------------------------------- /examples/js/models/chess/bishop.obj.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/bishop.obj.tt -------------------------------------------------------------------------------- /examples/js/models/chess/bishop.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/bishop.obj.txt -------------------------------------------------------------------------------- /examples/js/models/chess/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/board.jpg -------------------------------------------------------------------------------- /examples/js/models/chess/board.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/board.mtl -------------------------------------------------------------------------------- /examples/js/models/chess/board.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/board.obj.txt -------------------------------------------------------------------------------- /examples/js/models/chess/king.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/king.jpg -------------------------------------------------------------------------------- /examples/js/models/chess/king.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/king.mtl -------------------------------------------------------------------------------- /examples/js/models/chess/king.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/king.obj.txt -------------------------------------------------------------------------------- /examples/js/models/chess/knight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/knight.jpg -------------------------------------------------------------------------------- /examples/js/models/chess/knight.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/knight.mtl -------------------------------------------------------------------------------- /examples/js/models/chess/knight.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/knight.obj.txt -------------------------------------------------------------------------------- /examples/js/models/chess/pawn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/pawn.jpg -------------------------------------------------------------------------------- /examples/js/models/chess/pawn.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/pawn.mtl -------------------------------------------------------------------------------- /examples/js/models/chess/pawn.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/pawn.obj.txt -------------------------------------------------------------------------------- /examples/js/models/chess/queen.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/queen.fbx -------------------------------------------------------------------------------- /examples/js/models/chess/queen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/queen.jpg -------------------------------------------------------------------------------- /examples/js/models/chess/queen.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/queen.mtl -------------------------------------------------------------------------------- /examples/js/models/chess/queen.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/queen.obj.txt -------------------------------------------------------------------------------- /examples/js/models/chess/queen.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/queen.tga -------------------------------------------------------------------------------- /examples/js/models/chess/rook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/rook.jpg -------------------------------------------------------------------------------- /examples/js/models/chess/rook.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/rook.mtl -------------------------------------------------------------------------------- /examples/js/models/chess/rook.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/chess/rook.obj.txt -------------------------------------------------------------------------------- /examples/js/models/cube/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/cube/Thumbs.db -------------------------------------------------------------------------------- /examples/js/models/cube/altspace-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/cube/altspace-logo.jpg -------------------------------------------------------------------------------- /examples/js/models/cube/cube-colored-faces.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/cube/cube-colored-faces.mtl -------------------------------------------------------------------------------- /examples/js/models/cube/cube-colored-faces.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/cube/cube-colored-faces.obj -------------------------------------------------------------------------------- /examples/js/models/cube/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/cube/cube.mtl -------------------------------------------------------------------------------- /examples/js/models/cube/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/cube/cube.obj -------------------------------------------------------------------------------- /examples/js/models/dice/d00_DIFF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d00_DIFF.jpg -------------------------------------------------------------------------------- /examples/js/models/dice/d00_high.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d00_high.mtl -------------------------------------------------------------------------------- /examples/js/models/dice/d00_high.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d00_high.obj -------------------------------------------------------------------------------- /examples/js/models/dice/d10_DIFF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d10_DIFF.jpg -------------------------------------------------------------------------------- /examples/js/models/dice/d10_high.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d10_high.mtl -------------------------------------------------------------------------------- /examples/js/models/dice/d10_high.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d10_high.obj -------------------------------------------------------------------------------- /examples/js/models/dice/d12_DIFF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d12_DIFF.jpg -------------------------------------------------------------------------------- /examples/js/models/dice/d12_high.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d12_high.mtl -------------------------------------------------------------------------------- /examples/js/models/dice/d12_high.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d12_high.obj -------------------------------------------------------------------------------- /examples/js/models/dice/d20_DIFF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d20_DIFF.jpg -------------------------------------------------------------------------------- /examples/js/models/dice/d20_high.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d20_high.mtl -------------------------------------------------------------------------------- /examples/js/models/dice/d20_high.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d20_high.obj -------------------------------------------------------------------------------- /examples/js/models/dice/d4_DIFF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d4_DIFF.jpg -------------------------------------------------------------------------------- /examples/js/models/dice/d4_high.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d4_high.mtl -------------------------------------------------------------------------------- /examples/js/models/dice/d4_high.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d4_high.obj -------------------------------------------------------------------------------- /examples/js/models/dice/d6_DIFF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d6_DIFF.jpg -------------------------------------------------------------------------------- /examples/js/models/dice/d6_high.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d6_high.mtl -------------------------------------------------------------------------------- /examples/js/models/dice/d6_high.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d6_high.obj -------------------------------------------------------------------------------- /examples/js/models/dice/d8_DIFF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d8_DIFF.jpg -------------------------------------------------------------------------------- /examples/js/models/dice/d8_high.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d8_high.mtl -------------------------------------------------------------------------------- /examples/js/models/dice/d8_high.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/dice/d8_high.obj -------------------------------------------------------------------------------- /examples/js/models/hats/Helmut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/Helmut.jpg -------------------------------------------------------------------------------- /examples/js/models/hats/LavaHelmet.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/LavaHelmet.mtl -------------------------------------------------------------------------------- /examples/js/models/hats/LavaHelmet.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/LavaHelmet.obj -------------------------------------------------------------------------------- /examples/js/models/hats/hardhat.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/hardhat.mtl -------------------------------------------------------------------------------- /examples/js/models/hats/hardhat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/hardhat.obj -------------------------------------------------------------------------------- /examples/js/models/hats/hardhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/hardhat.png -------------------------------------------------------------------------------- /examples/js/models/hats/hat_2_texture_wicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/hat_2_texture_wicker.jpg -------------------------------------------------------------------------------- /examples/js/models/hats/hat_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/hat_texture.jpg -------------------------------------------------------------------------------- /examples/js/models/hats/redhat.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/redhat.mtl -------------------------------------------------------------------------------- /examples/js/models/hats/redhat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/redhat.obj -------------------------------------------------------------------------------- /examples/js/models/hats/strawhat.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/strawhat.mtl -------------------------------------------------------------------------------- /examples/js/models/hats/strawhat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/strawhat.obj -------------------------------------------------------------------------------- /examples/js/models/hats/tophat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/tophat.jpg -------------------------------------------------------------------------------- /examples/js/models/hats/tophat.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/tophat.mtl -------------------------------------------------------------------------------- /examples/js/models/hats/tophat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/tophat.obj -------------------------------------------------------------------------------- /examples/js/models/hats/wizardhat.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/wizardhat.mtl -------------------------------------------------------------------------------- /examples/js/models/hats/wizardhat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/wizardhat.obj -------------------------------------------------------------------------------- /examples/js/models/hats/wizardhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/hats/wizardhat.png -------------------------------------------------------------------------------- /examples/js/models/living-room/bench.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/bench.dae -------------------------------------------------------------------------------- /examples/js/models/living-room/bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/bench.png -------------------------------------------------------------------------------- /examples/js/models/living-room/chair.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/chair.dae -------------------------------------------------------------------------------- /examples/js/models/living-room/chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/chair.png -------------------------------------------------------------------------------- /examples/js/models/living-room/plaque.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/plaque.dae -------------------------------------------------------------------------------- /examples/js/models/living-room/plaque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/plaque.png -------------------------------------------------------------------------------- /examples/js/models/living-room/shelves.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/shelves.dae -------------------------------------------------------------------------------- /examples/js/models/living-room/shelves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/shelves.png -------------------------------------------------------------------------------- /examples/js/models/living-room/stool.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/stool.dae -------------------------------------------------------------------------------- /examples/js/models/living-room/stool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/stool.png -------------------------------------------------------------------------------- /examples/js/models/living-room/table.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/table.dae -------------------------------------------------------------------------------- /examples/js/models/living-room/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/living-room/table.png -------------------------------------------------------------------------------- /examples/js/models/solar-system/earth.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/earth.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/earth.mtl.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/earth.mtl.orig -------------------------------------------------------------------------------- /examples/js/models/solar-system/earth.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/earth.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/earthWClouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/earthWClouds.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/earth_normal_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/earth_normal_map.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/jupiter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/jupiter.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/jupiter.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/jupiter.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/jupiter.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/jupiter.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/mars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/mars.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/mars.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/mars.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/mars.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/mars.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/mercury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/mercury.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/mercury.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/mercury.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/mercury.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/mercury.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/moon.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/moon.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/moon.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/moon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/moon.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/neptune.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/neptune.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/neptune.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/neptune.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/neptune.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/neptune.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/pluto.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/pluto.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/pluto.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/pluto.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/pluto_fictional.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/pluto_fictional.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/saturn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/saturn.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/saturn.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/saturn.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/saturn.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/saturn.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/saturn_ring_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/saturn_ring_alpha.png -------------------------------------------------------------------------------- /examples/js/models/solar-system/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/sun.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/sun.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/sun.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/sun.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/sun.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/uranus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/uranus.jpg -------------------------------------------------------------------------------- /examples/js/models/solar-system/uranus.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/uranus.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/uranus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/uranus.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/venus.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/venus.mtl -------------------------------------------------------------------------------- /examples/js/models/solar-system/venus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/venus.obj -------------------------------------------------------------------------------- /examples/js/models/solar-system/venus_surface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/solar-system/venus_surface.jpg -------------------------------------------------------------------------------- /examples/js/models/symbols/color-texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/color-texture.jpg -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-arrow-left.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-arrow-left.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-arrow-left.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-arrow-left.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-arrow-up.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-arrow-up.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-arrow-up.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-arrow-up.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-arrows-h.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-arrows-h.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-arrows-h.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-arrows-h.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-arrows.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-arrows.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-arrows.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-arrows.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-ban.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-ban.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-ban.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-ban.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-bars.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-bars.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-bars.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-bars.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-bullseye.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-bullseye.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-bullseye.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-bullseye.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-check.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-check.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-check.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-check.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-close.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-close.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-close.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-close.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-cloud-download.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-cloud-download.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-cloud-download.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-cloud-download.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-cloud-upload.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-cloud-upload.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-cloud-upload.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-cloud-upload.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-cogs.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-cogs.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-cogs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-cogs.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-compress.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-compress.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-compress.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-ellipsis-v.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-ellipsis-v.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-ellipsis-v.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-ellipsis-v.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-expand.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-expand.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-expand.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-expand.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-font.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-font.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-font.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-font.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-heart.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-heart.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-heart.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-heart.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-minus.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-minus.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-minus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-minus.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-paperclip.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-paperclip.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-paperclip.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-paperclip.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-pencil.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-pencil.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-pencil.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-pencil.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-plus.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-plus.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-plus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-plus.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-question-circle.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-question-circle.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-question-circle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-question-circle.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-refresh.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-refresh.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-refresh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-refresh.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-rotate-left.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-rotate-left.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-rotate-left.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-rotate-left.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-rotate-right.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-rotate-right.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-rotate-right.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-rotate-right.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-rss.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-rss.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-rss.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-rss.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-save.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-save.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-save.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-save.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-search.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-search.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-search.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-search.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-send.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-send.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-send.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-send.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-share.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-share.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-share.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-share.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-spinner.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-spinner.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-spinner.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-spinner.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-star-o.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-star-o.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-star-o.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-star-o.obj -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-star.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-star.mtl -------------------------------------------------------------------------------- /examples/js/models/symbols/fa-star.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/symbols/fa-star.obj -------------------------------------------------------------------------------- /examples/js/models/test/pPyramidShape1_color_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/test/pPyramidShape1_color_1.jpg -------------------------------------------------------------------------------- /examples/js/models/test/test.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/test/test.mb -------------------------------------------------------------------------------- /examples/js/models/test/test.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/test/test.mtl -------------------------------------------------------------------------------- /examples/js/models/test/test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/models/test/test.obj -------------------------------------------------------------------------------- /examples/js/popup/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/popup/favicon.png -------------------------------------------------------------------------------- /examples/js/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/popup/index.html -------------------------------------------------------------------------------- /examples/js/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/popup/popup.html -------------------------------------------------------------------------------- /examples/js/sky-sphere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/sky-sphere.html -------------------------------------------------------------------------------- /examples/js/solar-system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/solar-system.html -------------------------------------------------------------------------------- /examples/js/spinning-cube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/spinning-cube.html -------------------------------------------------------------------------------- /examples/js/steamvr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/steamvr/README.md -------------------------------------------------------------------------------- /examples/js/steamvr/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/steamvr/bundle.js -------------------------------------------------------------------------------- /examples/js/steamvr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/steamvr/index.html -------------------------------------------------------------------------------- /examples/js/steamvr/rollup.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/steamvr/rollup.conf.js -------------------------------------------------------------------------------- /examples/js/steamvr/src/behaviors/brush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/steamvr/src/behaviors/brush.js -------------------------------------------------------------------------------- /examples/js/steamvr/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/steamvr/src/index.js -------------------------------------------------------------------------------- /examples/js/stonehenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/README.md -------------------------------------------------------------------------------- /examples/js/stonehenge/Stone_19_UV_H_CM_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/Stone_19_UV_H_CM_1.jpg -------------------------------------------------------------------------------- /examples/js/stonehenge/buffer_combined.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/buffer_combined.bin -------------------------------------------------------------------------------- /examples/js/stonehenge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/index.html -------------------------------------------------------------------------------- /examples/js/stonehenge/lightmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/lightmap.jpg -------------------------------------------------------------------------------- /examples/js/stonehenge/lightmap.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/lightmap.xcf -------------------------------------------------------------------------------- /examples/js/stonehenge/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/screenshot.png -------------------------------------------------------------------------------- /examples/js/stonehenge/stonehenge.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/stonehenge.blend -------------------------------------------------------------------------------- /examples/js/stonehenge/stonehenge.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/stonehenge/stonehenge.gltf -------------------------------------------------------------------------------- /examples/js/synced-dice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/synced-dice.html -------------------------------------------------------------------------------- /examples/js/telekinetic-cubes/Grab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/telekinetic-cubes/Grab.js -------------------------------------------------------------------------------- /examples/js/telekinetic-cubes/PushPull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/telekinetic-cubes/PushPull.js -------------------------------------------------------------------------------- /examples/js/telekinetic-cubes/cube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/telekinetic-cubes/cube.js -------------------------------------------------------------------------------- /examples/js/telekinetic-cubes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/telekinetic-cubes/index.html -------------------------------------------------------------------------------- /examples/js/telekinetic-cubes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/telekinetic-cubes/main.js -------------------------------------------------------------------------------- /examples/js/telekinetic-cubes/spheres.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/telekinetic-cubes/spheres.js -------------------------------------------------------------------------------- /examples/js/touchpad-cube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/touchpad-cube.html -------------------------------------------------------------------------------- /examples/js/user-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/js/user-api.html -------------------------------------------------------------------------------- /examples/resources/click-me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/resources/click-me.jpg -------------------------------------------------------------------------------- /examples/tests/aframe-cursor-events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-cursor-events.html -------------------------------------------------------------------------------- /examples/tests/aframe-fullspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-fullspace.html -------------------------------------------------------------------------------- /examples/tests/aframe-mesh-collider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-mesh-collider.html -------------------------------------------------------------------------------- /examples/tests/aframe-meter-scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-meter-scale.html -------------------------------------------------------------------------------- /examples/tests/aframe-pixel-scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-pixel-scale.html -------------------------------------------------------------------------------- /examples/tests/aframe-sync-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-sync-color.html -------------------------------------------------------------------------------- /examples/tests/aframe-sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-sync.html -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/index.html -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/models/crate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/models/crate/README.md -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/models/crate/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/models/crate/crate.jpg -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/models/crate/crate.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/models/crate/crate.mtl -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/models/crate/crate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/models/crate/crate.obj -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/models/tree1/tex/shadow-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/models/tree1/tex/shadow-circle.png -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/models/tree1/tree1.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/models/tree1/tree1.dae -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/models/tree2/tex/shadow-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/models/tree2/tex/shadow-circle.png -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/models/tree2/tree2.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/models/tree2/tree2.dae -------------------------------------------------------------------------------- /examples/tests/aframe-vertical-align/peach-gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/aframe-vertical-align/peach-gradient.jpg -------------------------------------------------------------------------------- /examples/tests/behaviors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/behaviors.html -------------------------------------------------------------------------------- /examples/tests/canvas-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/canvas-update.html -------------------------------------------------------------------------------- /examples/tests/cloning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/cloning.html -------------------------------------------------------------------------------- /examples/tests/deterministic-render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/deterministic-render.html -------------------------------------------------------------------------------- /examples/tests/disable-hitbox-collider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/disable-hitbox-collider.html -------------------------------------------------------------------------------- /examples/tests/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/document.html -------------------------------------------------------------------------------- /examples/tests/fullspace/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/fullspace/index.html -------------------------------------------------------------------------------- /examples/tests/fullspace/meshHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/fullspace/meshHelpers.js -------------------------------------------------------------------------------- /examples/tests/gamepad-and-focus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/gamepad-and-focus.html -------------------------------------------------------------------------------- /examples/tests/geo-stress-test/buffer_combined.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/geo-stress-test/buffer_combined.bin -------------------------------------------------------------------------------- /examples/tests/geo-stress-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/geo-stress-test/index.html -------------------------------------------------------------------------------- /examples/tests/geo-stress-test/lightmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/geo-stress-test/lightmap.jpg -------------------------------------------------------------------------------- /examples/tests/geo-stress-test/model.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/geo-stress-test/model.blend -------------------------------------------------------------------------------- /examples/tests/geo-stress-test/model.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/geo-stress-test/model.gltf -------------------------------------------------------------------------------- /examples/tests/geo-stress-test/world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/geo-stress-test/world.jpg -------------------------------------------------------------------------------- /examples/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/index.html -------------------------------------------------------------------------------- /examples/tests/material-side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/material-side.html -------------------------------------------------------------------------------- /examples/tests/multimaterial-fallback-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/multimaterial-fallback-test/index.html -------------------------------------------------------------------------------- /examples/tests/multimaterial-fallback-test/resources/multimaterial.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/multimaterial-fallback-test/resources/multimaterial.blend -------------------------------------------------------------------------------- /examples/tests/multimaterial-fallback-test/resources/multimaterial.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/multimaterial-fallback-test/resources/multimaterial.dae -------------------------------------------------------------------------------- /examples/tests/multimaterial-fallback-test/resources/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/multimaterial-fallback-test/resources/test.jpg -------------------------------------------------------------------------------- /examples/tests/renderer-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/renderer-tests.html -------------------------------------------------------------------------------- /examples/tests/resources/ConeImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/ConeImg.jpg -------------------------------------------------------------------------------- /examples/tests/resources/CubeImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/CubeImg.jpg -------------------------------------------------------------------------------- /examples/tests/resources/CylImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/CylImg.jpg -------------------------------------------------------------------------------- /examples/tests/resources/DoorImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/DoorImg.jpg -------------------------------------------------------------------------------- /examples/tests/resources/UV_Grid_Sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/UV_Grid_Sm.jpg -------------------------------------------------------------------------------- /examples/tests/resources/test.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/test.blend -------------------------------------------------------------------------------- /examples/tests/resources/test.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/test.dae -------------------------------------------------------------------------------- /examples/tests/resources/test.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/test.mtl -------------------------------------------------------------------------------- /examples/tests/resources/test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/resources/test.obj -------------------------------------------------------------------------------- /examples/tests/scene-removal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/scene-removal.html -------------------------------------------------------------------------------- /examples/tests/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/style.css -------------------------------------------------------------------------------- /examples/tests/tempmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/tempmark.html -------------------------------------------------------------------------------- /examples/tests/texture-batching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/texture-batching.html -------------------------------------------------------------------------------- /examples/tests/texture-repeat-offset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/texture-repeat-offset.html -------------------------------------------------------------------------------- /examples/tests/texture-reuse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/texture-reuse.html -------------------------------------------------------------------------------- /examples/tests/transparency-stress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/transparency-stress.html -------------------------------------------------------------------------------- /examples/tests/transparency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/transparency.html -------------------------------------------------------------------------------- /examples/tests/videotexture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/videotexture/index.html -------------------------------------------------------------------------------- /examples/tests/visibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/examples/tests/visibility.html -------------------------------------------------------------------------------- /lib/Please.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/lib/Please.min.js -------------------------------------------------------------------------------- /lib/firebase.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/lib/firebase.min.js -------------------------------------------------------------------------------- /lib/url.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/lib/url.min.js -------------------------------------------------------------------------------- /native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/native.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/README.md -------------------------------------------------------------------------------- /src/components/AFrameComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/AFrameComponent.js -------------------------------------------------------------------------------- /src/components/AltspaceComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/AltspaceComponent.js -------------------------------------------------------------------------------- /src/components/AltspaceCursorCollider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/AltspaceCursorCollider.js -------------------------------------------------------------------------------- /src/components/AltspaceTrackedControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/AltspaceTrackedControls.js -------------------------------------------------------------------------------- /src/components/CollapseModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/CollapseModel.js -------------------------------------------------------------------------------- /src/components/NColliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NColliders.js -------------------------------------------------------------------------------- /src/components/NContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NContainer.js -------------------------------------------------------------------------------- /src/components/NGLTF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NGLTF.js -------------------------------------------------------------------------------- /src/components/NLayoutBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NLayoutBrowser.js -------------------------------------------------------------------------------- /src/components/NPortal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NPortal.js -------------------------------------------------------------------------------- /src/components/NSmallComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NSmallComponents.js -------------------------------------------------------------------------------- /src/components/NSound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NSound.js -------------------------------------------------------------------------------- /src/components/NText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NText.js -------------------------------------------------------------------------------- /src/components/NativeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/NativeComponent.js -------------------------------------------------------------------------------- /src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/README.md -------------------------------------------------------------------------------- /src/components/SyncColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/SyncColor.js -------------------------------------------------------------------------------- /src/components/SyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/SyncComponent.js -------------------------------------------------------------------------------- /src/components/SyncSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/SyncSystem.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/instantiator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/instantiator.js -------------------------------------------------------------------------------- /src/components/native-resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/native-resources.js -------------------------------------------------------------------------------- /src/components/one-per-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/one-per-user.js -------------------------------------------------------------------------------- /src/components/sync-n-skeleton-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/sync-n-skeleton-parent.js -------------------------------------------------------------------------------- /src/components/sync-n-sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/sync-n-sound.js -------------------------------------------------------------------------------- /src/components/sync-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/sync-transform.js -------------------------------------------------------------------------------- /src/components/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/utilities.js -------------------------------------------------------------------------------- /src/components/visible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/visible.js -------------------------------------------------------------------------------- /src/components/wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/components/wire.js -------------------------------------------------------------------------------- /src/core/AltRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/AltRenderer.js -------------------------------------------------------------------------------- /src/core/Cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Cursor.js -------------------------------------------------------------------------------- /src/core/Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Debug.js -------------------------------------------------------------------------------- /src/core/Document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Document.js -------------------------------------------------------------------------------- /src/core/Enclosure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Enclosure.js -------------------------------------------------------------------------------- /src/core/Flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Flags.js -------------------------------------------------------------------------------- /src/core/Gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Gamepad.js -------------------------------------------------------------------------------- /src/core/Popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Popup.js -------------------------------------------------------------------------------- /src/core/Skeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Skeleton.js -------------------------------------------------------------------------------- /src/core/Space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Space.js -------------------------------------------------------------------------------- /src/core/Touchpad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/Touchpad.js -------------------------------------------------------------------------------- /src/core/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/core/User.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utilities/behaviors/Behavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/Behavior.js -------------------------------------------------------------------------------- /src/utilities/behaviors/Bob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/Bob.js -------------------------------------------------------------------------------- /src/utilities/behaviors/ButtonStateStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/ButtonStateStyle.js -------------------------------------------------------------------------------- /src/utilities/behaviors/Drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/Drag.js -------------------------------------------------------------------------------- /src/utilities/behaviors/GamepadControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/GamepadControls.js -------------------------------------------------------------------------------- /src/utilities/behaviors/HoverColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/HoverColor.js -------------------------------------------------------------------------------- /src/utilities/behaviors/HoverScale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/HoverScale.js -------------------------------------------------------------------------------- /src/utilities/behaviors/JointCollisionEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/JointCollisionEvents.js -------------------------------------------------------------------------------- /src/utilities/behaviors/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/Layout.js -------------------------------------------------------------------------------- /src/utilities/behaviors/Object3DSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/Object3DSync.js -------------------------------------------------------------------------------- /src/utilities/behaviors/SceneSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/SceneSync.js -------------------------------------------------------------------------------- /src/utilities/behaviors/Spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/Spin.js -------------------------------------------------------------------------------- /src/utilities/behaviors/SteamVRInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/SteamVRInput.js -------------------------------------------------------------------------------- /src/utilities/behaviors/SteamVRTrackedObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/SteamVRTrackedObject.js -------------------------------------------------------------------------------- /src/utilities/behaviors/TouchpadRotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/TouchpadRotate.js -------------------------------------------------------------------------------- /src/utilities/behaviors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/behaviors/index.js -------------------------------------------------------------------------------- /src/utilities/codepen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/codepen.js -------------------------------------------------------------------------------- /src/utilities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/index.js -------------------------------------------------------------------------------- /src/utilities/multiloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/multiloader.js -------------------------------------------------------------------------------- /src/utilities/shims/OBJMTLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/shims/OBJMTLLoader.js -------------------------------------------------------------------------------- /src/utilities/shims/behaviors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/shims/behaviors.js -------------------------------------------------------------------------------- /src/utilities/shims/bubbling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/shims/bubbling.js -------------------------------------------------------------------------------- /src/utilities/shims/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/shims/cursor.js -------------------------------------------------------------------------------- /src/utilities/shims/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/shims/index.js -------------------------------------------------------------------------------- /src/utilities/simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/simulation.js -------------------------------------------------------------------------------- /src/utilities/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/src/utilities/sync.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/lib/chai-as-promised.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/lib/chai-as-promised.js -------------------------------------------------------------------------------- /tests/lib/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/lib/chai.js -------------------------------------------------------------------------------- /tests/lib/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/lib/mocha.css -------------------------------------------------------------------------------- /tests/lib/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/lib/mocha.js -------------------------------------------------------------------------------- /tests/src/behaviors.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/src/behaviors.es6.js -------------------------------------------------------------------------------- /tests/src/behaviors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/src/behaviors.js -------------------------------------------------------------------------------- /tests/src/layout.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/src/layout.es6.js -------------------------------------------------------------------------------- /tests/src/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/src/layout.js -------------------------------------------------------------------------------- /tests/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/src/main.js -------------------------------------------------------------------------------- /tests/src/sync.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/src/sync.es6.js -------------------------------------------------------------------------------- /tests/src/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AltspaceVR/AltspaceSDK/HEAD/tests/src/sync.js --------------------------------------------------------------------------------