| 258 | } |
| 259 | |
| 260 | void FDlgSystemModule::HandleOnAssetRenamed(const FAssetData& AssetRenamed, const FString& OldObjectPath) |
| 261 | { |
| 262 | UObject* ObjectRenamed = AssetRenamed.GetAsset(); |
| 263 | if (UDlgDialogue* Dialogue = Cast<UDlgDialogue>(ObjectRenamed)) |
| 264 | { |
| 265 | HandleDialogueRenamed(Dialogue, OldObjectPath); |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | void FDlgSystemModule::HandleDialogueDeleted(UDlgDialogue* DeletedDialogue) |
| 270 | { |
nothing calls this directly
no outgoing calls
no test coverage detected