summaryrefslogtreecommitdiff
path: root/modules/xatlas_unwrap
diff options
context:
space:
mode:
authorAdam Brown <adamwbrown@gmail.com>2020-12-02 09:22:35 -0800
committerAdam Brown <adamwbrown@gmail.com>2020-12-02 09:22:35 -0800
commit9367b1d6c11c3f1960e0bcd2bfe64685da3bfc1b (patch)
treef1d5b20437859301ec546022ca0a1ef2b2548c1d /modules/xatlas_unwrap
parent3beab2646fa8744a84382d9fcfb73848404fe5b5 (diff)
xatlas should be using the options configured here
It was using the defaults by mistake
Diffstat (limited to 'modules/xatlas_unwrap')
-rw-r--r--modules/xatlas_unwrap/register_types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/xatlas_unwrap/register_types.cpp b/modules/xatlas_unwrap/register_types.cpp
index 19b827929d..224038d604 100644
--- a/modules/xatlas_unwrap/register_types.cpp
+++ b/modules/xatlas_unwrap/register_types.cpp
@@ -145,7 +145,7 @@ bool xatlas_mesh_lightmap_unwrap_callback(float p_texel_size, const float *p_ver
ERR_FAIL_COND_V_MSG(err != xatlas::AddMeshError::Success, false, xatlas::StringForEnum(err));
printf("Generate..\n");
- xatlas::Generate(atlas, chart_options, xatlas::PackOptions());
+ xatlas::Generate(atlas, chart_options, pack_options);
*r_size_hint_x = atlas->width;
*r_size_hint_y = atlas->height;