Since I consider console commands to be relevant to the vanilla game, then I think it's fair to answer this here.So among all you modding heroes, how do we change the pubes.style?
Python:
# The available styles so far are the following:
# These are considered Clothing items (the class) so they have the same attributes available
shaved_pubes
trimmed_pubes
landing_strip_pubes
diamond_pubes
default_pubes
# NOTE: They are all listed in the pube_styles list as well
# Type in the following and replace it with whatever style you want, case sensitive.
the_person.pubes_style = diamond_pubes
# Pubes also have a related variable to assign colour.
the_person.pubes_colour = [1, 1, 1, 1] # This is a "RGBA" format where values are between 1.0 and 0, where 1 (1.0) is the max
the_person.pubes_colour = [0.35, 0.1, 0.5, 1]