UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
LevelStreamingPersistent.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
10#pragma once
11
12#include "CoreMinimal.h"
15#include "LevelStreamingPersistent.generated.h"
16
19{
21
22
23 //~ Begin ULevelStreaming Interface
24 virtual bool ShouldBeLoaded() const override
25 {
26 return true;
27 }
28 virtual bool ShouldBeVisible() const override
29 {
30 return true;
31 }
32 //~ End ULevelStreaming Interface
33};
34
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define GENERATED_UCLASS_BODY(...)
Definition ObjectMacros.h:768
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition LevelStreamingPersistent.h:19
Definition LevelStreaming.h:139