You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Add independent pin color defaults & move Metasound Settings from shared settings to plugin and setup as per-user settings - Fix ensure hitting when outputs are created and corrisponding literals are constructed #rb phil.popp #fyi aaron.mcleran [CL 15215186 by Rob Gay in ue5-main branch]
14 lines
409 B
C++
14 lines
409 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "AudioEditorSettings.h"
|
|
|
|
void UAudioSubmixEditorSettings::PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent)
|
|
{
|
|
Super::PostEditChangeProperty(PropertyChangedEvent);
|
|
}
|
|
|
|
void UAudioSoundClassEditorSettings::PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent)
|
|
{
|
|
Super::PostEditChangeProperty(PropertyChangedEvent);
|
|
}
|