【UE4 C++】实现旋转小球的第三人称自由视角

2023-10-12 10:59

本文主要是介绍【UE4 C++】实现旋转小球的第三人称自由视角,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本文将介绍用C++实现一个简单的玩家可通过WASD控制移动,Shift进行加速,鼠标控制视角旋转和缩放的小球。

本人也只是一个UE4初学者,大佬勿喷。


一、技术难点

  • 小球通过角速度控制旋转,因此想实现自由视角相机,它就不能作为小球的子物体。
  • 小球的移动方向始终要保持与视野前方相同。

二、最终效果图

 

  • 模型资源链接:https://pan.baidu.com/s/1e2bavPacWwA6_pDHlcM0Tw 密码:na24
  • UE4项目以及源码:https://download.csdn.net/download/qq_31788759/10565311

三、核心代码模块

在此先将模块分类,使结构清晰明了,最后有完整代码,可具体查看。


1、首先创建组件

  • SphereBase.h(自己创建的C++类)下
    UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "RootComp")class USceneComponent * RootComp;//声明根节点组件UPROPERTY(EditAnywhere, BlueprintReadWrite,Category = "SphereMeshComp")class UStaticMeshComponent * SphereMeshComp;//小球Mesh组件UPROPERTY(EditAnywhere, BlueprintReadWrite,Category = "CameraArmComp")class USpringArmComponent * CameraArmComp;//相机臂组件UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "CameraComp")class UCameraComponent * CameraComp;//相机组件
  •  SphereBase.cpp
    //创建组件RootComp = CreateDefaultSubobject<USceneComponent>(TEXT("RootComp"));SphereMeshComp = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("SphereBaseComp"));CameraArmComp = CreateDefaultSubobject<USpringArmComponent>(TEXT("CameraArmComp"));CameraComp = CreateDefaultSubobject<UCameraComponent>(TEXT("CameraComp"));//添加组件父子关系SphereMeshComp->SetupAttachment(RootComp);CameraArmComp->SetupAttachment(RootComp);CameraComp->SetupAttachment(CameraArmComp);//设置小球物理效果为真SphereMeshComp->SetSimulatePhysics(true);
  • 创建蓝图类继承该C++类后,组件已创建 

2、绑定按键输入

 

    //绑定前后左右移动PlayerInputComponent->BindAxis("MoveForward", this, &ASphereBase::MoveForward);PlayerInputComponent->BindAxis("MoveRight", this, &ASphereBase::MoveRight);//Shift按下与抬起PlayerInputComponent->BindAction("MoveQuick", IE_Pressed, this, &ASphereBase::MoveQuick);
PlayerInputComponent->BindAction("MoveQuick", IE_Released, this, &ASphereBase::MoveNormal);//相机上下左右旋转PlayerInputComponent->BindAxis("CameraYaw", this, &ASphereBase::YawCamera);PlayerInputComponent->BindAxis("CameraPitch", this, &ASphereBase::PitchCamera);//相机缩放PlayerInputComponent->BindAction("ZoomIn", IE_Pressed, this, &ASphereBase::ZoomIn);PlayerInputComponent->BindAction("ZoomIn", IE_Released, this, &ASphereBase::ZoomStop);PlayerInputComponent->BindAction("ZoomOut", IE_Pressed, this, &ASphereBase::ZoomOut);PlayerInputComponent->BindAction("ZoomIn", IE_Released, this, &ASphereBase::ZoomStop);

具体函数请查看完整代码 

3、相机自由视角

