Pickup Objective Actor
Posted suomeimei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pickup Objective Actor相关的知识,希望对你有一定的参考价值。
在角色的头文件中,添加一个布尔变量,设为共有状态,用来判断是否携带目标物体,并暴露给蓝图,类型为仅蓝图可读
UPROPERTY(BlueprintReadOnly,Category="Gameplay") bool bIsCarryingObjective;
当NotifyActorBeginOverlap发生时,检查是否与FPSCharacter中的角色发生重叠
AFPSCharacter* MyCharacter = Cast<AFPSCharacter>(OtherActor); if (MyCharacter) { MyCharacter->bIsCarryingObjective = true; Destroy(); }
以上是关于Pickup Objective Actor的主要内容,如果未能解决你的问题,请参考以下文章