Browse Source

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

Mark Sibly 8 năm trước cách đây
mục cha
commit
d06d35e3f4
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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