Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
LSE_BlockInputAndMove.h
이 파일의 문서화 페이지로 가기
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
10#include "LSE_BlockInputAndMove.generated.h"
11
12class UCharacterMovementComponent;
13
17UCLASS(EditInlineNew, BlueprintType, Blueprintable)
19{
20 GENERATED_BODY()
21
22public:
23 virtual void OnPreLoadStart(const FLevelStreamingContext Context) override;
24 virtual void OnPostLoadEnd(const FLevelStreamingContext Context) override;
25
26 virtual void OnPreLoadEnd(const FLevelStreamingContext Context) override
27 {
28 }
29
30 virtual void OnPostLoadStart(const FLevelStreamingContext Context) override
31 {
32 }
33
34public:
36 {
37 return ELevelStreamingEffectResult::Completed;
38 }
39
41 {
42 return ELevelStreamingEffectResult::Completed;
43 }
44};
ELevelStreamingEffectResult
Definition ELevelStreamingEnums.h:24
Definition LevelPostLoadInterface.h:23
Definition LevelPreLoadInterface.h:23
Definition LSE_BlockInputAndMove.h:19
virtual ELevelStreamingEffectResult OnPostLoadUpdate(const FLevelStreamingContext Context) override
Definition LSE_BlockInputAndMove.h:40
virtual void OnPreLoadEnd(const FLevelStreamingContext Context) override
Definition LSE_BlockInputAndMove.h:26
virtual void OnPostLoadStart(const FLevelStreamingContext Context) override
Definition LSE_BlockInputAndMove.h:30
virtual ELevelStreamingEffectResult OnPreLoadUpdate(const FLevelStreamingContext Context) override
Definition LSE_BlockInputAndMove.h:35
Definition LevelStreamingEffect.h:121
Definition LevelStreamingContext.h:16