Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions extensions/2.0/OMI_ref/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# OMI_ref

## Contributors

* Robert Long, Element Inc.

## Status

Open Metaverse Interoperability Group Stage 1 Proposal

## Dependencies

Written against the glTF 2.0 spec.

## Overview

This extension allows a glTF document to reference resources in other glTF documents. This enables better resource sharing between assets, streaming / progressive enhancement, and authoring use-cases.

### Example:

Root File:

```json
{
"scenes": [
{
"name": "Default Scene",
"nodes": [0]
}
],
"nodes": [
{
"name": "Duck",
"translation": [1.0, 2.0, 3.0],
"extensions": {
"OMI_ref": {
"uri": "asset.glb",
"scene": 0
}
}
}
]
}
```

Referenced File (asset.glb):

```json
{
"scenes": [
{
"name": "Duck",
"nodes": [0]
}
],
"nodes": [
{
"mesh": 0
}
]
}
```

## glTF Schema Updates

TODO

### JSON Schema

TODO

## Known Implementations

* Third Room (Design Phase) - https://github.com/thirdroom/thirdroom

## Resources

TODO