最简单的 UE 4 C++ 教程 —— 设置 Actor 的位置和朝向【十】

举报
ShaderJoy 发表于 2021/11/19 01:03:06 2021/11/19
【摘要】 【原教程是基于 UE 4.18,我是基于 UE 4.25】 英文原地址 接上一节教程,在本教程中,我们将学习如何使用 SetActorLocationAndRotation 函数。创建一个新的 C++ Actor 子类并将其命名为 SetActorLocationAndRotation。在头文件中创建分别一个FVector...

【原教程是基于 UE 4.18,我是基于 UE 4.25】

英文原地址

接上一节教程,在本教程中,我们将学习如何使用 SetActorLocationAndRotation 函数。创建一个新的 C++ Actor 子类并将其命名为 SetActorLocationAndRotation。在头文件中创建分别一个FVector FQuat 变量,通过设置 UPROPERTY EditAnywhere 使它们可以在任何地方被编辑。同时将这些变量放在 Location 类别中,使它们在一起,并与其他属性分开。

下面是最终的头文件

SetActorLocationAndRotation.h


  
  1. #pragma once
  2. #include "CoreMinimal.h"
  3. #include "GameFramework/Actor.h"
  4. #include "SetActorLocationAndRotation.generated.h"
  5. UCLASS()
  6. class UNREALCPP_API ASetActorLocationAndRotation : public AActor
  7. {
  8. GENERATED_BODY()
  9. public:
  10. // Sets default values for this actor's properties
  11. ASetActorLocationAndRotation();
  12. protected:
  13. // Called when the game starts or when spawned
  14. virtual void BeginPlay() override;
  15. public:
  16. // Called every frame
  17. virtual void Tick(float DeltaTime) override;
  18. UPROPERTY(EditAnywhere, Category = Location)
  19. FVector NewLocation;
  20. UPROPERTY(EditAnywhere, Category = Location)
  21. FQuat NewRotation;
  22. };

在这个例子中,我们将在 BeginPlay 函数中调用 SetActorLocationAndRotation 函数。要了解更多关于 SetActorLocationAndRotation 函数的信息,请点击这里

下面是最后的 .cpp 文件。

SetActorLocationAndRotation.cpp


  
  1. #include "SetActorLocationAndRotation.h"
  2. // Sets default values
  3. ASetActorLocationAndRotation::ASetActorLocationAndRotation()
  4. {
  5. // Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
  6. PrimaryActorTick.bCanEverTick = true;
  7. }
  8. // Called when the game starts or when spawned
  9. void ASetActorLocationAndRotation::BeginPlay()
  10. {
  11. Super::BeginPlay();
  12. SetActorLocationAndRotation(NewLocation, NewRotation, false, 0, ETeleportType::None);
  13. }
  14. // Called every frame
  15. void ASetActorLocationAndRotation::Tick(float DeltaTime)
  16. {
  17. Super::Tick(DeltaTime);
  18. }

编译代码。将新角色拖放到游戏中。向 actor 添加一个静态网格组件。在编辑器中,为NewLocation和NewRotation 设置一个值,然后当你点击 play 按钮时,actor 将定位和旋转到这些坐标上。

效果示意图

游戏运行前

游戏运行后

文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。

原文链接:panda1234lee.blog.csdn.net/article/details/119122265

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。