Skip to content

Commit

Permalink
Deploy to GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 17, 2024
0 parents commit 35cf5c4
Show file tree
Hide file tree
Showing 346 changed files with 9,294 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .htaccess
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>
Binary file added .preview/404.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/<needle engine> configuration.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/@serializable and other decorators.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/additional modules.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/automatic component generation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/backlog mermaid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/backlog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/bike configurator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/built in components.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/castle builder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/community: contributions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/contributions: ericcraft mh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/contributions: kipash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/contributions: krisrok.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/contributions: llllkatjallll.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/contributions: marwie.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/contributions: robyer1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/contributions: web3kev.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/creating and using components.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/deployment and optimization.png
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.
Binary file added .preview/everywhere actions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/examples.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/exporting assets to gltf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/features overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .preview/frameworks, bundlers, html.png
Binary file added .preview/getting started & installation.png
Binary file added .preview/getting started.png
Binary file added .preview/how to debug.png
Binary file added .preview/marwie: camera video background.png
Binary file added .preview/marwie: code contribution example.png
Binary file added .preview/marwie: usdz hide object on start.png
Binary file added .preview/mercedes benz showcase.png
Binary file added .preview/meta test.png
Binary file added .preview/monster hands.png
Binary file added .preview/needle engine for blender.png
Binary file added .preview/needle engine.png
Binary file added .preview/needle.png
Binary file added .preview/networking.png
Binary file added .preview/samples projects.png
Binary file added .preview/scripting examples.png
Binary file added .preview/scripting in needle engine.png
Binary file added .preview/summary.png
Binary file added .preview/technical overview.png
Binary file added .preview/testimonials.png
Binary file added .preview/testing on local devices.png
Binary file added .preview/tower defense.png
Binary file added .preview/vision.png
Binary file added .preview/vr & ar.png
43 changes: 43 additions & 0 deletions 404.html
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>
43 changes: 43 additions & 0 deletions SUMMARY.html

Large diffs are not rendered by default.

Binary file added android-chrome-144x144.png
1 change: 1 addition & 0 deletions assets/404.html-DvRb1Wok.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/SUMMARY.html-D_ZzrYs1.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/action-DKSHDRIA.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/actiongroup-BhR0B3bX.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 35cf5c4

Please sign in to comment.