Hi! I’m trying to have 3D buttons created for each animation in an imported .glb and populate a 3D stackpanel with the 3D buttons.
Can someone please tell me why the following works for creating buttons for each animation in the .glb with a 2D GUI? (see lines 129-159)
See demo here: Babylon.js Playground (babylonjs.com)
var advancedTexture = BABYLON.GUI.AdvancedDynamicTexture.CreateFullscreenUI("Header");
advancedTexture.idealHeight = 1080;
var animBtnsPanel = new BABYLON.GUI.StackPanel("animBtns");
animBtnsPanel.horizontalAlignment = BABYLON.GUI.Control.HORIZONTAL_ALIGNMENT_RIGHT;
animBtnsPanel.width = "25%";
advancedTexture.addControl(animBtnsPanel);
var currGroup;
for (let group of result.animationGroups) {
// Add a button for that group
group.stop();
var groupBtn = BABYLON.GUI.Button.CreateSimpleButton(group.name, group.name);
groupBtn.width = 0.95;
groupBtn.height = "80px";
groupBtn.color = "white";
groupBtn.fontSize = 20;
groupBtn.cornerRadius = "10";
groupBtn.background = "Grey";
groupBtn.paddingBottom = 10;
animBtnsPanel.addControl(groupBtn);
groupBtn.onPointerClickObservable.add(() => {
// Stop other playing animations
for (let othergroup of result.animationGroups) {
if (othergroup !== group) {
othergroup.stop();
}
}
// Play the animation
group.reset();
group.play(true);
currGroup = group;
});
}
But this seemingly similar does not create buttons for each animation when using a 3D stackpanel and Button3d?
var manager2 = new BABYLON.GUI.GUI3DManager(scene);
var anchor4 = new BABYLON.TransformNode("anchor4");
anchor4.position.x = -3;
anchor4.position.y = 6.5;
anchor4.position.z = -5;
anchor4.rotation.x = 0;
anchor4.rotation.y = 3.1416;
anchor4.scaling = new BABYLON.Vector3(0.5, 0.5, 0.5);
var panel = new BABYLON.GUI.StackPanel3D(true);
manager2.addControl(panel);
panel.linkToTransformNode(anchor4);
var currGroup;
for (let group of result.animationGroups) {
// Add a button for that group
group.stop();
var groupBtn = new BABYLON.GUI.Button3D(group.name);
groupBtn.content = group.name;
panel.addControl(groupBtn);
groupBtn.onPointerClickObservable.add(() => {
// Stop other playing animations
for (let othergroup of result.animationGroups) {
if (othergroup !== group) {
othergroup.stop();
}
}
// Play the animation
group.reset();
group.play(true);
currGroup = group;
});
}
I’m trying to recreate the same type of GUI but in 3D space where I have placed 3D buttons around an object with animations.