2024-01-19 20:18:15 +01:00
|
|
|
|
2024-08-24 11:17:02 +02:00
|
|
|
function import_fbx(path) {
|
|
|
|
|
let b = data_get_blob(path);
|
|
|
|
|
data_delete_blob(path);
|
|
|
|
|
return io_fbx_parse(b);
|
2024-01-19 20:18:15 +01:00
|
|
|
}
|
|
|
|
|
|
2024-04-02 15:45:49 +02:00
|
|
|
let plugin = plugin_create();
|
2024-08-24 11:17:02 +02:00
|
|
|
path_mesh_importers_set("fbx", import_fbx);
|
|
|
|
|
plugin_notify_on_delete(plugin, function() {
|
|
|
|
|
path_mesh_importers_delete("fbx");
|
|
|
|
|
});
|