Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
LevelStreamingLocator.h
이 파일의 문서화 페이지로 가기
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7class ULevelStreaming;
8
9
14{
22 static ULevelStreaming* FindByName(const UWorld* World, FName LevelName);
23
30 static ULevelStreaming* FindVisible(const UWorld* World);
31};
UWorld의 StreamingLevels에서 조건에 맞는 레벨을 검색하는 유틸리티입니다.
Definition LevelStreamingLocator.h:14
static ULevelStreaming * FindByName(const UWorld *World, FName LevelName)
StreamingLevels에서 에셋 이름이 일치하는 레벨을 반환합니다.
Definition LevelStreamingLocator.cpp:9
static ULevelStreaming * FindVisible(const UWorld *World)
현재 Visible 상태인 StreamingLevel을 반환합니다.
Definition LevelStreamingLocator.cpp:34