Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
LevelStreamingComponent.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 "LevelStreamingComponent.generated.h"
7
8
14UCLASS(ClassGroup = (LevelStreaming), meta = (BlueprintSpawnableComponent))
15class CK_UE_API ULevelStreamingComponent : public UActorComponent
16{
17 GENERATED_BODY()
18
19public:
20 UFUNCTION(BlueprintCallable, Category = "LevelStreaming")
21 void RequestLevelLoad(ULevelStreamingData* Data);
22
23public:
24 virtual void BeginPlay() override;
25
26
27private:
28 TWeakObjectPtr<ULevelStreamingSubsystem> LevelStreamer;
29};
Definition LevelStreamingData.h:18
Definition LevelStreamingSubsystem.h:32