From 56e92730478fd6d95db1f18d791da50f68f8d2aa Mon Sep 17 00:00:00 2001 From: Martin Green Date: Wed, 7 Jun 2023 22:45:36 +0100 Subject: [PATCH] changed source of 3d files for cave viewer, to see if it works better --- templates/cave.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/cave.html b/templates/cave.html index 0ed5520..afd81ea 100644 --- a/templates/cave.html +++ b/templates/cave.html @@ -25,7 +25,8 @@ // Note the special code in views.caves.py to do this. The appropriate .svx/.3d file may not be simply the cave name +.3d const ui = new CV2.CaveViewUI( viewer ); - ui.loadCave('{{svx3d}}.3d'); + //ui.loadCave('{{svx3d}}.3d'); + ui.loadCave('/cave/3d/{{cave}}'); } window.onload = onLoad;