12 lines
259 B
Haxe
12 lines
259 B
Haxe
package arm.io;
|
|
|
|
import arm.ui.UISidebar;
|
|
|
|
class ExportMesh {
|
|
|
|
public static function run(path: String, applyDisplacement = false) {
|
|
if (UISidebar.inst.exportMeshFormat == FormatObj) ExportObj.run(path, applyDisplacement);
|
|
else ExportArm.run(path);
|
|
}
|
|
}
|