Of course it can
Great to know that! So back to your objective, to make your character walk, you can either:
- Create a sequencer (seems like the way to go in your case)
- Use blueprint nodes or C++ to move the actor (if you wanna go with procedural animations)
Since the walking animation is already there, you can just set an end point for the character in a sequencer and you’ll be all done
Here’s how:
Create a new level sequence like this:
Place your skeletal mesh to where you want it to be in the scene, select it (either by clicking on it inside the level or from the Outliner window) and while having it selected, click on the Add button with a green plus icon inside the Sequencer window on the bottom, navigate to the Actor to Sequencer option on the menu that pops up and add your skeletal mesh like this:
Now you can add tracks by clicking on the plus icon next to your skeletal mesh that we added to our sequencer. If there isn’t an animation track, add one and select your desired animation.
Then add a transform track. Once that’s done, add a new key by clicking on the small plus icon inside a diamond in between to arrows that face to the opposite directions that are next to the plus (+) icon that’s next to the “transform” text. While you’re there, also click on the green left bracket icon on the bottom.
After that, hold and drag the red slider that determines on which frame we are in the animation. If it’s gonna be a short animation, don’t drag it too much to the right. When you let go of the slider, click on your character and drag it further to wherever you want the walk to end. After you’re done with that, add a new key and also click on the red right bracket on the bottom.
In the end, your sequencer should look like this:
Now, you can select your level sequence that’s placed into the level, navigate to the Details window while having it selected, and tick the checkbox next to Auto Play under Playback > Playback Settings, and your animation will play when the level starts!
Or, you can right click on the skeletal mesh that we added into our sequencer, navigate to the Bake Animation Sequence option on the menu that pops up, hit OK, then under Export, make sure that the Record in World Space option is ticked, and hit Export to Animation. Now you can drag the newly created animation sequence into the scene, navigate to the Details window while having it selected, and set the location to (x = 0, y = 0, z = 0).
Hope this helps!