Goanimate Wrapper 2.0.0 Today
scene = Scene( duration=float, # seconds background=str|dict, # asset id or color music=str, # background audio asset id transition="fade"|"cut"|"wipe" ) Represents a Vyond character with rigging.
project.render_mp4("sales_pitch.mp4")
Register it:
from goanimate import Project, Character, Scene, Action project = Project(title="My First Video", fps=24) Create a character bob = Character(id="bob", style="modern_business", position=(100, 300)) Define a scene scene1 = Scene(duration=5.0, background="office_desk") scene1.add_character(bob) scene1.add_action(bob, Action.WAVE_HAND, start=0.5, end=1.5) scene1.add_dialog(bob, "Hello, world!", start=1.0, end=3.0) goanimate wrapper 2.0.0
scene2 = Scene(8.0, "chart_background") chart = Prop("bar_chart_growth", position=(400,300)) scene2.add_prop(chart) scene2.add_dialog(jane, "We grew 20% this quarter.", start=0, end=3) scene2.camera.zoom(1.8, duration=2.0) project.add_scene(scene2) scene = Scene( duration=float
project = Project( title=str, fps=int (default 24), resolution=(width, height), theme="light"|"dark" ) A continuous timeline segment. # seconds background=str|dict