| 28 | } |
| 29 | |
| 30 | bool FPropertyDesc::IsValid() const |
| 31 | { |
| 32 | #if WITH_EDITOR |
| 33 | // 蓝图重新编译后会导致PropertyPtr持续有效,但原来的Property无效了 |
| 34 | if (PropertyPtr.Get() != Property) |
| 35 | return false; |
| 36 | #endif |
| 37 | return PropertyPtr.IsValid(); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Integer property descriptor |
no test coverage detected