Ver código fonte

Added support for gltf format (ie: json) to ted2.

Mark Sibly 8 anos atrás
pai
commit
d06d35e3f4
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/ted2/jsondocument.monkey2

+ 1 - 1
src/ted2/jsondocument.monkey2

@@ -70,7 +70,7 @@ Class JsonDocumentType Extends Ted2DocumentType
 	Method New()
 		AddPlugin( Self )
 		
-		Extensions=New String[]( ".json" )
+		Extensions=New String[]( ".json",".gltf" )
 	End
 	
 	Method OnCreateDocument:Ted2Document( path:String ) Override