From da3e61df9c82cae6d0f588fea4c4dce44e6ff7b2 Mon Sep 17 00:00:00 2001 From: Justin Georgi Date: Mon, 28 Oct 2024 13:56:39 -0700 Subject: [PATCH] Remove interation promt Signed-off-by: Justin Georgi --- includes/GlModelTransformOutput.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlModelTransformOutput.php b/includes/GlModelTransformOutput.php index 0c18528..724ba3a 100644 --- a/includes/GlModelTransformOutput.php +++ b/includes/GlModelTransformOutput.php @@ -107,7 +107,7 @@ class GlModelTransformOutput extends MediaTransformOutput { } //Add important additional attributes and render model-viewer with hotspots - $attrModelView = array_merge(['src' => $srcUrl, 'class' => 'mv-model', 'interpolation-decay' => '100'], $attrModelView); + $attrModelView = array_merge(['src' => $srcUrl, 'class' => 'mv-model', 'interpolation-decay' => '100', 'interaction-prompt' => 'none'], $attrModelView); $attrModelView['style'] = 'width: 100%; height: 100%;'; $hotspotHtml = (isset($hotspots)) ? implode($hotspots) : '';