Welcome to Needle Engine! To achieve the functionality you described, you’d be working primarily within Needle Engine, leveraging Three.js functionality for rendering and interaction in your AR application.
Here’s a step-by-step plan:
Model Preparation:
Make sure your town model from Blender is exported in a compatible format (e.g., glTF or GLB) for Needle Engine.
Setup Hotspots:
For each building, set up interactive hotspots using Plane or any geometry as a clickable area. You can create invisible clickable bounds in your scene.
Popup Information:
When a hotspot is clicked, show a popup with information about the building. You can create a UI element (like a div or canvas overlay) that becomes visible upon clicking a hotspot.
Text Buttons:
Create buttons within the popup to trigger actions or animations (like playing a specific animation of that building).
Integration:
Use Needle Engine components and behaviors to bind the interactions and actions together. You would use the “Everywhere Actions” concept to configure your clickable elements.
Here’s a simplified pseudocode structure:
import { Hotspot, Popup, Button } from "@needle-tools/engine";
// Assuming you have a town loaded as 'townModel'
const townModel = loadTownModel();
// For each building in the model
townModel.buildings.forEach(building => {
const hotspot = new Hotspot(building.position);
hotspot.onClick(() => {
const popup = new Popup(building.info);
popup.show();
// Add buttons to the popup
const button = new Button('See Animation');
button.onClick(() => {
playAnimation(building.animation);
});
popup.addButton(button);
});
});
To summarize:
Use Needle Engine for the features you want (not Blender or Unity).
Create hotspots for interactivity.
Implement popups and buttons for information and actions.
You don’t necessarily need to create planes for hotspots in Blender. Instead, you can do it directly in Needle Engine after you’ve imported your town model. Here’s how to proceed:
Model Export:
First, export your town model from Blender without adding any planes. Use a format like glTF or GLB.
Add Hotspots in Needle Engine:
After importing your town model into Needle Engine, create hotspots programmatically in your JavaScript code. You can define the position of each hotspot in relation to the buildings.
Hotspot Creation Example:
You can add the hotspots in your scene by specifying their positions, which correspond to the locations of each building. This way, you keep your Blender model simple and lightweight.
Here’s an example of how to create a hotspot after importing your model:
import { Hotspot } from "@needle-tools/engine";
const townModel = loadTownModel(); // Function to load your town
const buildings = [
{ position: new THREE.Vector3(x1, y1, z1), info: 'Info about building 1', animation: 'anim1' },
{ position: new THREE.Vector3(x2, y2, z2), info: 'Info about building 2', animation: 'anim2' },
// Add more buildings as needed
];
buildings.forEach(building => {
const hotspot = new Hotspot(building.position);
hotspot.onClick(() => {
const popup = new Popup(building.info);
popup.show();
const button = new Button('See Animation');
button.onClick(() => {
playAnimation(building.animation);
});
popup.addButton(button);
});
});
This way, you keep your Blender model clean and manage interactivity directly in Needle Engine.
Let me know if you need further clarification or assistance!
0 replies left - Get a PRO license for more AI replies. thread_FVPRubePcJRETxqsjsUHlToP Reply to this message to continue the conversation
Alright. I will try that. Do I need PRO Version to use this Needle Engine as Web Component? By the way, in my blender. I do not use Needle Engine Add On. Should I use that? Because right now my model is around 5mb after compression with third party. The model can be open in GLTF Report website and Google Model Viewer website. Sorry for asking such newbie question.
Hi dhbasiirzulkifle, I’m sorry but I can’t help you right now. You have reached the maximum number of replies. . Please try again later or get a PRO license for more AI help.
**
Hi, you can use the web component with a free version as well.
What are you using for compression and what’s the size of your model? With our compression you can get up to 90% size reduction with our LOD generation for meshes and textures.
You can also use https://cloud.needle.tools with your uncompressed model to get the optimized version and also a direct link that you can then load in <needle-engine src="..."></needle-engine>