OliverJPost / HumGen3D

Main code of the Human Generator 3D add-on for Blender
GNU General Public License v3.0
79 stars 14 forks source link

Expression "smile" shrinks body #54

Closed OliverJPost closed 1 year ago

OliverJPost commented 1 year ago

image

b26354nz commented 1 year ago

I'm also seeing this issue when batch creating characters via a python script with v4 beta running in blender3.4.1 - If I generate 20 people I see 1 or 2 small bodies. If I generate 80 people I see 5 or 6 small bodies. Clothing is correct size.

Python used to generate:

import bpy

for i in range(0,20):
    bpy.ops.hg3d.add_batch_marker(marker_type="a_pose")

for obj in bpy.context.scene.objects:
    if obj.name.startswith("HG_MARKER_A"):
        obj.select_set(True)
bpy.context.scene.HG3D.batch.standard_deviation = 0
bpy.context.scene.HG3D.batch.male_chance = 100
bpy.context.scene.HG3D.batch.female_chance = 0
bpy.context.scene.HG3D.batch.Caucasian_chance = 100
bpy.context.scene.HG3D.batch.Asian_chance = 5
bpy.context.scene.HG3D.batch.bookdump_chance = 0
bpy.context.scene.HG3D.batch.Caucasian_chance = 100
bpy.context.scene.HG3D.batch.MiddleEastern_chance = 5
bpy.context.scene.HG3D.batch.Black_chance = 0
bpy.context.scene.HG3D.batch.Hispanic_chance = 0

bpy.ops.hg3d.generate(run_immediately=False)
OliverJPost commented 1 year ago

Fixed in internal files, will be included in next update