Hi Carol, thanks,
I’m not creating the 3D object, so difficult for me to act on it.
As you can see, my 3D objects are really simple.
It easy to manually add points and axis on it through Babylon:
import * as BABYLON from ‘@babylonjs/core’;
class objectAnchors {
constructor(mesh, anchors) {
this.mesh = mesh;
this.anchors = anchors || [];
this.visuals = []; // Stocke les objets visuels créés
this.createVisuals(); // Crée les visuels lors de l'initialisation
}
// addAnchor(position, orientation) {
// const anchor = { position, orientation };
// this.anchors.push(anchor);
// this.createVisualForAnchor(anchor); // Créer les visuels pour le nouvel ancrage
// }
createVisuals() {
this.anchors.forEach(anchor => this.createVisualForAnchor(anchor));
}
createVisualForAnchor(anchor) {
const scene = this.mesh.getScene();
// Créer une sphère pour le point d'ancrage
const anchorSphere = BABYLON.MeshBuilder.CreateSphere("anchor", { diameter: 0.05 }, scene);
anchorSphere.position = anchor.position.add(this.mesh.position);
anchorSphere.material = new BABYLON.StandardMaterial("anchorMat", scene);
anchorSphere.material.diffuseColor = new BABYLON.Color3(1, 0, 0); // Rouge
anchorSphere.parent = this.mesh;
// Créer une ligne pour l'axe
const axisLine = BABYLON.MeshBuilder.CreateLines("axis", {
points: [
anchor.position.add(this.mesh.position),
anchor.position.add(this.mesh.position).add(anchor.orientation.scale(0.5))
]
}, scene);
axisLine.color = new BABYLON.Color3(0, 1, 0); // Vert
axisLine.parent = this.mesh;
//Stocker les objets visuels
this.visuals.push(anchorSphere, axisLine);
}
}
const paletAnchorsData = [
{ position: new BABYLON.Vector3(0, 0, 0), orientation: new BABYLON.Vector3(0, 0, 1) },
{ position: new BABYLON.Vector3(0, 0, 0), orientation: new BABYLON.Vector3(0, 0, -1) },
// { position: new BABYLON.Vector3(0, 0, 0.5), orientation: new BABYLON.Vector3(0, 0, 1) },
];
const interfaceAnchorsData = [
{ position: new BABYLON.Vector3(0, 0, 0), orientation: new BABYLON.Vector3(0, 0, 1) },
{ position: new BABYLON.Vector3(0, 0, -0.1), orientation: new BABYLON.Vector3(0, 0, -1) },
// { position: new BABYLON.Vector3(0, 0, 0.5), orientation: new BABYLON.Vector3(0, 0, 1) },
];
export { objectAnchors, paletAnchorsData, interfaceAnchorsData };
Then I “call” them when I add an object :
export function addPaletToScene(scene, camera, canvas) {
BABYLON.SceneLoader.ImportMesh(“”, “public/”, “Palet.glb”, scene, function (meshes) {
meshes.forEach((mesh) => {
setupDragAndRotateBehaviors(mesh, scene, camera, canvas);
// Crée une instance de ObjectAnchors avec les données d’ancrage pour Palet
const paletAnchors = new objectAnchors(mesh, paletAnchorsData);
});
addToCart(“Palet”);
});
}
export function addInterfaceToScene(scene, camera, canvas) {
BABYLON.SceneLoader.ImportMesh(“”, “public/”, “Interface.glb”, scene, function (meshes) {
meshes.forEach((mesh) => {
setupDragAndRotateBehaviors(mesh, scene, camera, canvas);
// Crée une instance de ObjectAnchors avec les données d’ancrage pour Interface
const interfaceAnchors = new objectAnchors(mesh, interfaceAnchorsData);
});
addToCart(“Interface”);
});
}
As you can see, the points and the axis (two per object) are well created : (centered to the object)
But I don’t understand why, it also create two other points and axis located “under” the object when inserted to the scene.
After randomly moving the object in the scene, I can see that there is no link between my object or my object bounding box.
Any idea from where they can come ?
Thanks.
EDIT :
It seems to come from that the points and axis are associated to two different mesh :
Now I have to understand why there is a “color” and a “root” mesh.
EDIT2 :
Got it, i simply added :
if (this.mesh.name === “color”) {…
before create the point and line.
Now I have to find the way to “snap” / “magnetise” the point following the axis !