import_fbx.js 271 B

123456789101112
  1. function import_fbx(path) {
  2. let b = data_get_blob(path);
  3. data_delete_blob(path);
  4. return io_fbx_parse(b);
  5. }
  6. let plugin = plugin_create();
  7. path_mesh_importers_set("fbx", import_fbx);
  8. plugin_notify_on_delete(plugin, function() {
  9. path_mesh_importers_delete("fbx");
  10. });