Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gkjohnson/collada-archive-loader-js
THREE js loader for loading a zipped ZAE Collada file
https://github.com/gkjohnson/collada-archive-loader-js
archived collada dae geometry graphics importer javascript loader model three-js threejs zae
Last synced: 19 days ago
JSON representation
THREE js loader for loading a zipped ZAE Collada file
- Host: GitHub
- URL: https://github.com/gkjohnson/collada-archive-loader-js
- Owner: gkjohnson
- License: mit
- Archived: true
- Created: 2018-03-29T02:05:17.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-10T21:59:31.000Z (about 2 years ago)
- Last Synced: 2025-01-18T00:30:00.758Z (23 days ago)
- Topics: archived, collada, dae, geometry, graphics, importer, javascript, loader, model, three-js, threejs, zae
- Language: JavaScript
- Size: 40 KB
- Stars: 3
- Watchers: 5
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
**In Progress**
# zipped-collada-loader-js
THREE js loader for loading a zipped ZAE Collada filehttps://forums.khronos.org/showthread.php/10740-example-zae-files
### Archive Packaging
[From the Collada 1.5 spec.](https://www.khronos.org/files/collada_spec_1_5.pdf)On import and export, DCC tools must support the .zae format, which is a zip archive of one or several
.dae files (COLLADA documents) and all the referenced content (textures).The archive must include a file named manifest.xml, an XML-encoded file that contains a
element. This element is a UTF8 encoding of the relative URI pointing to a .dae file. If the URI contains a
fragment then the indicated element is the starting point for application loading of the .zae archive.
Otherwise, the element will be the starting point for application loading the .zae archive. If
neither of these conditions is met then the behavior is undefined.
The URIs in the .zae files can reference any other file in the archive using relative paths from the root of the
archive, in accordance with the URI standard.The archive itself may include other archives (zip, rar, kmz, zae). The URI to reference a document
inside a nested archive, itself inside the .zae archive, will use the name of the nested archive in the path.
For example:`./internal_archive.zip/directory/document.dae#element`
It is not possible to reference content outside of an archive using a relative URI, but it is valid to reference
content using an absolute URI, such as:`file:///other_directory/other_document.dae#element`