senangwebs-tour 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/swt-editor.js +437 -35
- package/dist/swt-editor.js.map +1 -1
- package/dist/swt-editor.min.js +1 -1
- package/dist/swt.js +1 -2
- package/dist/swt.js.map +1 -1
- package/dist/swt.min.js +1 -1
- package/package.json +1 -1
- package/src/editor/editor-entry.js +2 -0
- package/src/editor/js/editor.js +96 -0
- package/src/editor/js/event-emitter.js +263 -0
- package/src/editor/js/export-manager.js +47 -1
- package/src/editor/js/ui-controller.js +1 -1
- package/src/index.js +1 -2
package/dist/swt.js
CHANGED
|
@@ -56583,8 +56583,7 @@ void main() {
|
|
|
56583
56583
|
let cursor = camera.querySelector("[cursor]");
|
|
56584
56584
|
if (!cursor) {
|
|
56585
56585
|
cursor = document.createElement("a-cursor");
|
|
56586
|
-
cursor.setAttribute("fuse", "
|
|
56587
|
-
cursor.setAttribute("fuse-timeout", "1500");
|
|
56586
|
+
cursor.setAttribute("fuse", "false");
|
|
56588
56587
|
camera.appendChild(cursor);
|
|
56589
56588
|
}
|
|
56590
56589
|
}
|