-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 35cf5c4
Showing
346 changed files
with
9,294 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<IfModule mod_headers.c> | ||
# Caching | ||
|
||
# 1 week for images, videos | ||
<FilesMatch "\.(ico|jpg|jpeg|gif|png|pdf|mp3|mp4)$"> | ||
Header set Cache-Control "public, max-age=604800, no-transform" | ||
</FilesMatch> | ||
|
||
<FilesMatch "\.(html|htm|xml|txt|xsl)$"> | ||
Header set Cache-Control "public, max-age=120, must-revalidate" | ||
</FilesMatch> | ||
|
||
</IfModule> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+241 KB
...ll: custom vr button that appears only on headsets and not on mobile phones.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+238 KB
.preview/robyer1: ar move scale rotate controls for needle on mobile.png
Oops, something went wrong.
Binary file added
BIN
+246 KB
.preview/robyer1: microphone access in a browser window and streamed playback.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+237 KB
.preview/web3kev: vertical move in vr using the right joystick quest.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!doctype html> | ||
<html lang="en-US"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<meta name="generator" content="VuePress 2.0.0-rc.15" /> | ||
<style> | ||
:root { | ||
--vp-c-bg: #fff; | ||
} | ||
|
||
[data-theme='dark'] { | ||
--vp-c-bg: #22272e; | ||
} | ||
|
||
html, | ||
body { | ||
background-color: var(--vp-c-bg); | ||
} | ||
</style> | ||
<script> | ||
const userMode = localStorage.getItem('vuepress-color-scheme') | ||
const systemDarkMode = | ||
'matchMedia' in window | ||
? window.matchMedia('(prefers-color-scheme: dark)').matches | ||
: false | ||
|
||
if (userMode === 'light') { | ||
document.documentElement.dataset.theme = 'light' | ||
} else if (userMode === 'dark' || systemDarkMode) { | ||
document.documentElement.dataset.theme = 'dark' | ||
} | ||
</script> | ||
<meta name="og:image" content="https://engine.needle.tools/docs/.preview/404.png"><meta name="og:description" content="d"><link rel="icon" href="icons/favicon.ico"><link rel="manifest" href="manifest.webmanifest"><meta name="theme-color" content="#3eaf7c"><meta property="og:title" content="Documentation"><meta property="og:type" content="website"><meta property="og:url" content="https://engine.needle.tools/docs"><meta property="twitter:card" content="summary_large_image"><script src="https://unpkg.com/@stackblitz/sdk/bundles/sdk.umd.js"></script><script src="https://analytics.needle.tools/js/script.tagged-events.outbound-links.js" defer="" data-domain="docs.needle.tools"></script><title>Documentation</title><meta name="description" content="d"> | ||
<link rel="preload" href="/docs/assets/style-BnHIu7Lj.css" as="style"><link rel="stylesheet" href="/docs/assets/style-BnHIu7Lj.css"> | ||
<link rel="modulepreload" href="/docs/assets/app-BxmJZAZL.js"><link rel="modulepreload" href="/docs/assets/404.html-DvRb1Wok.js"> | ||
<link rel="prefetch" href="/docs/assets/SUMMARY.html-D_ZzrYs1.js" as="script"><link rel="prefetch" href="/docs/assets/backlog-mermaid.html-DAg6jiKj.js" as="script"><link rel="prefetch" href="/docs/assets/backlog.html-D-rQbe5e.js" as="script"><link rel="prefetch" href="/docs/assets/meta-test.html-BgNsM777.js" as="script"><link rel="prefetch" href="/docs/assets/component-compiler.html-DVBrqiU2.js" as="script"><link rel="prefetch" href="/docs/assets/component-reference.html-Dov6sqh5.js" as="script"><link rel="prefetch" href="/docs/assets/debugging.html-C6vN2CUv.js" as="script"><link rel="prefetch" href="/docs/assets/deployment.html-yTUGPdHy.js" as="script"><link rel="prefetch" href="/docs/assets/everywhere-actions.html-4irid6C2.js" as="script"><link rel="prefetch" href="/docs/assets/examples.html-CUJ88G-v.js" as="script"><link rel="prefetch" href="/docs/assets/export.html-BkxFHyk4.js" as="script"><link rel="prefetch" href="/docs/assets/faq.html-Bd9aITep.js" as="script"><link rel="prefetch" href="/docs/assets/features-overview.html-1YFivA0U.js" as="script"><link rel="prefetch" href="/docs/assets/for-unity-developers.html-CoqJgAo-.js" as="script"><link rel="prefetch" href="/docs/assets/getting-started.html-C2m2vJ1M.js" as="script"><link rel="prefetch" href="/docs/assets/html.html-BwEFOKe1.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-DQcMos7i.js" as="script"><link rel="prefetch" href="/docs/assets/modules.html-VqbSmXn8.js" as="script"><link rel="prefetch" href="/docs/assets/networking.html-CgpxCJ56.js" as="script"><link rel="prefetch" href="/docs/assets/project-structure.html-CgWX6Smu.js" as="script"><link rel="prefetch" href="/docs/assets/samples-and-modules.html-BpZRnWeX.js" as="script"><link rel="prefetch" href="/docs/assets/scripting-examples.html-YRCkgi-9.js" as="script"><link rel="prefetch" href="/docs/assets/scripting.html-Bzz3mfqO.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-bike.html-wS0L0mQv.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-castle.html-BTpo21mb.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-mercedes-benz.html-DrpNfEtV.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-monsterhands.html-C4Eyg8o1.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-towerdefence.html-C-hAKXBZ.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-website.html-A-3FgDPi.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-zenrepublic.html-CC3eYm3-.js" as="script"><link rel="prefetch" href="/docs/assets/technical-overview.html-DX2Pqse4.js" as="script"><link rel="prefetch" href="/docs/assets/testimonials.html-0w_15oP_.js" as="script"><link rel="prefetch" href="/docs/assets/testing.html-CvzL4W9v.js" as="script"><link rel="prefetch" href="/docs/assets/vanilla-js.html-Db0kBaOM.js" as="script"><link rel="prefetch" href="/docs/assets/vision.html-CYfa6ku8.js" as="script"><link rel="prefetch" href="/docs/assets/xr.html-HBHWVrg4.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-CtL2pd73.js" as="script"><link rel="prefetch" href="/docs/assets/for-unity-developers.html-Bdgv_39L.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-CZYmnwaV.js" as="script"><link rel="prefetch" href="/docs/assets/typescript-essentials.html-CZjoQA27.js" as="script"><link rel="prefetch" href="/docs/assets/needle-config-json.html-DKj7UuZl.js" as="script"><link rel="prefetch" href="/docs/assets/needle-engine-attributes.html-8stuqC9U.js" as="script"><link rel="prefetch" href="/docs/assets/typescript-decorators.html-BJNuT4Sv.js" as="script"><link rel="prefetch" href="/docs/assets/custom-vr-button-that-appears-only-on-headsets-and-not-on-mobile-phones.html-GLD5vhq3.js" as="script"><link rel="prefetch" href="/docs/assets/set-fallback-material-for-usdz-exporter.html-lwaXxLvY.js" as="script"><link rel="prefetch" href="/docs/assets/llllkatjallll.html-B9W_SKlw.js" as="script"><link rel="prefetch" href="/docs/assets/microphone-access-in-a-browser-window-and-streamed-playback.html-BRG-qEZb.js" as="script"><link rel="prefetch" href="/docs/assets/ar-move-scale-rotate-controls-for-needle-on-mobile.html-CdO3OZZl.js" as="script"><link rel="prefetch" href="/docs/assets/robyer1.html-BGGhnRYa.js" as="script"><link rel="prefetch" href="/docs/assets/quicklook-vertical-image-tracker.html-OdlTiwvs.js" as="script"><link rel="prefetch" href="/docs/assets/ericcraft-mh.html-C2aHMqnP.js" as="script"><link rel="prefetch" href="/docs/assets/always-open-in-specific-browser.html-B-x75Tkk.js" as="script"><link rel="prefetch" href="/docs/assets/krisrok.html-Bjk4pAT_.js" as="script"><link rel="prefetch" href="/docs/assets/camera-video-background.html-BzOfAOLW.js" as="script"><link rel="prefetch" href="/docs/assets/usdz-hide-object-on-start.html-DIJKLNEx.js" as="script"><link rel="prefetch" href="/docs/assets/everywhere-action-emphasize-on-click.html-PKldDcuI.js" as="script"><link rel="prefetch" href="/docs/assets/control-a-timeline-by-scroll.html-5RZ-mjXB.js" as="script"><link rel="prefetch" href="/docs/assets/code-contribution-example.html-CXsI-MZH.js" as="script"><link rel="prefetch" href="/docs/assets/marwie.html-ChnkSUaU.js" as="script"><link rel="prefetch" href="/docs/assets/calculate-pointer-world-position.html-C8RUkT_q.js" as="script"><link rel="prefetch" href="/docs/assets/kipash.html-8IQIk9jy.js" as="script"><link rel="prefetch" href="/docs/assets/vertical-move-in-vr-using-the-right-joystick-quest.html-BRoTOQ3C.js" as="script"><link rel="prefetch" href="/docs/assets/squeeze-to-scale-object-or-world-in-vr.html-DsZ2nOYm.js" as="script"><link rel="prefetch" href="/docs/assets/network-instantiation-of-multiple-objects.html-CN0P4JV9.js" as="script"><link rel="prefetch" href="/docs/assets/web3kev.html-CjUWcjvc.js" as="script"><link rel="prefetch" href="/docs/assets/contributions.html-BTNjK8ro.js" as="script"><link rel="prefetch" href="/docs/assets/index-DWGeGWcS.js" as="script"><link rel="prefetch" href="/docs/assets/action-DKSHDRIA.js" as="script"><link rel="prefetch" href="/docs/assets/actiongroup-BhR0B3bX.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-header-DUFFyYVD.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-listentry-DzMVcSZl.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-preview-BXVLSDgu.js" as="script"><link rel="prefetch" href="/docs/assets/contributions-author-BSN7AwST.js" as="script"><link rel="prefetch" href="/docs/assets/contributions-overview-ciooAKOQ.js" as="script"><link rel="prefetch" href="/docs/assets/copyright-OiEVmXcu.js" as="script"><link rel="prefetch" href="/docs/assets/github-star-DZazZFFY.js" as="script"><link rel="prefetch" href="/docs/assets/metalink-BknfiEWU.js" as="script"><link rel="prefetch" href="/docs/assets/needle-button-C5q9bTbT.js" as="script"><link rel="prefetch" href="/docs/assets/os-link-SNepocct.js" as="script"><link rel="prefetch" href="/docs/assets/quoteslides-CoZzU7UG.js" as="script"><link rel="prefetch" href="/docs/assets/removeserviceworker-872sBdcs.js" as="script"><link rel="prefetch" href="/docs/assets/sample-CjzzQMzy.js" as="script"><link rel="prefetch" href="/docs/assets/stackblitz-Dfvd5TMS.js" as="script"><link rel="prefetch" href="/docs/assets/testimonial-BZ86VwYU.js" as="script"><link rel="prefetch" href="/docs/assets/video-embed-CY4UG2mV.js" as="script"> | ||
</head> | ||
<body> | ||
<div id="app"><!--[--><div class="vp-theme-container" vp-container data-v-463c2c5d><main class="page" data-v-463c2c5d><div class="theme-default-content" vp-content data-v-463c2c5d><h1 data-v-463c2c5d>404</h1><blockquote data-v-463c2c5d>Gosh! You found a 🌵 glitch</blockquote><a class="route-link" href="/docs/" data-v-463c2c5d>Take me home</a></div></main></div><!--[--><!--]--><!--]--></div> | ||
<script type="module" src="/docs/assets/app-BxmJZAZL.js" defer></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.