UE5.1 使用ChaosVehiclesPlugin 车轮不动

PC系统:Ubuntu18.04

UE:5.1.0

使用插件ChaosVehiclesPlugin开发车辆相关功能, 车轮不动

Engine/Source/ UnrealEditor.Target.cs 中添加

  bCompileChaos = true;
  bUseChaos = true;

  6 public class UnrealEditorTarget : TargetRules
  7 {
  8         public UnrealEditorTarget( TargetInfo Target ) : base(Target)
  9         {
 10                 Type = TargetType.Editor;
 11                 IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
 12                 BuildEnvironment = TargetBuildEnvironment.Shared;
 13                 bBuildAllModules = true;
 14                 ExtraModuleNames.Add("UnrealGame");
 15                 bCompileChaos = true;
 16                 bUseChaos = true;
 17         }
 18 }

参考:UE4.26 UE4.27 Chaos Vehicle 车辆运动组件无法控制车轮 不能正常使用的问题 - 哔哩哔哩

你可能感兴趣的:(UE,ue5)