当前位置:   article > 正文

最简单的 UE 4 C++ 教程 —— 平滑切换玩家的相机(视图目标)到 Actor 位置【十三】_ue 同一个actor内相机切换

ue 同一个actor内相机切换

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

英文原地址

接上一节教程,在这个简单的教程中,我们将在游戏开始时,简单地平滑混合运动来改变玩家的视图目标。

创建一个新的 C++ Actor 子类并将其命名为 SetViewTargetBlend 。在头文件中,我们将声明一个 actor 变量,并将其称为 MyActor  并使新角色在任何地方都可编辑。

SetViewTargetBlend.h

  1. #pragma once
  2. #include "CoreMinimal.h"
  3. #include "GameFramework/Actor.h"
  4. #include "SetViewTargetBlend.generated.h"
  5. UCLASS()
  6. class UNREALCPP_API ASetViewTargetBlend : public AActor
  7. {
  8. GENERATED_BODY()
  9. public:
  10. // Sets default values for this actor's properties
  11. ASetViewTargetBlend();
  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. // declare variables
  19. UPROPERTY(EditAnywhere)
  20. AActor* MyActor;
  21. };

首先,为了拥有玩家,我们需要 #include Kismet/GameplayStatics.h 文件。

  1. #include "SetViewTarget.h"
  2. // include gameplay statics header file
  3. #include "Kismet/GameplayStatics.h"

在这个例子中,我们所有的逻辑都放在了 BeginPlay 函数中【不是构造函数中哦,不然 UE4 可能会崩溃】。我们需要通过执行UGameplayStatics::GetPlayerController(this, 0) 来拥有当前玩家。这将获得游戏场景中的第一个玩家。

接下来,我们将使用 SetViewTargetWithBlend(MyActor, 2.f) 将我们拥有的玩家的视图目标设置为 MyActor 变量。我们将混合时间设置为 2 秒,这将指示相机移动到新目标所需要的时间。

下面是最后的 .cpp 文件。

SetViewTargetBlend.cpp

  1. #include "SetViewTargetBlend.h"
  2. // include gameplay statics header file
  3. #include "Kismet/GameplayStatics.h"
  4. // Sets default values
  5. ASetViewTargetBlend::ASetViewTargetBlend()
  6. {
  7. // Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
  8. PrimaryActorTick.bCanEverTick = true;
  9. }
  10. // Called when the game starts or when spawned
  11. void ASetViewTargetBlend::BeginPlay()
  12. {
  13. Super::BeginPlay();
  14. //Find the actor that handles control for the local player.
  15. APlayerController* OurPlayerController = UGameplayStatics::GetPlayerController(this, 0);
  16. //Smoothly transition to our actor on begin play.
  17. OurPlayerController->SetViewTargetWithBlend(MyActor, 2.f);
  18. }
  19. // Called every frame
  20. void ASetViewTargetBlend::Tick(float DeltaTime)
  21. {
  22. Super::Tick(DeltaTime);
  23. }

编译代码。将新角色拖放到游戏中。在编辑器中,向 actor 的细节面板中的 MyActor 变量添加一个静态网格。

按下播放键,玩家的摄像机将在 2 秒内移到新角色身上。

效果如下

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/662284
推荐阅读
相关标签
  

闽ICP备14008679号