> Class to edit age of the human. Accessible from: `human.age` ### Properties --- ##### Age Color: ```py human.age.age_color >>> 'NoneType' object has no attribute 'fget' ``` No docstring available. `Returns 'NoneType' object has no attribute 'fget' ` --- ##### Age Wrinkles: ```py human.age.age_wrinkles >>> 'NoneType' object has no attribute 'fget' ``` No docstring available. `Returns 'NoneType' object has no attribute 'fget' ` --- ##### Keys: ```py human.age.keys >>> list ``` *Read-only* Get a list of all shapekeys and livekeys that affect the age of the human. `Returns list ` --- ### Methods --- ##### As Dict ```py human.age.as_dict() >>> dict ``` *Inherited from [[Could not find source]]* Get the age settings of the human as a dictionary. **Returns:** - `returns (dict)`: dict --- ##### Set ```py human.age.set(age: int, realtime: bool) >>> NoneType ``` *Inherited from [[Could not find source]]* Set the age of the human. **Arguments:** - `age (int)`: Age to set. UI uses increments of 10. - `realtime (bool)`: (bool): Use true if the value will be changed in realtime by a slider in the UI. --- ##### Set From Dict ```py human.age.set_from_dict(data: dict) >>> NoneType ``` *Inherited from [[Could not find source]]* Set the age of the human from a dictionary. **Arguments:** - `data (dict)`: Dictionary with the age of the human. ---