VJ Master 1.0
Real-time audio analysis and visualisation.
Loading...
Searching...
No Matches
ST_VJMasterDeveloperSettingsCustomisation.h
1// Copyright (c) 2025 Aaron Trotter (ShaderTech). All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7class ST_VJMASTEREDITOR_API FST_VJMasterDeveloperSettingsCustomisation
8{
9public:
10 FST_VJMasterDeveloperSettingsCustomisation();
11 ~FST_VJMasterDeveloperSettingsCustomisation();
12
13 void Initialize();
14 void Shutdown();
15
16private:
17 void OnSettingsPropertyChanged(UObject* Object, FPropertyChangedEvent& PropertyChangedEvent);
18
19 FDelegateHandle PropertyChangedHandle_APS;
20 FDelegateHandle PropertyChangedHandle_AVS;
21 FDelegateHandle PropertyChangedHandle_ACS;
22};