mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 03:44:10 +02:00
Add .glb item type.
This commit is contained in:
parent
83bbbbb8b1
commit
100bf3a91e
2 changed files with 4 additions and 0 deletions
|
@ -282,6 +282,7 @@ function startup() {
|
|||
onClosed: onClosed
|
||||
});
|
||||
}
|
||||
|
||||
startup();
|
||||
|
||||
Script.scriptEnding.connect(function () {
|
||||
|
|
|
@ -858,6 +858,9 @@ export default {
|
|||
case ".gltf":
|
||||
detectedItemType = "MODEL";
|
||||
break;
|
||||
case ".glb":
|
||||
detectedItemType = "MODEL";
|
||||
break;
|
||||
// Script Cases
|
||||
case ".js":
|
||||
detectedItemType = "SCRIPT";
|
||||
|
|
Loading…
Reference in a new issue