renpy/doc/reference/functions/DynamicCharacter
From Ren'Py
DynamicCharacter
| Function: | DynamicCharacter | (name, **kwargs): |
Equivalent to calling Character with the same arguments, and with the dynamic argument set to true.
Example
init: $ povname = "" $ pov = DynamicCharacter("povname", color=(192, 64, 64, 255)) $ povname = renpy.input("What is your name?") pov "My name is %(povname)s."
