You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 6355d4940313c24974b2107b #rb none [CL 22783162 by henrik karlsson in ue5-main branch]
16 lines
399 B
C++
16 lines
399 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "AttenuatedComponentVisualizer.h"
|
|
#include "Components/AudioComponent.h"
|
|
|
|
class COMPONENTVISUALIZERS_API FAudioComponentVisualizer : public TAttenuatedComponentVisualizer<UAudioComponent>
|
|
{
|
|
private:
|
|
virtual bool IsVisualizerEnabled(const FEngineShowFlags& ShowFlags) const override
|
|
{
|
|
return ShowFlags.AudioRadius;
|
|
}
|
|
};
|