Is it possible to bind UMG Animation to Slider?

Yes it’s possible. Although I don’t know what type of performance this would have for non-trivial stuff.

  1. Create your animation
  2. Kick off your animation with a “Play Animation Node”
  3. Set Playback Speed of the Play Animation node to 0.0
  4. In your slider widget graph, create a new event “On Value Changed” for the slider
  5. User the “Set Animation Current Time” for your animation. You can use your slider value to drive the Time of the animation

Example blueprint demonstrating this setup: Control UMG animation with slider posted by anonymous | blueprintUE | PasteBin For Unreal Engine 4

I want to play a UMG Animation based on a slider. Is that possible?

Thanks for your answer. Helped a lot :slight_smile: