Merge pull request #12378 from volzhs/fix-examplecode-editorimportplugin

Fix example code for EditorImportPlugin

[ci skip]
This commit is contained in:
Rémi Verschelde 2017-10-24 18:57:32 +02:00 committed by GitHub
commit b44fb58c90

View file

@ -39,8 +39,8 @@
return [{"name": "my_option", "default_value": false}]
func load(src, dst, opts, r_platform_variants, r_gen_files):
var f = File.new()
if f.open(src, File.READ) != OK:
var file = File.new()
if file.open(src, File.READ) != OK:
return FAILED
var mesh = Mesh.new()