Browse Source

fix object select API

Lu Jiacheng 6 years ago
parent
commit
f862467742
1 changed files with 1 additions and 1 deletions
  1. 1 1
      io_scene_godot/export_godot.py

+ 1 - 1
io_scene_godot/export_godot.py

@@ -159,7 +159,7 @@ class GodotExporter:
             if not obj.visible_get():
                 return False
 
-        if self.config["use_export_selected"] and not obj.select:
+        if self.config["use_export_selected"] and not obj.select_get():
             return False
 
         self.exporting_objects.add(obj)