Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
StreamingEventListenerInterface.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 "UObject/Interface.h"
7#include "StreamingEventListenerInterface.generated.h"
8
10
11
12
13UINTERFACE(MinimalAPI)
14class UStreamingEventListenerInterface : public UInterface
15{
16 GENERATED_BODY()
17};
18
23{
24 GENERATED_BODY()
25
26public:
27 //레벨이 메모리에 올라왔을 때 호출. 아직 보이지 않음.
28 virtual void OnLevelLoaded(ULevel* NewLevel, const ULevelStreamingData* LevelStreamingData) = 0;
29
30 //레벨이 비활성화될 때 호출.
31 virtual void OnLevelUnloaded() = 0;
32
33 //레벨 스트리밍을 시작.
34 virtual void OnLevelStreamingStarted() = 0;
35
36 //레벨 스트리밍을 종료 (성공 또는 실패든 상관없이 호출됨)
37 virtual void OnLevelStreamingEnded() = 0;
38};
Definition StreamingEventListenerInterface.h:23
virtual void OnLevelStreamingStarted()=0
virtual void OnLevelStreamingEnded()=0
virtual void OnLevelLoaded(ULevel *NewLevel, const ULevelStreamingData *LevelStreamingData)=0
Definition LevelStreamingData.h:19
Definition StreamingEventListenerInterface.h:15