feat: 更新插件(CHar)

This commit is contained in:
meishibiezb
2026-05-16 21:45:19 +08:00
parent 6ab832679c
commit 16f6963903
13 changed files with 31 additions and 14 deletions

View File

@@ -10,6 +10,9 @@ bDynamicReplication=False
InvalidTagCharacters="\"\',"
NumBitsForContainerSize=6
NetIndexFirstBitSegment=16
+GameplayTagList=(Tag="Gameplay.Action.Camera.Move",DevComment="")
+GameplayTagList=(Tag="Gameplay.Action.Camera.Rotate",DevComment="")
+GameplayTagList=(Tag="Gameplay.Action.Camera.Zoom",DevComment="")
+GameplayTagList=(Tag="Gameplay.Action.Move",DevComment="")
+GameplayTagList=(Tag="Gameplay.Action.Run",DevComment="")

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -11,4 +11,9 @@ APawn* AMyPlayerController::GetOwnedPawn()
void AMyPlayerController::BeginPlay()
{
Super::BeginPlay();
}
}
void AMyPlayerController::CalcCamera(float DeltaTime, FMinimalViewInfo& OutResult)
{
AActor::CalcCamera(DeltaTime, OutResult);
}

View File

@@ -20,6 +20,6 @@ public:
protected:
virtual void BeginPlay() override;
virtual void CalcCamera(float DeltaTime, FMinimalViewInfo& OutResult) override;
private:
};