Full reference: https://goanimate-wrapper.readthedocs.io After installation:
git clone https://github.com/yourorg/goanimate-wrapper.git cd goanimate-wrapper pip install -e . Create your first animated scene: goanimate wrapper 2.0.0
project = Project( title=str, fps=int (default 24), resolution=(width, height), theme="light"|"dark" ) A continuous timeline segment. Full reference: https://goanimate-wrapper
This guide provides a full blueprint for building and using a GoAnimate-style wrapper. Adapt the asset IDs, TTS engine, and rendering backend to your actual target platform. Adapt the asset IDs, TTS engine, and rendering
char = Character( id=str, # unique per scene style="business_female"|"casual_male"|etc, position=(x, y), # screen percentage or px scale=1.0, facing="left"|"right" ) char.set_expression("happy"|"sad"|"angry"|"surprised") char.set_pose("standing"|"sitting"|"walking") char.look_at(target_x, target_y) 4.4 Actions & Timeline Events Actions are timed behaviors.
from goanimate import Action Action.WAVE_HAND Action.NOD_HEAD Action.SHRUG Action.POINT_UP Action.JUMP Action.WALK_TO(x, y, duration) scene.add_dialog( character=bob, text="Hello world!", start=1.0, end=3.5, tts_voice="en-US_JamesV3", # IBM Watson / Azure style auto_lipsync=True ) If auto_lipsync=True , the wrapper generates mouth shape keyframes based on phonemes. 5. Advanced Usage 5.1 Camera Controls camera = scene.camera camera.pan_to(x=200, y=300, duration=2.0) camera.zoom(level=1.5, duration=1.0) camera.shake(intensity=0.2, duration=0.5) 5.2 Props and Assets from goanimate import Prop laptop = Prop( asset_id="laptop_01", position=(500, 400), layer="foreground"|"midground"|"background" ) scene.add_prop(laptop) scene.animate_prop(laptop, "rotate", angle=45, duration=1.0) 5.3 Conditional Logic & Variables Use variable substitution to create dynamic videos: