You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for File URLs in Split Model Manifest JSON
It would be highly beneficial to enable the inclusion of file URLs as sources in the split model manifest JSON. Ideally, the format would resemble the following:
Currently, the loadXKTs method necessitates a strict directory structure when calling getXKT(${baseDir}${xktFiles[i]}. Allowing file URLs as sources would offer greater flexibility in file sourcing.
Option to Set manifestSrc as a JavaScript Object
An additional improvement would be the ability to set manifestSrc directly as a JavaScript object, rather than solely as a path to a JSON file. This enhancement would provide more versatility in how the manifest data is handled and integrated.
Update to TypeScript Types
I've observed that the manifestSrc property is currently not included in the TypeScript type LoadXKTModel within the file XKTLoaderPlugin.d.ts.
The text was updated successfully, but these errors were encountered:
Feature requests for consideration:
Support for File URLs in Split Model Manifest JSON
It would be highly beneficial to enable the inclusion of file URLs as sources in the split model manifest JSON. Ideally, the format would resemble the following:
{ "xktFiles": [ "https://url.to.file.ifc", "https://url.to.second.file" ] }
Currently, the loadXKTs method necessitates a strict directory structure when calling getXKT(
${baseDir}${xktFiles[i]}
. Allowing file URLs as sources would offer greater flexibility in file sourcing.Option to Set manifestSrc as a JavaScript Object
An additional improvement would be the ability to set manifestSrc directly as a JavaScript object, rather than solely as a path to a JSON file. This enhancement would provide more versatility in how the manifest data is handled and integrated.
Update to TypeScript Types
I've observed that the manifestSrc property is currently not included in the TypeScript type LoadXKTModel within the file XKTLoaderPlugin.d.ts.
The text was updated successfully, but these errors were encountered: