Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/USoundWaveThumbnailRenderer
Description
Override this method to control the render frequency for thumbnails in your editor Generally speaking you should use Realtime if you want an animated thumbnail, but if not it is expensive to use (per-frame draws) If not using realtime, the next best default is OnAssetSave, which updates the thumbnail only save. Remaining types are not suggested unless you have specific asset thumbnail update needs.
@TODO: The current default of Realtime maintains legacy behavior, but is overally agressive / for frequent than needed for most.
Virtual Inheritance
- UThumbnailRenderer::GetThumbnailRenderFrequency → USoundWaveThumbnailRenderer::GetThumbnailRenderFrequency
| Name | GetThumbnailRenderFrequency |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Classes/ThumbnailRendering/SoundWaveThumbnailRenderer.h |
| Include Path | #include "ThumbnailRendering/SoundWaveThumbnailRenderer.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/ThumbnailRendering/SoundWaveThumbnailRenderer.cpp |
virtual EThumbnailRenderFrequency GetThumbnailRenderFrequency
(
UObject * Object
) const
ThumbnailRenderer-specific frequency for thumbnail updates