Search code examples
flutter3d2dflutter-animation

Character animations in flutter (like Unity 3D)


Dears, I'm looking into a efficient method to manage different animationsfor a character. This animations will be: talking, thinking, idle, move right/left arm, and others. Any idea to manage this? And maybe having more than one animation at the same time?


Solution

  • Flutter does not support 3d animation yet (Rive is there). you can do complex 2d animation in flutter. But A scenario like you described is recommended to do through Rive or a similar tool.

    I created a small app to demonstrate a basic text animation in flutter.

    This is the DartPad link

    https://dartpad.dev/?null_safety=true&id=1a28bdd9203250d3226cc25d512579ec

    I think this will be helpful to start your journey.