Explorar el Código

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

Mark Sibly hace 8 años
padre
commit
d06d35e3f4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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