建议采用世界坐标系函数修改值,不要使用相对坐标系Relative函数,否则会遇到很多问题。


  • 小球移动控制
    if (!AngularVector.IsZero()){FVector NewVector = FVector(0, 0, 0);NewVector += AngularVector.X  * CameraArmComp->GetForwardVector() * SphereSpeed;NewVector += AngularVector.Y  * CameraArmComp->GetRight	Vector() * SphereSpeed;SphereMeshComp->SetPhysicsAngularVelocity(NewVector);//给小球施加角速度向量}
  • 相机臂左右旋转
    FRotator LRRotation = CameraArmComp->GetComponentRotation();LRRotation.Yaw += CameraInput.X;CameraArmComp->SetWorldRotation(LRRotation);
  • 相机臂上下旋转 
    FRotator UDRotation = CameraArmComp->GetComponentRotation();UDRotation.Pitch = FMath::Clamp(UDRotation.Pitch + CameraInput.Y, -80.0f, -15.0f);//控制上下视野范围CameraArmComp->SetWorldRotation(UDRotation);
  • 相机臂跟随小球
    FVector NewLocation = SphereMeshComp->GetComponentLocation();CameraArmComp->SetWorldLocation(NewLocation);

4、相机缩放 

    ZoomValue = FMath::Clamp<float>(ZoomValue, 0.0f, 1.0f);//基于ZoomFActor来混合控制相机的视域和弹簧臂的长度 0.0f对应90.0f 1500.0fCameraComp->FieldOfView = FMath::Lerp<float>(90.0f, 60.0f, ZoomValue);CameraArmComp->TargetArmLength = FMath::Lerp<float>(1500.0f, 500.0f, ZoomValue);

滚轮控制ZoomValue值的变化

四、完整代码

  •  Sphere.h
#pragma once#include "CoreMinimal.h"
#include "GameFramework/Pawn.h"
#include "SphereBase.generated.h"//必须放在头文件最后UCLASS()
class BILICODE_API ASphereBase : public APawn//APawn 继承 Actor
{GENERATED_BODY()public:// Sets default values for this pawn's propertiesASphereBase();UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "RootComp")class USceneComponent * RootComp;UPROPERTY(EditAnywhere, BlueprintReadWrite,Category = "SphereMeshComp")class UStaticMeshComponent * SphereMeshComp;//class声明UPROPERTY(EditAnywhere, BlueprintReadWrite,Category = "CameraArmComp")class USpringArmComponent * CameraArmComp;UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "CameraComp")class UCameraComponent * CameraComp;public:FVector AngularVector;float SphereSpeed;float SpeedMin;float SpeedMax;FVector CameraInput;float ZoomValue;UPROPERTY(EditAnyWhere, BlueprintReadWrite)bool IsInput;//控制是否能输入按键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)void MoveForward(float AxisValue);UFUNCTION(BlueprintCallable)void MoveRight(float AxisValue);UFUNCTION(BlueprintCallable)void MoveQuick();UFUNCTION(BlueprintCallable)void MoveNormal();void PitchCamera(float AxisValue);void YawCamera(float AxisValue);void StartJump();void StopJump();void ZoomIn();void ZoomStop();void ZoomOut();
};
  • Sphere.cpp
// Fill out your copyright notice in the Description page of Project Settings.#include "SphereBase.h"
#include "Components/StaticMeshComponent.h"//Mesh头文件
#include "GameFramework/SpringArmComponent.h"//摄像机手臂头文件
#include "Camera/CameraComponent.h"
#include "Components/SceneComponent.h"
#include "Components/InputComponent.h"//输入按键绑定头文件
#include "Engine.h"// Sets default values
ASphereBase::ASphereBase()
{// Set this pawn to call Tick() every frame.  You can turn this off to improve performance if you don't need it.PrimaryActorTick.bCanEverTick = true;IsInput = true;SphereSpeed = 300.0f;SpeedMin = SphereSpeed;SpeedMax = 500.0f;ZoomValue = 0.5f;//创建组件RootComp = CreateDefaultSubobject<USceneComponent>(TEXT("RootComp"));SphereMeshComp = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("SphereBaseComp"));CameraArmComp = CreateDefaultSubobject<USpringArmComponent>(TEXT("CameraArmComp"));CameraComp = CreateDefaultSubobject<UCameraComponent>(TEXT("CameraComp"));//组件关系SphereMeshComp->SetupAttachment(RootComp);CameraArmComp->SetupAttachment(RootComp);CameraComp->SetupAttachment(CameraArmComp);//设置物理效果为真SphereMeshComp->SetSimulatePhysics(true);
}// Called when the game starts or when spawned
void ASphereBase::BeginPlay()
{Super::BeginPlay();
}// Called every frame
void ASphereBase::Tick(float DeltaTime)
{Super::Tick(DeltaTime);if (!AngularVector.IsZero()){FVector NewVector = FVector(0, 0, 0);NewVector += AngularVector.X  * CameraArmComp->GetForwardVector() * SphereSpeed;NewVector += AngularVector.Y  * CameraArmComp->GetRightVector() * SphereSpeed;SphereMeshComp->SetPhysicsAngularVelocity(NewVector);//小球向一个向量方向旋转移动}{//相机臂左右旋转(相机臂与小球是兄弟关系FRotator LRRotation = CameraArmComp->GetComponentRotation();LRRotation.Yaw += CameraInput.X;CameraArmComp->SetWorldRotation(LRRotation);}{//相机臂跟随小球FVector NewLocation = SphereMeshComp->GetComponentLocation();CameraArmComp->SetWorldLocation(NewLocation);//两种方便的调试方法//GEngine->AddOnScreenDebugMessage(-1, 3.f, FColor::Purple, NewLocation.ToString());/*DrawDebugLine(GetWorld(),SphereBeginLocation,SphereMeshComp->GetComponentLocation(),FColor::Red,false, -1, 0,3.);*/}{//相机臂上下旋转FRotator UDRotation = CameraArmComp->GetComponentRotation();UDRotation.Pitch = FMath::Clamp(UDRotation.Pitch + CameraInput.Y, -80.0f, -15.0f);//控制旋转范围CameraArmComp->SetWorldRotation(UDRotation);}{//相机缩放ZoomValue = FMath::Clamp<float>(ZoomValue, 0.0f, 1.0f);//基于ZoomFActor来混合相机的视域和弹簧臂的长度CameraComp->FieldOfView = FMath::Lerp<float>(90.0f, 60.0f, ZoomValue);CameraArmComp->TargetArmLength = FMath::Lerp<float>(1500.0f, 500.0f, ZoomValue);}
}// Called to bind functionality to input
void ASphereBase::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)//pawn不同于actor的地方,用于绑定按键
{Super::SetupPlayerInputComponent(PlayerInputComponent);PlayerInputComponent->BindAxis("MoveForward", this, &ASphereBase::MoveForward);//绑定 前后移动映射 的函数PlayerInputComponent->BindAxis("MoveRight", this, &ASphereBase::MoveRight);//绑定左右PlayerInputComponent->BindAction("MoveQuick", IE_Pressed, this, &ASphereBase::MoveQuick);PlayerInputComponent->BindAction("MoveQuick", IE_Released, this, &ASphereBase::MoveNormal);PlayerInputComponent->BindAxis("CameraYaw", this, &ASphereBase::YawCamera);PlayerInputComponent->BindAxis("CameraPitch", this, &ASphereBase::PitchCamera);PlayerInputComponent->BindAction("ZoomIn", IE_Pressed, this, &ASphereBase::ZoomIn);PlayerInputComponent->BindAction("ZoomIn", IE_Released, this, &ASphereBase::ZoomStop);PlayerInputComponent->BindAction("ZoomOut", IE_Pressed, this, &ASphereBase::ZoomOut);PlayerInputComponent->BindAction("ZoomIn", IE_Released, this, &ASphereBase::ZoomStop);
}//前后左右输入控制
void ASphereBase::MoveForward(float AxisValue)
{if (IsInput){AngularVector.Y = FMath::Clamp<float>(AxisValue, -1.0f, 1.0f);}
}void ASphereBase::MoveRight(float AxisValue)
{if (IsInput){AngularVector.X = FMath::Clamp<float>(AxisValue, -1.0f, 1.0f);}
}
//shift输入控制
void ASphereBase::MoveQuick()
{SphereSpeed = SpeedMax;
}void ASphereBase::MoveNormal()
{SphereSpeed = SpeedMin;
}
//相机旋转输入控制
void ASphereBase::PitchCamera(float AxisValue)
{CameraInput.Y = AxisValue;
}void ASphereBase::YawCamera(float AxisValue)
{CameraInput.X = AxisValue;
}void ASphereBase::ZoomIn()
{ZoomValue += 0.1f;
}
//相机缩放输入控制
void ASphereBase::ZoomStop()
{
}void ASphereBase::ZoomOut()
{ZoomValue -= 0.1f;
}

 

这篇关于【UE4 C++】实现旋转小球的第三人称自由视角的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/195379

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

opencv图像处理之指纹验证的实现

《opencv图像处理之指纹验证的实现》本文主要介绍了opencv图像处理之指纹验证的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录一、简介二、具体案例实现1. 图像显示函数2. 指纹验证函数3. 主函数4、运行结果三、总结一、