Merge branch 'feat-controll'

This commit is contained in:
meishibiezb
2026-05-17 20:59:34 +08:00
21 changed files with 73 additions and 16 deletions

3
.gitmodules vendored
View File

@@ -1,3 +1,6 @@
[submodule "Plugins/Dialog"] [submodule "Plugins/Dialog"]
path = Plugins/Dialog path = Plugins/Dialog
url = https://gitea.msbzb.xyz/meishibiezb/Dialog.git url = https://gitea.msbzb.xyz/meishibiezb/Dialog.git
[submodule "Plugins/CharacterControl"]
path = Plugins/CharacterControl
url = https://gitea.msbzb.xyz/meishibiezb/CharacterControl

View File

@@ -0,0 +1,20 @@
;METADATA=(Diff=true, UseCommands=true)
[/Script/GameplayTags.GameplayTagsSettings]
ImportTagsFromConfig=True
WarnOnInvalidTags=True
ClearInvalidTags=False
AllowEditorTagUnloading=True
AllowGameTagUnloading=False
FastReplication=False
bDynamicReplication=False
InvalidTagCharacters="\"\',"
NumBitsForContainerSize=6
NetIndexFirstBitSegment=16
+GameplayTagList=(Tag="Gameplay.Action.Camera.Move",DevComment="")
+GameplayTagList=(Tag="Gameplay.Action.Camera.Reset",DevComment="")
+GameplayTagList=(Tag="Gameplay.Action.Camera.Rotate",DevComment="")
+GameplayTagList=(Tag="Gameplay.Action.Camera.Zoom",DevComment="")
+GameplayTagList=(Tag="Gameplay.Action.Hello",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.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -12,3 +12,8 @@ void AMyPlayerController::BeginPlay()
{ {
Super::BeginPlay(); Super::BeginPlay();
} }
void AMyPlayerController::CalcCamera(float DeltaTime, FMinimalViewInfo& OutResult)
{
AActor::CalcCamera(DeltaTime, OutResult);
}

View File

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

View File

@@ -29,6 +29,10 @@
"Win64" "Win64"
], ],
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/362651520df94e4fa65492dbcba44ae2" "MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/362651520df94e4fa65492dbcba44ae2"
},
{
"Name": "StructUtils",
"Enabled": true
} }
] ]
} }