This commit is contained in:
CHARLIE SEYMOUR 2023-05-11 16:35:10 +01:00
commit 2c22311c43
62 changed files with 161 additions and 39 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Content/Assets/Objects/MerchantShop/Lamp_lamp_Normal.uasset (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
Content/Assets/Objects/MerchantShop/M_Lamp.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Assets/Objects/MerchantShop/M_shopDecoObjects.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Assets/Objects/MerchantShop/M_shopWoodObjects.uasset (Stored with Git LFS) Normal file

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.

BIN
Content/Images/MainMenuAssets/Title.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Levels/Build.umap (Stored with Git LFS)

Binary file not shown.

BIN
Misc/Music Demo/Music/Azure (Bass Melody).wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Music/Azure (Bass).wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Music/Azure (Guitar).wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Music/Azure(Full).wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Music/Azure(Heart).wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Ambiance.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Boss Hit.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Boss Hitting.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Boss Noise.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Crystal Buzz.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Dry Fire.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Fire Crackling.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Goat Hit.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Mutant Goat Bleet.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Rope Bridge.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Sear.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Shot Fire.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Sprint.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Walking.wav (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Misc/Music Demo/Sound Effects/Wall Break.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -55,7 +55,9 @@ public:
UPROPERTY(EditAnyWhere)
float TraceDistance = 200;
UFUNCTION(BlueprintCallable)
void InputDisabler();
void LineTraceLogic();
UPROPERTY()

View File

@ -54,12 +54,13 @@ void UQuestSystem::TickComponent(float DeltaTime, ELevelTick TickType, FActorCom
void UQuestSystem::CheckActiveQuestConditions()
{
TArray<UQuest*> JustCompletedQuests;
for (UQuest* Quest : ActiveQuests)
{
if (Quest->CheckConditions(GetWorldState()))
{
CompletedQuests.Add(Quest);
Quest->ApplyRewards(PlayerInventory);
JustCompletedQuests.Add(Quest);
for (TTuple<FString, bool> QuestFlag : Quest->QuestFlagsOnComplete)
{
QuestFlags.Add(QuestFlag.Key, QuestFlag.Value);
@ -79,6 +80,11 @@ void UQuestSystem::CheckActiveQuestConditions()
}
UpdateQuestGoalsUI(Quest);
}
for (UQuest* Quest : JustCompletedQuests)
{
ActiveQuests.Remove(Quest);
Quest->ApplyRewards(PlayerInventory);
}
}
UWorldState* UQuestSystem::GetWorldState() const

BIN
Team logo/Cave in studios.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
UI designs/ui buff/UI buff.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
UI designs/ui health/UI health.png (Stored with Git LFS) Normal file

Binary file not shown.