Compare commits
12 Commits
dev-tnt
...
aed2bb913e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aed2bb913e | ||
|
|
0728d60e52 | ||
|
|
76e0e6e56a | ||
|
|
16f6963903 | ||
|
|
96af7b6ecd | ||
|
|
6ab832679c | ||
|
|
9e149c124c | ||
|
|
a8b6bfd772 | ||
|
|
ff80ed2a20 | ||
|
|
4b43dc8d01 | ||
|
|
8eb694d506 | ||
|
|
b8416f176d |
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -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
|
||||||
|
|||||||
20
Config/DefaultGameplayTags.ini
Normal file
20
Config/DefaultGameplayTags.ini
Normal 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.
BIN
Content/Blueprints/BP_NewChar.uasset
LFS
Normal file
BIN
Content/Blueprints/BP_NewChar.uasset
LFS
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/Blueprints/Component/BP_Controller.uasset
LFS
Normal file
BIN
Content/Blueprints/Component/BP_Controller.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Blueprints/Component/BP_MoveInput.uasset
LFS
Normal file
BIN
Content/Blueprints/Component/BP_MoveInput.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Blueprints/Component/BP_SayHello.uasset
LFS
Normal file
BIN
Content/Blueprints/Component/BP_SayHello.uasset
LFS
Normal file
Binary file not shown.
Binary file not shown.
BIN
Content/Data/DA_InputCommands.uasset
LFS
Normal file
BIN
Content/Data/DA_InputCommands.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Inputs/IA/IA_CameraMiddle.uasset
LFS
Normal file
BIN
Content/Inputs/IA/IA_CameraMiddle.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Inputs/IA/IA_CameraRight.uasset
LFS
Normal file
BIN
Content/Inputs/IA/IA_CameraRight.uasset
LFS
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/Inputs/IA/IA_SayHello.uasset
LFS
Normal file
BIN
Content/Inputs/IA/IA_SayHello.uasset
LFS
Normal file
Binary file not shown.
Binary file not shown.
1
Plugins/CharacterControl
Submodule
1
Plugins/CharacterControl
Submodule
Submodule Plugins/CharacterControl added at 8eb8cde913
Submodule Plugins/Dialog updated: 6e3136b10c...5196b06480
@@ -11,4 +11,9 @@ APawn* AMyPlayerController::GetOwnedPawn()
|
|||||||
void AMyPlayerController::BeginPlay()
|
void AMyPlayerController::BeginPlay()
|
||||||
{
|
{
|
||||||
Super::BeginPlay();
|
Super::BeginPlay();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AMyPlayerController::CalcCamera(float DeltaTime, FMinimalViewInfo& OutResult)
|
||||||
|
{
|
||||||
|
AActor::CalcCamera(DeltaTime, OutResult);
|
||||||
|
}
|
||||||
|
|||||||
@@ -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:
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user