Home › Forums › Graphics / Blender › Verg3D demo pages will not load in browser from URL
- This topic has 17 replies, 3 voices, and was last updated 1 year, 6 months ago by kdv.
-
AuthorPosts
-
2023-05-02 at 5:09 pm #63420kdvParticipant
is that compressed assets are preferable to use
They are not preferable. It’s you who decides what assets to use. By default compressed assets are not enabled in Puzzles.
You can find all supported mime types in this file
Or you can use the universal type
application/octet-stream
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
2023-05-02 at 5:42 pm #63425jefferywrightParticipantkdv,
My server is what I am discussing here, your server may be another story but that’s not what I am concerned about. My server needs to be configured to serve gltf.xz thus my attempts to find an answer that may benefit others facing this issue.
For those keeping score: So far, the answer appears to be: Adding this to my web.config stopped the gltf.xz error I received and in addition to fixing new errors that cropped up as a result, since :
<mimeMap fileExtension=".gltf.xz" mimeType="application/zip" /> <mimeMap fileExtension=".bin.xz" mimeType="application/zip" /> <mimeMap fileExtension=".hdr.xz" mimeType="application/zip" />
..resulting of course, in an entirely new error I am now coping with, for the teapot demo:
v3d.GLTFLoader: Couldn't load texture teapot_heater_OcclusionRoughnessMetallic.ktx2
All I could find on that format is summed up in this addition to my config file, that solves nothing:
<mimeMap fileExtension=".ktx2" mimeType="image/ktx2" />
= I still get that error.Never a dull moment, is there? Which again brings me to the same question: Why is the Verge3D network able to serve that format? What configuration are they using that allows it? If I knew I could configure my server to do what theirs is doing.
It would be handy if that information were available somewhere discoverable to refer to, does it exist and I just haven’t found it?
Thanks.
Interactive Multimedia and Visual Design
https://jefferywright.com/2023-05-02 at 5:46 pm #63426kdvParticipantuse the universal type
application/octet-stream
My server is what I am discussing here
And that’s the problem ))) Nobody knows what server and what settings you are using )))
v3d.GLTFLoader: Couldn’t load texture teapot_heater_OcclusionRoughnessMetallic.ktx2
Most likely you need to add one more extension “.wasm” for basis_transcoder.wasm (ktx2 loader binary)
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
-
AuthorPosts
- You must be logged in to reply to this topic.