summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-12-19 12:16:55 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-12-19 12:16:55 -0300
commit8b01b2e85cb7ed60209c925f1e123374272bd8c8 (patch)
tree454c2b2a5432e9ce3703e5f97cf9457309284f69 /modules
parent1eb1837d0cf95c2c12d8ec51127e222f6f4888c5 (diff)
-Fix some crashes in unwrapper
-Add emission lighting to raytrace mode, fixes #14686
Diffstat (limited to 'modules')
-rw-r--r--modules/thekla_unwrap/register_types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/thekla_unwrap/register_types.cpp b/modules/thekla_unwrap/register_types.cpp
index ab3203068f..da6c1bab2a 100644
--- a/modules/thekla_unwrap/register_types.cpp
+++ b/modules/thekla_unwrap/register_types.cpp
@@ -65,7 +65,7 @@ bool thekla_mesh_lightmap_unwrap_callback(float p_texel_size, const float *p_ver
Thekla::atlas_set_default_options(&options);
options.packer_options.witness.packing_quality = 1;
options.packer_options.witness.texel_area = 1.0 / p_texel_size;
- options.packer_options.witness.conservative = true;
+ options.packer_options.witness.conservative = false;
//generate
Thekla::Atlas_Error err;