Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlicekdominik committed Mar 29, 2023
1 parent 1f33e51 commit 3788fd6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ActorInteractionPlugin.uplugin
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


#include "Components/ActorInteractableComponentHold.h"

#include "TimerManager.h"
#include "Interfaces/ActorInteractorInterface.h"

#include "Helpers/ActorInteractionPluginLog.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ struct FDebugSettings
template<typename TEnum>
static FString GetEnumValueAsString(const FString& Name, TEnum Value)
{
const UEnum* enumPtr = FindObject<UEnum>(ANY_PACKAGE, *Name, true);
const UEnum* enumPtr = FindFirstObject<UEnum>(*Name, EFindFirstObjectOptions::None);
if (!enumPtr) return FString("invalid");
return enumPtr->GetDisplayNameTextByValue((int64)Value).ToString();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -138,8 +138,8 @@ But let's keep it short, here are the cool new features (and bugfixes) of versio
<RichTextBlock.Bold>Updates</>
* Add <RichTextBlock.Bold>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))
]
Expand Down

0 comments on commit 3788fd6

Please sign in to comment.