UE5开发——射击武器类拾取

整体框架:

拾取武器

要在 Unreal Engine 5 (UE5) 中实现一个按 E 键拾取武器的功能,您可以遵循以下步骤:

### 步骤 1: 创建拾取物品的基础类
1. 在 Content Browser 中创建一个新的 C++ 类,继承自 `AActor` 或者 `AStaticMeshActor`。
2. 在该类中定义必要的变量,例如物品的类型、名称等。
3. 添加事件处理器,用于检测玩家角色与物品之间的交互。

### 步骤 2: 实现拾取逻辑
1. 在玩家角色的类中添加一个方法,用于处理与拾起物品相关的逻辑。
2. 使用 `Overlap` 事件来检测玩家是否靠近物品。
3. 当玩家按下 E 键时,调用上述方法。

### 步骤 3: 设置输入绑定
1. 在项目的 `Input Settings` 中添加一个新的动作绑定,比如命名为 `Interact`。
2. 将 `Interact` 动作绑定到 E 键。
3. 在玩家控制器类中处理 `Interact` 输入事件。

### 示例代码
这里是一个简单的示例代码片段,展示了如何实现上述功能:#### 创建一个基础的拾取物品类 `APickupBase`
```cpp

// APickupBase.h
#pragma once#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "Components/StaticMeshComponent.h"
#include "PickupBase.generated.h"UCLASS()
class YOURGAME_API APickupBase : public AActor
{GENERATED_BODY()public:    APickupBase();protected:UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Mesh")UStaticMeshComponent* Mesh;UFUNCTION()void OnOverlapBegin(UPrimitiveComponent* OverlappedComp, AActor* OtherActor, UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep, const FHitResult& SweepResult);// Called when the game starts or when spawnedvirtual void BeginPlay() override;public:    // Called every framevirtual void Tick(float DeltaTime) override;
};
```

