diff --git a/ActorInteractionPlugin.uplugin b/ActorInteractionPlugin.uplugin index ba4333c..d739074 100644 --- a/ActorInteractionPlugin.uplugin +++ b/ActorInteractionPlugin.uplugin @@ -1,7 +1,7 @@ { "FileVersion": 3, "Version": 1, - "VersionName": "3.0.1.2", + "VersionName": "3.0.1.5", "FriendlyName": "Actor Interaction Plugin", "Description": "Actor Interaction Plugin is an Open-source Mountea Framework components-based simple framework providing utilities for smart Actor Interaction with other Actors. Developed with Game Developers in mind to allow as easy as possible implementation while maintaining high scalability and diverse options to tweak everything.", "Category": "Mountea Framework", diff --git a/Source/ActorInteractionPlugin/Private/Components/ActorInteractableComponentHold.cpp b/Source/ActorInteractionPlugin/Private/Components/ActorInteractableComponentHold.cpp index 9174774..564b075 100644 --- a/Source/ActorInteractionPlugin/Private/Components/ActorInteractableComponentHold.cpp +++ b/Source/ActorInteractionPlugin/Private/Components/ActorInteractableComponentHold.cpp @@ -2,7 +2,7 @@ #include "Components/ActorInteractableComponentHold.h" - +#include "TimerManager.h" #include "Interfaces/ActorInteractorInterface.h" #include "Helpers/ActorInteractionPluginLog.h" diff --git a/Source/ActorInteractionPlugin/Public/Helpers/InteractionHelpers.h b/Source/ActorInteractionPlugin/Public/Helpers/InteractionHelpers.h index 856593d..887ae24 100644 --- a/Source/ActorInteractionPlugin/Public/Helpers/InteractionHelpers.h +++ b/Source/ActorInteractionPlugin/Public/Helpers/InteractionHelpers.h @@ -265,7 +265,7 @@ struct FDebugSettings template static FString GetEnumValueAsString(const FString& Name, TEnum Value) { - const UEnum* enumPtr = FindObject(ANY_PACKAGE, *Name, true); + const UEnum* enumPtr = FindFirstObject(*Name, EFindFirstObjectOptions::None); if (!enumPtr) return FString("invalid"); return enumPtr->GetDisplayNameTextByValue((int64)Value).ToString(); } diff --git a/Source/ActorInteractionPluginEditor/Private/Popup/AIntPPopup.cpp b/Source/ActorInteractionPluginEditor/Private/Popup/AIntPPopup.cpp index 8ab1e6e..9a595e1 100644 --- a/Source/ActorInteractionPluginEditor/Private/Popup/AIntPPopup.cpp +++ b/Source/ActorInteractionPluginEditor/Private/Popup/AIntPPopup.cpp @@ -88,7 +88,7 @@ void AIntPPopup::Open() [ SNew(SBorder) .Padding(10) - .BorderImage(FEditorStyle::GetBrush("ToolPanel.DarkGroupBorder")) + .BorderImage(FAppStyle::GetBrush("ToolPanel.DarkGroupBorder")) [ SNew(SScrollBox) + SScrollBox::Slot() @@ -138,8 +138,8 @@ But let's keep it short, here are the cool new features (and bugfixes) of versio Updates * Add DEPRECATED to old Component Classes )")) - .TextStyle(FEditorStyle::Get(), "NormalText") - .DecoratorStyleSet(&FEditorStyle::Get()) + .TextStyle(FAppStyle::Get(), "NormalText") + .DecoratorStyleSet(&FAppStyle::Get()) .AutoWrapText(true) + SRichTextBlock::HyperlinkDecorator(TEXT("browser"), FSlateHyperlinkRun::FOnClick::CreateStatic(&OnBrowserLinkClicked)) ]