20 lines
459 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Untitled
date: 2024-11-14 12:19:36
excerpt:
tags:
rating: ⭐
---
# 前言
探索思路:
# 问题解决方法
添加相关性overrider将bDynamicRelevance设置成true。
```c++
FPrimitiveViewRelevance FOutlineSkeletalMeshSceneProxy::GetViewRelevance(const FSceneView* View) const
{
FPrimitiveViewRelevance Result = FSkeletalMeshSceneProxy::GetViewRelevance(View);
Result.bDynamicRelevance = true;
return Result;
}
```