Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
LPP_ByTaggedPlayerStart.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 "LevelPlayerPlacer.h"
7#include "LPP_ByTaggedPlayerStart.generated.h"
8
14UCLASS()
16{
17 GENERATED_BODY()
18
19public:
20 virtual void PlacePlayer(UWorld* InWorld) override;
21
22public:
23 // 탐색할 APlayerStart의 PlayerStartTag 값
24 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Placer|PlayerStart")
25 FName TargetTag = NAME_None;
26};
Definition LPP_ByTaggedPlayerStart.h:16
Definition LevelPlayerPlacer.h:14