UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
MovieSceneMuteSoloDecoration.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
7#include "MovieSceneMuteSoloDecoration.generated.h"
8
9#define UE_API MOVIESCENE_API
10
12{
13 bool bMuted = false;
14 bool bSoloed = false;
15};
16
17UCLASS(MinimalAPI, Transient)
21{
22public:
23
25
27
28 void SetMuted(bool bMuted) { MuteSoloData.bMuted = bMuted; }
29 bool IsMuted() const { return MuteSoloData.bMuted; }
30
31 void SetSoloed(bool bSoloed) { MuteSoloData.bSoloed = bSoloed; }
32 bool IsSoloed() const { return MuteSoloData.bSoloed; }
33
34private:
35 FMovieSceneMuteSoloData MuteSoloData;
36};
37
38#undef UE_API
OODEFFUNC typedef void(OODLE_CALLBACK t_fp_OodleCore_Plugin_Free)(void *ptr)
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition IMovieSceneDecoration.h:29
Definition MovieSceneMuteSoloDecoration.h:21
void SetSoloed(bool bSoloed)
Definition MovieSceneMuteSoloDecoration.h:31
bool IsMuted() const
Definition MovieSceneMuteSoloDecoration.h:29
bool IsSoloed() const
Definition MovieSceneMuteSoloDecoration.h:32
Definition Object.h:95
Definition MovieSceneMuteSoloDecoration.h:12
bool bMuted
Definition MovieSceneMuteSoloDecoration.h:13
bool bSoloed
Definition MovieSceneMuteSoloDecoration.h:14