Forum Replies Created
-
AuthorPosts
-
Alexander KovelenovStaff
Hi,
Older apps require manual editing of the manifest.js file located in the media folder of the app. To do so, open that file in any test editor and add the:"start_url": "../my_awesome_app.html",
line, just below the “name”.
Alternatively, copy/replace and edit the same file from the newer app (e.g. my_awesome_app).
- This reply was modified 1 month, 2 weeks ago by Alexander Kovelenov.
- This reply was modified 1 month, 2 weeks ago by Alexander Kovelenov.
Alexander KovelenovStaffHi Ignacio,
You can use the following code to override the built-in app.onResize() function:
const onResizeOld = app.onResize; app.onResize = function() { onResizeOld.call(app); // place your code here console.log("Resized!"); }
Same with Puzzles:
- This reply was modified 2 months ago by Alexander Kovelenov.
- This reply was modified 2 months ago by Alexander Kovelenov.
- This reply was modified 2 months ago by Alexander Kovelenov.
Attachments:
You must be logged in to view attached files.Alexander KovelenovStaffHi,
If you need to open/close when the mouse cursor is over some 3D object, you might use the “when hovered” puzzle:In case if the hovering happens above the annotation element, use the “mouseenter”/”mouseleave” event handlers:
- This reply was modified 2 months, 1 week ago by Alexander Kovelenov.
- This reply was modified 2 months, 1 week ago by Alexander Kovelenov.
Attachments:
You must be logged in to view attached files.Alexander KovelenovStaffAlexander KovelenovStaffHi,
Best way would be split object parts by collections/groups and use the show/hide puzzles with group selector.- This reply was modified 2 months, 2 weeks ago by Alexander Kovelenov.
Alexander KovelenovStaffAlexander KovelenovStaffHi,
There was Camera.controls object before Verge3D 4.7. Now it is called Camera.controlSettings to reflect the actual meaning of this structure. We keep both supported for a while, but I’d recommend reviewing your code (puzzles) to find the old construction and make proper adjustments.Alexander KovelenovStaffHi,
If the asset won’t be required anymore you might reset its source URL to free the memory (this will make it unusable after that):
If asset will be required, then we might need to consider making another puzzle However… using the snippet above you could restore the old video URL too!
- This reply was modified 2 months, 3 weeks ago by Alexander Kovelenov.
- This reply was modified 2 months, 3 weeks ago by Alexander Kovelenov.
- This reply was modified 2 months, 3 weeks ago by Alexander Kovelenov.
Attachments:
You must be logged in to view attached files.Alexander KovelenovStaffYou might also install recent Blender to a directory in your home folder from the official website.
Alexander KovelenovStaffUnfortunately, the minimal Python version to run Verge3D is 3.7. The Rocky 8.10 release notes state that you have up to Python 3.12 available. Please install the recent version from the repos.
Alexander KovelenovStaffAlexander KovelenovStaffAlexander KovelenovStaff2024-08-23 at 8:17 am in reply to: Windows server 2019 – Running Verge3D Application on IIS 10 #76936Alexander KovelenovStaffAlexander KovelenovStaff -
AuthorPosts