Hi! I am curious if there a way to update anim blueprint graph animation in editor viewport? Maybe using AnimInstance or AnimInstanceProxy.
I found a way to update animation in viewport using Construction Script. If you set some variables using CS and send them to an animation blueprint then by evaluating CS you can update your anim instance. Like this:
I think that’s heavily protected to be called in editor. You’re correct that the construction script recreates anim instance.
Unfortunately I don’t know if there is any good way to fix this from blueprint. In native, whenever we want to update animation, we run specific sets of code to refresh animation. This is manual process so that we can avoid updating it in editor all the time. Try this if you want, but this will refresh whenever called.
Sadly, I need to control Update Animation in Editor via blueprint and this option only shows up after you drop it in viewport, not in the bp graph. What can be done, thanks!