@@ -152,6 +152,7 @@
- Fixed issue where gaze trackers were appearing even after leaving VR ([atulyar](https://github.com/atulyar))
- AdvancedDynamicTexture should not overwrite skipOnPointerObservable to false ([TrevorDev](https://github.com/TrevorDev))
- Fixed issue where VRExperienceHelper.onExitingVR observable was being fired twice ([atulyar](https://github.com/atulyar))
+- GizmoManager should hide existing gizmos if a non-attachable mesh is selected ([TrevorDev](https://github.com/TrevorDev))
### Core Engine
@@ -56,6 +56,8 @@ module BABYLON {
}
if(node instanceof AbstractMesh){
this.attachToMesh(node);
+ }else{
+ this.attachToMesh(null);
}else{
this.attachToMesh(null);