@3dverse/api 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_prebuild/wrapper.d.ts +2 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -676,14 +676,16 @@ function exportAsset({
|
|
676
676
|
asset_container_exportable,
|
677
677
|
asset_id,
|
678
678
|
format,
|
679
|
-
scale = 1
|
679
|
+
scale = 1,
|
680
|
+
sub_mesh_index
|
680
681
|
}) {
|
681
682
|
return axiosInstance({
|
682
683
|
method: "get",
|
683
684
|
url: "/assets/" + asset_container_exportable + "/" + asset_id + "/exports/" + format,
|
684
685
|
responseType: "arraybuffer",
|
685
686
|
params: {
|
686
|
-
scale
|
687
|
+
scale,
|
688
|
+
sub_mesh_index
|
687
689
|
}
|
688
690
|
});
|
689
691
|
}
|