ml-hugs icon indicating copy to clipboard operation
ml-hugs copied to clipboard

Bug in Code

Open miraymen opened this issue 5 months ago • 0 comments

There is a bug in l10 in hugs/utils/subdivide_smpl.py

replace

new_smpl = SMPL("data/smpl") 

with

from hugs.cfg.constants import SMPL_PATH  
new_smpl = SMPL(SMPL_PATH  ) 

same at l75

Line 73 hugs/utils/subdivide_smpl add this line

    else:
        new_attributes = None 
             

otherwise meshes with no attribute aren't divided

miraymen avatar Sep 05 '24 18:09 miraymen