generated from amasson/UnrealEngineProject
Base Character
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/Wailing/Blueprints/Animations/ABP_Aura.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Animations/ABP_Aura.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Animations/ABP_GoblinSlingshot.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Animations/ABP_GoblinSlingshot.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Animations/ABP_GoblinSpear.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Animations/ABP_GoblinSpear.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Animations/ABP_TopDownCharacterTemplate.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Animations/ABP_TopDownCharacterTemplate.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Character/BP_WLCharacterBaseComponent.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Character/BP_WLCharacterBaseComponent.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Character/NPC/BP_NpcCharacterBase.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Character/NPC/BP_NpcCharacterBase.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Character/Player/BP_Aura.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Character/Player/BP_Aura.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Character/Player/BP_PlayerCharacterBase.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Character/Player/BP_PlayerCharacterBase.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Game/GM_Wailing.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Game/GM_Wailing.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Game/GS_Wailing.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Game/GS_Wailing.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Player/HUD_Wailing.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Player/HUD_Wailing.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Player/PC_Wailing.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Player/PC_Wailing.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Blueprints/Player/PS_Wailing.uasset
LFS
Normal file
BIN
Content/Wailing/Blueprints/Player/PS_Wailing.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/Wailing/Data/Character/Kits/DT_CharacterKit_Base.uasset
LFS
Normal file
BIN
Content/Wailing/Data/Character/Kits/DT_CharacterKit_Base.uasset
LFS
Normal file
Binary file not shown.
Binary file not shown.
Submodule Plugins/FactionSystem updated: 691169eda5...8e997faa0e
Submodule Plugins/GasRpg updated: 8347ac37b6...f313afb1fc
5
Source/Wailing/Private/Data/WLCharacterKit.cpp
Normal file
5
Source/Wailing/Private/Data/WLCharacterKit.cpp
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
// Copyright by amasson
|
||||||
|
|
||||||
|
|
||||||
|
#include "Data/WLCharacterKit.h"
|
||||||
|
|
||||||
18
Source/Wailing/Public/Data/WLCharacterKit.h
Normal file
18
Source/Wailing/Public/Data/WLCharacterKit.h
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
// Copyright by amasson
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "CoreMinimal.h"
|
||||||
|
#include "Data/GRCharacterKit.h"
|
||||||
|
#include "WLCharacterKit.generated.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
UCLASS()
|
||||||
|
class WAILING_API UWLCharacterKit : public UGRCharacterKit
|
||||||
|
{
|
||||||
|
GENERATED_BODY()
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
@@ -10,7 +10,11 @@ public class Wailing : ModuleRules
|
|||||||
|
|
||||||
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });
|
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });
|
||||||
|
|
||||||
PrivateDependencyModuleNames.AddRange(new string[] { });
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
||||||
|
"AIModule",
|
||||||
|
"FactionSystem",
|
||||||
|
"GasRpg",
|
||||||
|
});
|
||||||
|
|
||||||
// Uncomment if you are using Slate UI
|
// Uncomment if you are using Slate UI
|
||||||
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
||||||
|
|||||||
@@ -7,7 +7,10 @@
|
|||||||
{
|
{
|
||||||
"Name": "Wailing",
|
"Name": "Wailing",
|
||||||
"Type": "Runtime",
|
"Type": "Runtime",
|
||||||
"LoadingPhase": "Default"
|
"LoadingPhase": "Default",
|
||||||
|
"AdditionalDependencies": [
|
||||||
|
"GasRpg"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Plugins": [
|
"Plugins": [
|
||||||
|
|||||||
Reference in New Issue
Block a user