Compare commits

...

12 Commits

Author SHA1 Message Date
meishibiezb
aed2bb913e Merge branch 'feat-controll' 2026-05-17 20:59:34 +08:00
meishibiezb
0728d60e52 refactor: ? 2026-05-17 20:58:38 +08:00
meishibiezb
76e0e6e56a feat: 完善角色控制系统 2026-05-17 20:27:32 +08:00
meishibiezb
16f6963903 feat: 更新插件(CHar) 2026-05-16 21:45:19 +08:00
meishibiezb
96af7b6ecd feat: 更新Dialog插件 2026-05-15 21:06:34 +08:00
meishibiezb
6ab832679c feat: 插件更新 2026-05-14 21:22:08 +08:00
meishibiezb
9e149c124c feat: 更新插件 2026-05-13 16:10:16 +08:00
meishibiezb
a8b6bfd772 feat: 插件更新 2026-05-12 21:46:21 +08:00
meishibiezb
ff80ed2a20 feat: 更新插件 2026-05-11 20:21:27 +08:00
meishibiezb
4b43dc8d01 feat: 插件更新 2026-05-10 21:17:59 +08:00
meishibiezb
8eb694d506 feat: 插件更新 2026-05-09 21:21:03 +08:00
meishibiezb
b8416f176d feat: 添加CharacterControl作为子模块 2026-05-09 20:33:42 +08:00
22 changed files with 74 additions and 17 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
} }
] ]
} }