@3dverse/api 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
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
  }