10 min read
100 views
虚幻引擎 Mover2.0 资源

罗传月武(YueWu)
Published: May 5, 2025•Updated: May 14, 2025

介绍
本文搜集一些关于虚幻引擎5推出的Mover2.0的一些相关资源,文章。
官方资源
来自我
知乎
Youtube
An Introduction to the Mover Plugin | Unreal Fest 2024
Mover 2.0 Overview - New character movement solution in UE5
踩坑指南
定位到项目设置->Project->NetworkPrediction,在这里把PreferedTickingPolicy设置为Independent。
空指针问题
Mover上的MovementMixer会在Beginplay时自动创建,但是引擎其他地方的代码会提前访问该对象,因此建议继承一份MoverComponent,或者通过其他对象,在InitializeComponent阶段手动创建MovementMixer。
目前角色最好是直接放置在场景中,否则问题多多,NetworkPrediction里的调用时机是在MoverComponent的InitializeComponent之前,因此会产生崩溃。