--------------------------------------------------------------------------------------------------------------------------
| 2 | |
| 3 | //-------------------------------------------------------------------------------------------------------------------------- |
| 4 | FString UCogSampleBTTask_BlueprintBase::GetStaticDescription() const |
| 5 | { |
| 6 | FString CustomDescripton = GetCustomStaticDescription(); |
| 7 | |
| 8 | if (CustomDescripton.IsEmpty() == false) |
| 9 | { |
| 10 | return CustomDescripton; |
| 11 | } |
| 12 | |
| 13 | return Super::GetStaticDescription(); |
| 14 | } |