2024/05/01 1
카테고리 설명
-
플레이어블 캐릭터 주변의 오버랩 엑터를 표시할 수 있다.필요한 객체를 검출할 수 있다. InteractComponunt 충돌을 감지하는 컴포넌트를 생성한다. 해당 컴포넌트는 캐릭터의 주변에 생성되며, 지정된 오버렙된 액터들 중 지정된 엑터를 검출하고, 배열에 집어넣을 것이다. 배열에 들어간 객체를 검사해서 가장 짧은 DIstance를 가진 객체를 검출해낸다.// Fill out your copyright notice in the Description page of Project Settings.#pragma once#include "CoreMinimal.h"#include "Components/CapsuleComponent.h"#include "InteractComponunt.generated.h"/**..