Files
armorpaint/paint/assets/plugins/import_fbx.js
T
luboslenco 3dbdf2b3ed Cleanup
2025-08-07 14:58:38 +02:00

13 lines
271 B
JavaScript

function import_fbx(path) {
let b = data_get_blob(path);
data_delete_blob(path);
return io_fbx_parse(b);
}
let plugin = plugin_create();
path_mesh_importers_set("fbx", import_fbx);
plugin_notify_on_delete(plugin, function() {
path_mesh_importers_delete("fbx");
});