mirror of https://github.com/AxioDL/metaforce.git
Disable contiguous surface splitting
This commit is contained in:
parent
b6af26fa91
commit
3cc65704d3
|
@ -33,8 +33,9 @@ def write_out_material(writebuf, mat, mesh_obj):
|
||||||
|
|
||||||
# If this returns true, the material geometry will be split into contiguous faces
|
# If this returns true, the material geometry will be split into contiguous faces
|
||||||
def should_split_into_contiguous_faces(mat):
|
def should_split_into_contiguous_faces(mat):
|
||||||
return mat.game_settings.alpha_blend != 'OPAQUE' and \
|
return False
|
||||||
'retro_depth_sort' in mat and mat['retro_depth_sort']
|
#return mat.game_settings.alpha_blend != 'OPAQUE' and \
|
||||||
|
# 'retro_depth_sort' in mat and mat['retro_depth_sort']
|
||||||
|
|
||||||
# Takes a Blender 'Mesh' object (not the datablock)
|
# Takes a Blender 'Mesh' object (not the datablock)
|
||||||
# and performs a one-shot conversion process to HMDL
|
# and performs a one-shot conversion process to HMDL
|
||||||
|
|
Loading…
Reference in New Issue