Files
UnrealEngineUWP/Engine/Plugins/Runtime/AudioModulation/Source/AudioModulationEditor/Private/AudioModulationStyle.h
rob gay 5f35cd4e39 Add Audio Modulation Settings Editor Improvements to beta release
#rb ethan.geller
#jira none

#ROBOMERGE-SOURCE: CL 9734522 in //UE4/Release-4.24/...
#ROBOMERGE-BOT: RELEASE (Release-4.24 -> Main) (v539-9700858)

[CL 9735449 by rob gay in Main branch]
2019-10-21 14:35:57 -04:00

16 lines
537 B
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Math/Color.h"
class FAudioModulationStyle
{
public:
static const FColor GetVolumeBusColor() { return FColor(33, 183, 0); }
static const FColor GetPitchBusColor() { return FColor(181, 21, 0); }
static const FColor GetLPFBusColor() { return FColor(0, 156, 183); }
static const FColor GetHPFBusColor() { return FColor(94, 237, 183); }
static const FColor GetControlBusColor() { return FColor(215, 180, 210); }
};