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 Oct 1, 2024
0 parents commit 3024dad
Show file tree
Hide file tree
Showing 368 changed files with 9,842 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/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/custom integrations.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.
Binary file added .preview/embedding.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
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 core components.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/support.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/three.png
Binary file added .preview/tower defense.png
Binary file added .preview/unity: editor sync.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="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-rKjGPieq.css" as="style"><link rel="stylesheet" href="/docs/assets/style-rKjGPieq.css">
<link rel="modulepreload" href="/docs/assets/app-CRZRGfEE.js"><link rel="modulepreload" href="/docs/assets/404.html-DQk9SM3x.js">
<link rel="prefetch" href="/docs/assets/SUMMARY.html-o_nWAvKL.js" as="script"><link rel="prefetch" href="/docs/assets/backlog-mermaid.html-Baq9DOuh.js" as="script"><link rel="prefetch" href="/docs/assets/backlog.html-aIMMEHhy.js" as="script"><link rel="prefetch" href="/docs/assets/meta-test.html-Bv0TrQjv.js" as="script"><link rel="prefetch" href="/docs/assets/component-compiler.html-DQMaNo6k.js" as="script"><link rel="prefetch" href="/docs/assets/component-reference.html-zo-jLPyy.js" as="script"><link rel="prefetch" href="/docs/assets/debugging.html-x99TIVp3.js" as="script"><link rel="prefetch" href="/docs/assets/deployment.html-C3wlSpNe.js" as="script"><link rel="prefetch" href="/docs/assets/embedding.html-Bwm82YNo.js" as="script"><link rel="prefetch" href="/docs/assets/everywhere-actions.html-ddHbg6za.js" as="script"><link rel="prefetch" href="/docs/assets/examples.html-BMSngmVr.js" as="script"><link rel="prefetch" href="/docs/assets/export.html-Cyapuf2Z.js" as="script"><link rel="prefetch" href="/docs/assets/faq.html-B6pZlv9Y.js" as="script"><link rel="prefetch" href="/docs/assets/features-overview.html-CBlEyL-B.js" as="script"><link rel="prefetch" href="/docs/assets/for-unity-developers.html-Cn4ckO1w.js" as="script"><link rel="prefetch" href="/docs/assets/getting-started.html-CpSyGMSg.js" as="script"><link rel="prefetch" href="/docs/assets/html.html-DP7Dz9Ne.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-CxWg-amX.js" as="script"><link rel="prefetch" href="/docs/assets/modules.html-1xnFAmG8.js" as="script"><link rel="prefetch" href="/docs/assets/networking.html-Ccq0lod9.js" as="script"><link rel="prefetch" href="/docs/assets/project-structure.html-DAYDA0w3.js" as="script"><link rel="prefetch" href="/docs/assets/samples-and-modules.html-BqywFF0Q.js" as="script"><link rel="prefetch" href="/docs/assets/scripting-examples.html-BShu_1Dw.js" as="script"><link rel="prefetch" href="/docs/assets/scripting.html-UnvL8K8f.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-bike.html-C8g9IaUw.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-castle.html-2qaErZDl.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-mercedes-benz.html-CYMbPrd8.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-monsterhands.html-Cjm5xxr6.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-towerdefence.html-B-3p76-5.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-website.html-DsWtTfPo.js" as="script"><link rel="prefetch" href="/docs/assets/showcase-zenrepublic.html-C8fRcD0r.js" as="script"><link rel="prefetch" href="/docs/assets/support.html-g_P1G7eN.js" as="script"><link rel="prefetch" href="/docs/assets/technical-overview.html-BeSwd6Mh.js" as="script"><link rel="prefetch" href="/docs/assets/testimonials.html-B3wqsnkd.js" as="script"><link rel="prefetch" href="/docs/assets/testing.html-DcypmV_S.js" as="script"><link rel="prefetch" href="/docs/assets/vanilla-js.html-DtAi2Rtr.js" as="script"><link rel="prefetch" href="/docs/assets/vision.html-zI-oAntf.js" as="script"><link rel="prefetch" href="/docs/assets/xr.html-BFJdLi8t.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-Ci232zr-.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-Msujlet7.js" as="script"><link rel="prefetch" href="/docs/assets/for-unity-developers.html-9HXvx0qv.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-DyXM_9kx.js" as="script"><link rel="prefetch" href="/docs/assets/typescript-essentials.html-B7bTUCZ9.js" as="script"><link rel="prefetch" href="/docs/assets/needle-config-json.html-CGJ-KXV-.js" as="script"><link rel="prefetch" href="/docs/assets/needle-engine-attributes.html-Dizdapts.js" as="script"><link rel="prefetch" href="/docs/assets/typescript-decorators.html-DQAWNuRE.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-_acHVPU1.js" as="script"><link rel="prefetch" href="/docs/assets/editor-sync.html-B1ATYa5k.js" as="script"><link rel="prefetch" href="/docs/assets/index.html-gQ6khto9.js" as="script"><link rel="prefetch" href="/docs/assets/custom-vr-button-that-appears-only-on-headsets-and-not-on-mobile-phones.html-Cyk2JJNy.js" as="script"><link rel="prefetch" href="/docs/assets/set-fallback-material-for-usdz-exporter.html-BEiyoRdx.js" as="script"><link rel="prefetch" href="/docs/assets/llllkatjallll.html-CUXH6RfS.js" as="script"><link rel="prefetch" href="/docs/assets/microphone-access-in-a-browser-window-and-streamed-playback.html-DC969LS3.js" as="script"><link rel="prefetch" href="/docs/assets/ar-move-scale-rotate-controls-for-needle-on-mobile.html-CUtGjdNc.js" as="script"><link rel="prefetch" href="/docs/assets/robyer1.html-DKUQa3GZ.js" as="script"><link rel="prefetch" href="/docs/assets/quicklook-vertical-image-tracker.html-C2obMcDm.js" as="script"><link rel="prefetch" href="/docs/assets/ericcraft-mh.html-CjAn6AX_.js" as="script"><link rel="prefetch" href="/docs/assets/always-open-in-specific-browser.html-Cboldk4x.js" as="script"><link rel="prefetch" href="/docs/assets/krisrok.html-6_QA53zB.js" as="script"><link rel="prefetch" href="/docs/assets/camera-video-background.html-BLeFh9kF.js" as="script"><link rel="prefetch" href="/docs/assets/usdz-hide-object-on-start.html-Bd-eN8WF.js" as="script"><link rel="prefetch" href="/docs/assets/everywhere-action-emphasize-on-click.html-CVeSGZpb.js" as="script"><link rel="prefetch" href="/docs/assets/control-a-timeline-by-scroll.html-GAfS3g38.js" as="script"><link rel="prefetch" href="/docs/assets/code-contribution-example.html-BnLNxDrY.js" as="script"><link rel="prefetch" href="/docs/assets/marwie.html-DsbxB-fW.js" as="script"><link rel="prefetch" href="/docs/assets/calculate-pointer-world-position.html-BBtMcQ13.js" as="script"><link rel="prefetch" href="/docs/assets/kipash.html-BN1wH6PC.js" as="script"><link rel="prefetch" href="/docs/assets/vertical-move-in-vr-using-the-right-joystick-quest.html-4yb7LuOj.js" as="script"><link rel="prefetch" href="/docs/assets/squeeze-to-scale-object-or-world-in-vr.html-C2ATGHYY.js" as="script"><link rel="prefetch" href="/docs/assets/network-instantiation-of-multiple-objects.html-BiATyjwH.js" as="script"><link rel="prefetch" href="/docs/assets/web3kev.html-BYOJlV9Z.js" as="script"><link rel="prefetch" href="/docs/assets/contributions.html-DddtFv1E.js" as="script"><link rel="prefetch" href="/docs/assets/index-DWGeGWcS.js" as="script"><link rel="prefetch" href="/docs/assets/NoDownloadYet-CimAPJue.js" as="script"><link rel="prefetch" href="/docs/assets/action-Dm_y7Sbx.js" as="script"><link rel="prefetch" href="/docs/assets/actiongroup-gFGdAuKO.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-header-B7v_pWCC.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-listentry-CYemCd1W.js" as="script"><link rel="prefetch" href="/docs/assets/contribution-preview-BGt1xWap.js" as="script"><link rel="prefetch" href="/docs/assets/contributions-author-BSwyEtB9.js" as="script"><link rel="prefetch" href="/docs/assets/contributions-overview-D_rfeOIs.js" as="script"><link rel="prefetch" href="/docs/assets/copyright-ClhS8G3R.js" as="script"><link rel="prefetch" href="/docs/assets/github-star-DNJWumWy.js" as="script"><link rel="prefetch" href="/docs/assets/metalink-RADuWAM2.js" as="script"><link rel="prefetch" href="/docs/assets/needle-button-CkzDHAYk.js" as="script"><link rel="prefetch" href="/docs/assets/os-link-CAGZ994T.js" as="script"><link rel="prefetch" href="/docs/assets/quoteslides-Jbcw9khk.js" as="script"><link rel="prefetch" href="/docs/assets/removeserviceworker-CWQpv6MD.js" as="script"><link rel="prefetch" href="/docs/assets/sample-rKQKOG12.js" as="script"><link rel="prefetch" href="/docs/assets/stackblitz-DA3DcIUI.js" as="script"><link rel="prefetch" href="/docs/assets/testimonial-yd4jmUbJ.js" as="script"><link rel="prefetch" href="/docs/assets/tool-tile-DaqpZjM0.js" as="script"><link rel="prefetch" href="/docs/assets/tool-tiles-BfEF3OW4.js" as="script"><link rel="prefetch" href="/docs/assets/video-embed-Dnh8jbMt.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-CRZRGfEE.js" defer></script>
</body>
</html>
Loading

0 comments on commit 3024dad

Please sign in to comment.