-
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 9b8e55c
Showing
365 changed files
with
9,768 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.
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="https://engine.needle.tools/docs/icons/favicon.ico"><link rel="manifest" href="manifest.webmanifest"><meta name="theme-color" content="#3eaf7c"><meta property="og:title" content="Needle Engine 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>Needle Engine Documentation</title><meta name="description" content="d"> | ||
<link rel="preload" href="/docs/assets/style-FLAfNilA.css" as="style"><link rel="stylesheet" href="/docs/assets/style-FLAfNilA.css"> | ||
<link rel="modulepreload" href="/docs/assets/app-gL_2dV-U.js"><link rel="modulepreload" href="/docs/assets/404.html-BH-fVGBZ.js"> | ||
<link rel="prefetch" href="/docs/assets/SUMMARY.html-6OPxnIWo.js" as="script"><link rel="prefetch" href="/docs/assets/backlog-mermaid.html-Bgu0z6HV.js" as="script"><link rel="prefetch" href="/docs/assets/backlog.html-TfgrC7fY.js" as="script"><link rel="prefetch" href="/docs/assets/meta-test.html-DVrxfNnw.js" as="script"><link rel="prefetch" href="/docs/assets/component-compiler.html-BFN9CP8L.js" as="script"><link rel="prefetch" href="/docs/assets/component-reference.html-5lB8lVzH.js" as="script"><link rel="prefetch" href="/docs/assets/debugging.html-Ch8cVQWI.js" as="script"><link rel="prefetch" href="/docs/assets/deployment.html-s3j8Q-Sk.js" as="script"><link rel="prefetch" href="/docs/assets/everywhere-actions.html-DUwDDW8P.js" as="script"><link rel="prefetch" href="/docs/assets/examples.html-M6mi-U5m.js" as="script"><link rel="prefetch" href="/docs/assets/export.html-DFum2Hvl.js" as="script"><link rel="prefetch" href="/docs/assets/faq.html-BQtZVISp.js" as="script"><link rel="prefetch" href="/docs/assets/features-overview.html-CmKQV4ZO.js" as="script"><link rel="prefetch" href="/docs/assets/for-unity-developers.html-C8bdwvdV.js" as="script"><link rel="prefetch" href="/docs/assets/getting-started.html-BXrZZ80z.js" as="script"><link rel="prefetch" href="/docs/assets/html.html-DCNjIiud.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-Bq8a11o3.js" as="script"><link rel="prefetch" href="/docs/assets/modules.html-doZ6mDlz.js" as="script"><link rel="prefetch" href="/docs/assets/networking.html-7tZRpcN4.js" as="script"><link rel="prefetch" href="/docs/assets/project-structure.html-DJbQCMXy.js" as="script"><link rel="prefetch" href="/docs/assets/samples-and-modules.html-xg0Ha-_o.js" as="script"><link rel="prefetch" href="/docs/assets/scripting-examples.html-BL-5s5-M.js" as="script"><link rel="prefetch" href="/docs/assets/scripting.html-CZYPHWF6.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-bike.html-DaYAQ-Oy.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-castle.html-Czp6MV37.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-mercedes-benz.html-Iqm0O7MP.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-monsterhands.html-DHEb7fr9.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-towerdefence.html-Cz6VM4ij.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-website.html-OHmz-yi1.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-zenrepublic.html-DoJKrsRu.js" as="script"><link rel="prefetch" href="/docs/assets/support.html-DtaBP7GV.js" as="script"><link rel="prefetch" href="/docs/assets/technical-overview.html-BuuZCGhn.js" as="script"><link rel="prefetch" href="/docs/assets/testimonials.html-BwMlA5VL.js" as="script"><link rel="prefetch" href="/docs/assets/testing.html-AKT2AB9-.js" as="script"><link rel="prefetch" href="/docs/assets/vanilla-js.html-H9VD7kN6.js" as="script"><link rel="prefetch" href="/docs/assets/vision.html-D8kogx9o.js" as="script"><link rel="prefetch" href="/docs/assets/xr.html-cVm8xxih.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-DFqbd978.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-DhR6cxQS.js" as="script"><link rel="prefetch" href="/docs/assets/for-unity-developers.html-CCTCek_o.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-29nBWsfu.js" as="script"><link rel="prefetch" href="/docs/assets/typescript-essentials.html-XbWQMjyX.js" as="script"><link rel="prefetch" href="/docs/assets/needle-config-json.html-DC1jldoc.js" as="script"><link rel="prefetch" href="/docs/assets/needle-engine-attributes.html-Cw-8DqEd.js" as="script"><link rel="prefetch" href="/docs/assets/typescript-decorators.html-C_WeBEVk.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-Dm48CB3F.js" as="script"><link rel="prefetch" href="/docs/assets/editor-sync.html-C7qenWt5.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-IExlNMxK.js" as="script"><link rel="prefetch" href="/docs/assets/custom-vr-button-that-appears-only-on-headsets-and-not-on-mobile-phones.html-CejDkUQS.js" as="script"><link rel="prefetch" href="/docs/assets/set-fallback-material-for-usdz-exporter.html-BZx6vpG_.js" as="script"><link rel="prefetch" href="/docs/assets/llllkatjallll.html-UFQt6Hlo.js" as="script"><link rel="prefetch" href="/docs/assets/microphone-access-in-a-browser-window-and-streamed-playback.html-QL_mPE0K.js" as="script"><link rel="prefetch" href="/docs/assets/ar-move-scale-rotate-controls-for-needle-on-mobile.html-CDl05rxA.js" as="script"><link rel="prefetch" href="/docs/assets/robyer1.html-CwVlpN4G.js" as="script"><link rel="prefetch" href="/docs/assets/quicklook-vertical-image-tracker.html-StK-gHy4.js" as="script"><link rel="prefetch" href="/docs/assets/ericcraft-mh.html-Bv2DwfIB.js" as="script"><link rel="prefetch" href="/docs/assets/always-open-in-specific-browser.html-Cl84u2ue.js" as="script"><link rel="prefetch" href="/docs/assets/krisrok.html-Bpw8pRrO.js" as="script"><link rel="prefetch" href="/docs/assets/camera-video-background.html-CNjBfClS.js" as="script"><link rel="prefetch" href="/docs/assets/usdz-hide-object-on-start.html-DDoL5S2m.js" as="script"><link rel="prefetch" href="/docs/assets/everywhere-action-emphasize-on-click.html-D2iwAz0H.js" as="script"><link rel="prefetch" href="/docs/assets/control-a-timeline-by-scroll.html-D5mQyu7B.js" as="script"><link rel="prefetch" href="/docs/assets/code-contribution-example.html-DZ-ZA2Sn.js" as="script"><link rel="prefetch" href="/docs/assets/marwie.html-4ijrL2eN.js" as="script"><link rel="prefetch" href="/docs/assets/calculate-pointer-world-position.html-DEaq2Wcz.js" as="script"><link rel="prefetch" href="/docs/assets/kipash.html-C2nlTyD9.js" as="script"><link rel="prefetch" href="/docs/assets/vertical-move-in-vr-using-the-right-joystick-quest.html-LhKOzPH9.js" as="script"><link rel="prefetch" href="/docs/assets/squeeze-to-scale-object-or-world-in-vr.html-J1NuGhHu.js" as="script"><link rel="prefetch" href="/docs/assets/network-instantiation-of-multiple-objects.html-BofKa-IG.js" as="script"><link rel="prefetch" href="/docs/assets/web3kev.html-BnTP65p6.js" as="script"><link rel="prefetch" href="/docs/assets/contributions.html-Cv9D2mGh.js" as="script"><link rel="prefetch" href="/docs/assets/index-DWGeGWcS.js" as="script"><link rel="prefetch" href="/docs/assets/NoDownloadYet-UjXKCqce.js" as="script"><link rel="prefetch" href="/docs/assets/action-d_e2iOPW.js" as="script"><link rel="prefetch" href="/docs/assets/actiongroup-BuEcDIhH.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-header-VMsemUgi.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-listentry-CThA832Q.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-preview-DypQrFqD.js" as="script"><link rel="prefetch" href="/docs/assets/contributions-author-Bcvo-Q5Z.js" as="script"><link rel="prefetch" href="/docs/assets/contributions-overview-BvR56Sak.js" as="script"><link rel="prefetch" href="/docs/assets/copyright-Cjm4StRj.js" as="script"><link rel="prefetch" href="/docs/assets/github-star-DzRNULX5.js" as="script"><link rel="prefetch" href="/docs/assets/metalink-C16FCUVK.js" as="script"><link rel="prefetch" href="/docs/assets/needle-button-bsUMkpv8.js" as="script"><link rel="prefetch" href="/docs/assets/os-link-Bvyz0-_K.js" as="script"><link rel="prefetch" href="/docs/assets/quoteslides-CBZutD2w.js" as="script"><link rel="prefetch" href="/docs/assets/removeserviceworker-D07ACdkx.js" as="script"><link rel="prefetch" href="/docs/assets/sample-CZ3OjHiE.js" as="script"><link rel="prefetch" href="/docs/assets/stackblitz-B1y8lb4f.js" as="script"><link rel="prefetch" href="/docs/assets/testimonial-DFCW5BSq.js" as="script"><link rel="prefetch" href="/docs/assets/tool-tile-DmgLrSXR.js" as="script"><link rel="prefetch" href="/docs/assets/tool-tiles-CnatiEw9.js" as="script"><link rel="prefetch" href="/docs/assets/video-embed-BGhZk2JB.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-gL_2dV-U.js" defer></script> | ||
</body> | ||
</html> |
Oops, something went wrong.