Payback
0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
LSE_Block.h
이 파일의 문서화 페이지로 가기
1
// Fill out your copyright notice in the Description page of Project Settings.
2
3
#pragma once
4
5
#include "CoreMinimal.h"
6
#include "
LevelStreamingEffect.h
"
7
#include "
Level/LevelStreamingContext.h
"
8
#include "
Interface/Level/LevelPostLoad.h
"
9
#include "
Interface/Level/LevelPreLoad.h
"
10
#include "LSE_Block.generated.h"
11
15
UCLASS()
16
class CK_UE_API
ULSE_Block
: public
ULevelStreamingEffect
, public
ILevelPreLoad
, public
ILevelPostLoad
17
{
18
GENERATED_BODY()
19
20
public
:
21
virtual
void
OnPreLoadStart(
const
FLevelStreamingContext
Context)
override
;
22
virtual
void
OnPostLoadEnd(
const
FLevelStreamingContext
Context)
override
;
23
24
virtual
void
OnPreLoadEnd
(
const
FLevelStreamingContext
Context)
override
25
{
26
}
27
28
virtual
void
OnPostLoadStart
(
const
FLevelStreamingContext
Context)
override
29
{
30
}
31
32
public
:
33
virtual
ELevelStreamingEffectResult
OnPreLoadUpdate
(
const
FLevelStreamingContext
Context)
override
34
{
35
return
ELevelStreamingEffectResult::Completed;
36
}
37
38
virtual
ELevelStreamingEffectResult
OnPostLoadUpdate
(
const
FLevelStreamingContext
Context)
override
39
{
40
return
ELevelStreamingEffectResult::Completed;
41
}
42
};
ELevelStreamingEffectResult
ELevelStreamingEffectResult
Definition
CK_ELevelType.h:22
LevelPostLoad.h
LevelPreLoad.h
LevelStreamingContext.h
LevelStreamingEffect.h
ILevelPostLoad
Definition
LevelPostLoad.h:24
ILevelPreLoad
Definition
LevelPreLoad.h:23
ULSE_Block
Definition
LSE_Block.h:17
ULSE_Block::OnPreLoadEnd
virtual void OnPreLoadEnd(const FLevelStreamingContext Context) override
Definition
LSE_Block.h:24
ULSE_Block::OnPostLoadStart
virtual void OnPostLoadStart(const FLevelStreamingContext Context) override
Definition
LSE_Block.h:28
ULSE_Block::OnPreLoadUpdate
virtual ELevelStreamingEffectResult OnPreLoadUpdate(const FLevelStreamingContext Context) override
Definition
LSE_Block.h:33
ULSE_Block::OnPostLoadUpdate
virtual ELevelStreamingEffectResult OnPostLoadUpdate(const FLevelStreamingContext Context) override
Definition
LSE_Block.h:38
ULevelStreamingEffect
Definition
LevelStreamingEffect.h:18
FLevelStreamingContext
Definition
LevelStreamingContext.h:10
Source
CK_UE
Level
Effect
LSE_Block.h
다음에 의해 생성됨 :
1.9.8