embedding
在您的网站上使用 Needle Engine
Needle Engine 可用于创建新的 web 应用,也可集成到现有网站中。在这两种情况下,您都需要将项目的分发文件夹上传到 web hoster,以便全世界访问。
有几种方法可以将 Needle Engine 与您的网站集成。选择哪种方法取决于许多因素,例如项目的复杂性、您是否使用 custom scripts 或仅使用 core components、您对目标网站的控制程度、您与目标网站之间的“信任级别”等等。
试试看
如果您想快速尝试使用 Needle 制作的项目在您的网站上看起来如何,只需在您的页面上任意位置添加以下两行代码进行测试:
::: code-tabs @tab Option 1: Embedding Needle
<script type="module" src="https://cdn.jsdelivr.net/npm/@needle-tools/engine/dist/needle-engine.min.js"></script>
<needle-engine src="https://cloud.needle.tools/-/assets/ZUBcksQ0gIz-latest-optimized/file"></needle-engine>
@tab Option 2: Using an iframe
<iframe src="https://engine.needle.tools/samples-uploads/musical-instrument/"
allow="xr; xr-spatial-tracking; fullscreen;" width="100%" height="500px">
</iframe>
@tab Resulting Website
:::
使用 Needle 创建 web apps 的方法
将 Needle Engine 带到您的网站的最常见 workflows 是:
使用“Deploy to ...” components
我们的 Needle Engine 集成带有内置 deployment options。只需点击几下,您就可以将项目部署到 Needle Cloud、FTP servers、Glitch、Itch.io、GitHub Pages 等等。
有关这些 options 的更多信息,请参阅Deployment 部分。
在 Unity 或 Blender 中将您想要使用的“Deploy to ...” component 添加到您的 scene 中。
Configure necessary options 并点击“Deploy”。
That's it! 您的项目现在已上线。
:::tip Recommended Workflow 这是最简单的 option,recommended for most workflows – it's very fast! 您可以在 computer 上 iteratively work on your project,然后上传一个 new version 到 web in seconds。 :::
将您的 web app 上传到 folder
如果您不想使用我们的“Deploy to...” components,或者您的 particular workflow 没有 component,您可以 do the same process manually。The resulting web app 将会 identical to what you see in your local server while working on the project。
Make a production build of your web project。这将创建一个
dist/
folder,其中包含所有 necessary files,ready for distribution。It contains all necessary files,including the JavaScript bundle,the HTML file,and any other assets like textures、audio、or video files。Upload the content of the
dist/
folder from your Web Project to your web hoster。您可以通过 FTP、SFTP 或您的 hoster provides 的 any other file transfer method 进行此操作。Look at the documentation of your web hoster for details。That's it! 您的 web app 现在已上线。
::: tip The folder location influences the URL of your web app. Depending on your hoster's settings, the folder location and name determine what the URL of your web app is. Here's an example:
Your domain
https://your-website.com/
points at the folder/var/www/html
on your webspace.You upload your files to
/var/www/html/my-app
so that theindex.html
file is at/var/www/html/my-app/index.html
.The URL of your web app is now
https://your-website.com/my-app/
. :::
Embedding a Needle project into an existing website
In some cases, you want a Needle Engine project to be part of an existing web site, for example as a part of a blog post, a product page, or a portfolio. The process is very similar, but instead of uploading the files to the root of your web space, you embed the project into an existing website with a few lines of code.
Make a production build of your web project. This will create a
dist/
folder with all necessary files, ready for distribution. It contains all necessary files, including the JavaScript bundle, the HTML file, and any other assets like textures, audio, or video files.Upload the
dist/
folder from your Web Project to your web hoster. ::: tip The folder can be hosted anywhere! If you don't have access to your web hoster's file system, or no way to upload files there, you can upload the folder to any other webspace and use the public URL of that in the next step. :::Inside your
dist
folder, you'll find anindex.html
file. We want to copy some lines from this folder, so open the file in a text editor. Typically, it looks like this:<head> ... <script type="module" crossorigin src="./assets/index-732f0764.js"></script> ... </head> <body> <needle-engine src="assets/scene.glb"></needle-engine> </body>
There are two important lines here:
the JavaScript bundle inside
<script>
,the
<needle-engine>
HTML tag.
On the target website, add the
<script...>
and<needle-engine...>
tags as well. Make sure that the paths point at the location where you have uploaded the files to.<script type="module" src="/your-upload-folder/assets/index-732f0764.js"></script> <needle-engine src="/your-upload-folder/assets/scene.glb"></needle-engine>
That's it! The scene should now be displayed on your website.
Embedding a Needle project as iframe
When you have limited access to a website, for example when you're using a CMS like WordPress, you can use an iframe to embed a Needle Engine scene into your website. You may know this workflow from embedding YouTube videos or Sketchfab models.
Make a production build of your web project. This will create a
dist/
folder with all necessary files, ready for distribution.Upload the
dist/
folder from your Web Project to your web hoster. ::: tip The folder can be hosted anywhere! If you don't have access to your web hoster's file system, or no way to upload files there, you can upload the folder to any other webspace and use the public URL of that in the next step. :::Add an iframe to your website, pointing to the
index.html
file in thedist/
folder.<iframe src="https://your-website.com/needle-files/dist/index.html" allow="xr; xr-spatial-tracking; fullscreen;"> </iframe>
::: tip Permissions inside iframes The list inside
allow=
depends on the features your web app uses. For example, XR applications requirexr
andxr-spatial-tracking
to work inside iframes.There may be additional features needed, for example
camera; microphone; xr-spatial-tracking; accelerometer; gyroscope; display-capture; geolocation;
. See the full list of iframe Permissions Policy directives on MDN. :::That's it! The scene should now be displayed on your website.
Embedding scenes that use no custom scripts
When your project uses only core components and no custom scripts, you can directly use Needle Engine from a CDN (content-delivery network).
Add the following snippet to your website, for example as "HTML Block" in your CMS:
<script type="module" src="https://cdn.jsdelivr.net/npm/@needle-tools/engine/dist/needle-engine.min.js"></script> <needle-engine src="https://cloud.needle.tools/api/v1/public/873a48a/10801b111/MusicalInstrument.glb" background-blurriness="0.8"></needle-engine>
Upload the
assets/
folder from your Web Project to your web hoster. Depending on your project settings, this folder contains one or more.glb
files and any number of other files like audio, video, skybox and more.Change the
src=
attribute of theneedle-engine
tag to the URL of the.glb
file you want to display. Typically, this will be some path likehttps://your-website.com/assets/MyScene.glb
.That's it! The scene should now be displayed on your website.
Embedding a Needle Cloud web app as iframe
If you deployed your project to Needle Cloud, you can easily display it on your own website with an iframe.
::: warning Under construction. This section is not yet complete. :::
Common Workflows
Creating a web app for a client's website
Understand what type of app you're building, and if and how it connects to an existing website. Often, you're building a standalone app that is accessible from a link on the client's domain. But there might also be other server-side and client-side components involved.
Understand which URL the web app should be accessible from. This could either be
A page on Needle Cloud
collaborativesandbox-zubcks1qdkhy.needle.run
A Subpage on the client's website
my-page.com/app
A new Subdomain
app.my-page.com
A new or existing Domain
my-app.com
::: tip There's no "good" or "bad" here. A typical approach is to start on Needle Cloud for initial prototypes and during development, and move to the client's webspace and domain for the final version.
The choice mostly depends on the client's requirements regarding branding, SEO, and technical setup. Often, you'll have to discuss this with the client's IT department or webmaster. :::
Understand how the web app will be deployed and maintained.
Will you have access to a folder on the client's web server so you can upload the latest version, or do they want to manage the deployment themselves? ::: tip A simple approach: FTP access Often, you can ask for FTP or SFTP access to a folder on the client's web server. You'll get a URL, username, and password, and then you can upload your files to that folder. We provide a "Deploy to FTP" component that makes this particularly easy. The client's IT department will set up which URL the folder is accessible from. :::
Is there a lot of content that needs to be updated regularly, or is the app mostly static? ::: tip Static vs. dynamic content For mostly static content, it's often enough to upload a new build from time to time. For dynamic content, you might need a CMS (content management system) or a database connection. :::
Which devices and browsers are the target audience using? ::: tip Browser compatibility and testing While Needle Engine works on all modern devices and browsers, it's always a good idea to test your app on the devices and browsers your target audience is using to make sure everything works as expected. For example, when creating an AR app for phones, you'll want to test across Android and iOS devices. :::
Set up the project, a test deployment, and client deployment. It's often a good idea to test the deployment process early on, to make sure you understand how it works and what the requirements are. For example, when you've decided on using FTP, then you could set up a test folder on your own web server and test the deployment process there. Once changes are approved by the client, you can then deploy to the client's server.
Start creating! With requirements and deployment in place, go ahead and start making your project! You'll usually iterate locally, then deploy to your test server for approval, and then to the client's server.
Wordpress
Decide on the method you want to use to embed your Needle Engine project. You can either use the "Embedding a Needle project into an existing website" method, or the "Embedding a Needle project as iframe" method.
Upload the content of the
dist/
folder from your Web Project to your web hoster. Usually, the Wordpress uploads directory is located atwp-content/uploads/
.::: tip Wordpress Backups You can decide if your new project should be at
wp-content/uploads/my-project/
, or at a different location likemy-projects/my-project
. This affects if and how your project will be contained in Wordpress backups. :::In the page you want to add Needle Engine to, add a
HTML
block and paste the code snippet as outlined above – either as script embed, or as iframe.
Shopify
::: warning Under construction. Needs to be documented. :::
Wix
::: warning Under construction. Needs to be documented. :::
Webflow
::: warning Under construction. Needs to be documented. :::
页面由 AI 自动翻译
Last updated