// APickupBase.cpp
#include "PickupBase.h"APickupBase::APickupBase()
{Mesh = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("Mesh"));SetRootComponent(Mesh);
}void APickupBase::BeginPlay()
{Super::BeginPlay();Mesh->OnComponentBeginOverlap.AddDynamic(this, &APickupBase::OnOverlapBegin);
}void APickupBase::Tick(float DeltaTime)
{Super::Tick(DeltaTime);
}void APickupBase::OnOverlapBegin(UPrimitiveComponent* OverlappedComp, AActor* OtherActor, UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep, const FHitResult& SweepResult)
{// 检测到玩家时,触发拾取逻辑if (OtherActor != this && OtherActor->ActorHasTag("Player")){APlayerController* PlayerController = Cast<APlayerController>(OtherActor->GetController());if (PlayerController){PlayerController->ClientStartCursorMode();}}
}
```#### 在玩家控制器中处理输入
```cpp
// AYourPlayerController.h
#pragma once#include "CoreMinimal.h"
#include "GameFramework/PlayerController.h"
#include "YourPlayerController.generated.h"UCLASS()
class YOURGAME_API AYourPlayerController : public APlayerController
{GENERATED_BODY()public:AYourPlayerController();protected:virtual void SetupInputComponent() override;public:UFUNCTION(BlueprintCallable, Category = "Input")void Interact();};
``````cpp
// AYourPlayerController.cpp
#include "YourPlayerController.h"AYourPlayerController::AYourPlayerController()
{// Set this character to call Tick() every frame.  You can turn this off to improve performance if you don't need it.PrimaryActorTick.bCanEverTick = true;
}void AYourPlayerController::SetupInputComponent()
{Super::SetupInputComponent();// Bind actionInputComponent->BindAction("Interact", IE_Pressed, this, &AYourPlayerController::Interact);
}void AYourPlayerController::Interact()
{// 当玩家按下 E 键时,执行拾取操作if (auto* PlayerCharacter = Cast<AYourCharacter>(GetPawn())){PlayerCharacter->PickupItem();}
}
```#### 在玩家角色类中实现拾取逻辑
```cpp
// AYourCharacter.h
#pragma once#include "CoreMinimal.h"
#include "GameFramework/Character.h"
#include "YourCharacter.generated.h"UCLASS()
class YOURGAME_API AYourCharacter : public ACharacter
{GENERATED_BODY()public:AYourCharacter();protected:// Called when the game starts or when spawnedvirtual void BeginPlay() override;public:    // Called every framevirtual void Tick(float DeltaTime) override;// Called to bind functionality to inputvirtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override;UFUNCTION(BlueprintCallable, Category = "Interaction")void PickupItem();
};
``````cpp
// AYourCharacter.cpp
#include "YourCharacter.h"AYourCharacter::AYourCharacter()
{// Set this character to call Tick() every frame.  You can turn this off to improve performance if you don't need it.PrimaryActorTick.bCanEverTick = true;
}void AYourCharacter::BeginPlay()
{Super::BeginPlay();
}void AYourCharacter::Tick(float DeltaTime)
{Super::Tick(DeltaTime);
}void AYourCharacter::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{Super::SetupPlayerInputComponent(PlayerInputComponent);// Bind actionPlayerInputComponent->BindAction("Interact", IE_Pressed, this, &AYourCharacter::PickupItem);
}void AYourCharacter::PickupItem()
{// 实现具体的拾取逻辑// 例如:查找最近的可拾取物品,然后将其加入玩家的物品列表
}
```

1. 枪支拾取动画

创建Text Block

编译保存

在h文件写入 ,属性

private:UPROPETY(VisibleAnywhere, Category = "Weapon Properties")class UWidgetComponent* PickupWidget;

先写这个:

CreateDefaultSubobject<UWidgetComponent>(TEXT("PickupWidget"));

在 Unreal Engine 中,SetupAttachment() 方法用于将一个组件附加到另一个组件上。这样做的目的是为了建立组件之间的层次关系,从而使得它们能够在场景中正确地相对于彼此移动、旋转和缩放。

关于 RootComponent:

  • RootComponent: 这个术语指的是一个 Actor 的根组件。在 Unreal Engine 中,每个 Actor 都有一个根组件,所有其他的子组件都将直接或间接地附加在这个根组件上。根组件通常是 USceneComponent 的实例,它可以是一个静态网格体、骨骼网格体或其他类型的组件。

对应h文件

protected:// Called when the game starts or when spawnedvirtual void BeginPlay() override;UFUNCTION()virtual void OnSphereOverlap(UPrimitiveComponent* OverlappedComponent,AActor * OtherComp,int32 OtherBodyIndex,bool bFromSweep,const FHitResult& SweepResult);

代码定位上层

拾取代码实现

//简而言之,这段代码的作用是:当武器的碰撞组件检测到与 ABlasterCharacter 类型的演员发生重叠时
// ,就会显示一个拾取提示(如一个 UI 元素)给玩家。这通常用于提示玩家可以拾取或互动的武器。
void AWeapon::OnSphereOverlap(UPrimitiveComponent* OverlappedComponent,AActor*OtherActor,UPrimitiveComponent* OtherComp)
{ABlasterCharacter* BlasterCharacter = Cast<ABlasterCharacter>(OtherActor);
if (BlasterCharacter && PickupWidget) {  //PickupWidget检查不是空指针PickupWidget->SetVisibility(true);
}}
void AWeapon::BeginPlay()
{Super::BeginPlay();if (PickupWidget) {PickupWidget->SetVisibility(false);  //应该是拾取成功后,让地面不可见}}

在服务器上变的不可见,应该是不捡枪,其他玩家可以看到E键盘拾取,捡起枪后,其他玩家看不到e键拾取了

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/53039.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

服务器间进行文件传输-SFTPSCP一篇搞定

1.简单介绍一下 在一些特殊场景&#xff0c;两台服务器之间需要进行文件传输的时候&#xff0c;或许我们会想到FTP&#xff0c;这也是我们常见的实现方式&#xff0c;但是如果我们不能操作远程服务器&#xff0c;无法判断远程服务器是否安装了FTP呢&#xff0c;众所周知&#…

在Web服务应用中,如何编程使用Redis的缓存功能?包括缓存页面内容、缓存数据库查询结果、用户会话信息等代码分享

目录 一、概述 二、redis介绍 1、简介 2、Redis作为缓存的原理 &#xff08;1&#xff09;内存存储 &#xff08;2&#xff09;数据结构 &#xff08;3&#xff09;工作原理 3、Redis作为缓存的作用 三、redis缓存页面内容 1、作用 2、实现方法 3、示例代码&#x…

原型与原型链

在JavaScript中&#xff0c;原型&#xff08;prototype&#xff09;和原型链&#xff08;prototype chain&#xff09;是理解对象如何继承属性和方法的关键概念。 原型 每一个对象&#xff08;函数也是对象&#xff09;都有一个特殊的属性叫做原型&#xff08;prototype&…

k3s中使用GPU资源

前提是已经安装了nvidia驱动 一、安装nvidia-container-toolkit&#xff08;推荐&#xff09; #复制一份docker配置文件,以防被覆盖 cp /etc/docker/daemon.json /etc/docker/daemon.json.bak #安装NVIDIA Container Toolkitapt-get install nvidia-container-toolkit二、配置…

Linux和Unix的区别及为什么鸿蒙系统不用Unix的原因

目录 Linux是什么? Unix是什么&#xff1f; 他们的区别&#xff1a; 鸿蒙系统介绍及鸿蒙系统不用Unix的原因 Linux是什么? Linux的历史可以追溯到1991年&#xff0c;由芬兰的计算机科学家林纳斯托瓦兹&#xff08;Linus Torvalds&#xff09;为了学习操作系统的工作原理而…

海绵城市雨水监测系统

海绵城市雨水监测系统主要有&#xff1a;数据采集、无线数据传输、后台云服务、终端平台显示等部分组成。系统通过前端数据采集水质&#xff08;ss\cod\浊度、PH等&#xff09;、雨水雨量、流量、水位、土壤湿度、气象等数据。通过无线数据传输通讯&#xff08;4G、5G、以太网、…

小柴带你学AutoSar系列三、标准和规范篇(3)ModeManagement

目录 ModeManagementGuide 2 Overall mechanisms and concepts 2.1 Declaration of modes 2.2 Mode managers and mode users 2.3 Modes in the RTE 2.4 Modes in the Basic Software Scheduler 2.5 Communication of modes 3 Configuration of the Basic Software Mod…

华为云征文|部署个人博客管理系统 Ghost

华为云征文&#xff5c;部署个人博客管理系统 Ghost 一、Flexus云服务器X实例介绍1.1 云服务器介绍1.2 应用场景1.3 对比普通ECS 二、Flexus云服务器X实例配置2.1 重置密码2.2 服务器连接2.3 安全组配置 三、部署 Ghost3.1 Ghost 介绍3.2 Docker 环境搭建3.3 Ghost 部署3.4 Gho…

《数字信号处理》学习01-离散时间信号与序列的卷积和运算

目录 一&#xff0c;信号 二&#xff0c;序列的运算 1&#xff0c;卷积和 2&#xff0c;matlab实现 相关的电子书籍请到这篇文章所在的专栏&#xff0c;并通过夸克网盘链接下载。 很多简单的知识点我就不再赘述了&#xff0c;接下来就着重记录我学习过程中遇到的较难理…

Vue——day07之条件渲染、列表渲染以及监测数据

目录 1.template标签 2.条件渲染 3.列表渲染 4.v-for中的key的作用以及原理 5.列表过滤 placeholder 前端空字符串 使用数据监视watch实现 使用计算属性实现 6.列表排序 7.Vue更新数据检测失败 原因 总结 1.template标签 template标签是Vue.js中的一个特殊元素&am…

新型蜜罐有哪些?未来方向如何?

前言&#xff1a;技术发展为时代带来变革&#xff0c;同时技术创新性对蜜罐产生推动力。 一、新型蜜罐的诞生 技术发展为时代带来变革&#xff0c;同时技术创新性对蜜罐产生推动力&#xff0c;通过借鉴不同技术思想、方法&#xff0c;与其它技术结合形成优势互补&#xff0c;…

MC药水酿造

药水酿造(Brewing)是在酿造台中往水瓶里加入各种材料而制作药水、喷溅药水和滞留药水的过程。 将1-3个水瓶或药水放入酿造台界面底部的药水槽中,将材料放入顶部的材料槽中,再在燃料槽里放置烈焰粉,便可开始酿造。 药水的酿造一般从水瓶开始,水瓶可以用玻璃瓶从水源或

探讨抗晃电应用技术在煤化工生产中的运用

摘要&#xff1a;当前&#xff0c;电力供应面临的压力日益增大&#xff0c;用户群体的多样性也日益复杂。在电网运行中&#xff0c;电压波动&#xff08;晃电&#xff09;现象频繁发生。研究指出&#xff0c;电压波动的原因多种多样&#xff0c;包括自然因素、设备故障以及人为…

EXO项目StandardNode;max_generate_tokens;buffered_token_output;is_finished;

目录 StandardNode max_generate_tokens buffered_token_output 构造函数参数 类属性 总结 is_finished max_generate_tokens self.buffered_token_output StandardNode _process_tensor result是一个np.ndarray ,result.size == 1是什么意思 StandardNode max_g…

kaggle平台free使用GPU

1、注册 请保证在【科学上网】条件下进入如下操作&#xff0c;只有在注册账户和手机号验证时需要。 step1&#xff1a;注册账户 进入kaggle官网&#xff1a;https://www.kaggle.com/&#xff0c;点击右上角【Register】进入注册页面 最好选择使用邮箱注册&#xff08;&#…

【例003】利用MATLAB绘制有趣平面图形

题目&#xff1a; 用 ezplot 画出由方程 sin ⁡ ( x 2 m y 2 1000 ) cos ⁡ ( x y ) \sin(x^2\frac{my^2}{1000})\cos(xy) sin(x21000my2​)cos(xy) 确定隐函数的图形。 求解&#xff1a; 我们分别取m为100&#xff0c;1000,10000不同的值&#xff0c;绘制不同情况下的图…

3.1 线性结构

令序列X、Y、Z的每个元素按顺序进栈&#xff0c;且每个元素进栈.出栈各一次&#xff0c;则不可能得到出栈序列&#xff08; &#xff09;。 A. XYZ B. XZY C. ZXY D. YZX 正确答案是 C。 解析 ZXY不可能得到这个序列&#xff0c;因为当Z最先出栈&#xff0c;说明X、Y已经入栈&a…

MySQL-进阶篇-锁(全局锁、表级锁、行级锁)

文章目录 1. 锁概述2. 全局锁2.1 介绍2.2 数据备份2.3 使用全局锁造成的问题 3. 表级锁3.1 表锁3.1.1 语法3.1.2 读锁3.1.3 写锁3.1.4 读锁和写锁的区别 3.2 元数据锁&#xff08;Meta Data Lock&#xff0c;MDL&#xff09;3.3 意向锁3.3.1 案例引入3.3.2 意向锁的分类 4. 行级…

推荐使用阿贝云免费云服务器、免费虚拟主机

官网地址&#xff1a;https://www.abeiyun.com 阿贝云的免费云服务器简直是我在互联网世界里的一大惊喜发现&#xff01; 首先&#xff0c;它的性能表现十分出色。服务器的响应速度超快&#xff0c;无论是访问网站还是运行应用&#xff0c;都能迅速给出反馈&#xff0c;几乎没…

蒙特卡罗方法算π

蒙特卡罗法就是在一块区域里撒随机点&#xff0c;看落在指定区域的点数 基于以下关系式&#xff0c;可以计算π&#xff0c;MATLAB代码如下 N10^7; xunifrnd(0,1,[1,N]); yunifrnd(0,1,[1,N]); frequencysum(y<1./(1x.^2)); area4*frequency/N