From 4bd235c4f0c576a4a25161153346562697721eef Mon Sep 17 00:00:00 2001 From: karlkade Date: Wed, 15 May 2024 15:34:59 +0300 Subject: [PATCH] Deleted CustomBlueprintFunction, some changes --- Content/Blueprints/BP_BubbleManager.uasset | 4 ++-- Content/Maps/MainGame.umap | 4 ++-- Content/Maps/MainMenu.umap | 4 ++-- Content/Prototype1/Prototype1.umap | 4 ++-- Content/Prototype2/Prototype2.umap | 4 ++-- .../VRTemplate/Blueprints/WidgetMenu.uasset | 4 ++-- .../CustomBlueprintFunctionLibrary.cpp | 11 ----------- .../CustomBlueprintFunctionLibrary.h | 19 ------------------- 8 files changed, 12 insertions(+), 42 deletions(-) delete mode 100644 Source/ReactionGame/CustomBlueprintFunctionLibrary.cpp delete mode 100644 Source/ReactionGame/CustomBlueprintFunctionLibrary.h diff --git a/Content/Blueprints/BP_BubbleManager.uasset b/Content/Blueprints/BP_BubbleManager.uasset index a2006ad..ddca5d3 100644 --- a/Content/Blueprints/BP_BubbleManager.uasset +++ b/Content/Blueprints/BP_BubbleManager.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a11cda641cbb1dd8d5238b69b04cd5bf7ff77cc6a3536c25a96d3ec75d936fb7 -size 505972 +oid sha256:e4ba4c3fe41c0f23dd769ead9d95e69ef22458c8b631360029e0cc44cdf412c6 +size 507033 diff --git a/Content/Maps/MainGame.umap b/Content/Maps/MainGame.umap index 27ab161..96b9eeb 100644 --- a/Content/Maps/MainGame.umap +++ b/Content/Maps/MainGame.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc1d1126c9f3537fb1109c3b44cba2568beb2222a0b3dbd59ed373bfa9a5f3b2 -size 79003 +oid sha256:86873675263106d1f6cec597c9818b1209c323aef8674e579df021eace466b90 +size 78176 diff --git a/Content/Maps/MainMenu.umap b/Content/Maps/MainMenu.umap index d8222b7..dc1b950 100644 --- a/Content/Maps/MainMenu.umap +++ b/Content/Maps/MainMenu.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33dabe6c2b706f4db2db93ea69a4309bf9edd55a4641d5264a92740d2f38ff6c -size 92963 +oid sha256:5c4a0b41178e5f1779865f17307445ac02314e8c36d825bdcb6dc0534d1b445b +size 97802 diff --git a/Content/Prototype1/Prototype1.umap b/Content/Prototype1/Prototype1.umap index f418915..f6f4265 100644 --- a/Content/Prototype1/Prototype1.umap +++ b/Content/Prototype1/Prototype1.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73a8069d1a0e7c1bf275671a24f031fbe5faaed61e5dce27991c95e362f82ad8 -size 69529 +oid sha256:c96f6c8392f4533d22a336cdcb6c9456e95cc1f4068e9ddd98697b821c691359 +size 69361 diff --git a/Content/Prototype2/Prototype2.umap b/Content/Prototype2/Prototype2.umap index 109dea9..a9b4918 100644 --- a/Content/Prototype2/Prototype2.umap +++ b/Content/Prototype2/Prototype2.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58893a0e9799b8af308a9335a01d4675b3c40e4027bdb744bd78b45a40292ec9 -size 78540 +oid sha256:215cf78e3f79f56d5bf548d54e67b44fcb12fc1a767da0dcd280e60baede93d2 +size 77311 diff --git a/Content/VRTemplate/Blueprints/WidgetMenu.uasset b/Content/VRTemplate/Blueprints/WidgetMenu.uasset index 41735b7..7632092 100644 --- a/Content/VRTemplate/Blueprints/WidgetMenu.uasset +++ b/Content/VRTemplate/Blueprints/WidgetMenu.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e2b8a08e6316ff5ee27893b0193584d01d7e1f8b5001b12993f809802562d20 -size 69621 +oid sha256:6bb532019a609f70a0727903feb6cf1b99ffdb51a16a14118614d7b2ff356329 +size 64312 diff --git a/Source/ReactionGame/CustomBlueprintFunctionLibrary.cpp b/Source/ReactionGame/CustomBlueprintFunctionLibrary.cpp deleted file mode 100644 index 320086d..0000000 --- a/Source/ReactionGame/CustomBlueprintFunctionLibrary.cpp +++ /dev/null @@ -1,11 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - - -#include "CustomBlueprintFunctionLibrary.h" -#include "GameMapsSettings.h" - -FString UCustomBlueprintFunctionLibrary::GetDefaultMapName() -{ - const UGameMapsSettings* GameMapsSettings = GetDefault(); - return GameMapsSettings->GetGameDefaultMap(); -} diff --git a/Source/ReactionGame/CustomBlueprintFunctionLibrary.h b/Source/ReactionGame/CustomBlueprintFunctionLibrary.h deleted file mode 100644 index 117ec39..0000000 --- a/Source/ReactionGame/CustomBlueprintFunctionLibrary.h +++ /dev/null @@ -1,19 +0,0 @@ -#pragma once - -#include "CoreMinimal.h" -#include "Kismet/BlueprintFunctionLibrary.h" -#include "CustomBlueprintFunctionLibrary.generated.h" - -/** - * - */ -UCLASS() -class REACTIONGAME_API UCustomBlueprintFunctionLibrary : public UBlueprintFunctionLibrary -{ - GENERATED_BODY() - -public: - UFUNCTION(BlueprintCallable, Category = "Custom Utilities") - static FString GetDefaultMapName(); -}; -s \ No newline at end of file