diff --git a/BLUI.uplugin b/BLUI.uplugin index 4d4bdb3..b7e076d 100644 --- a/BLUI.uplugin +++ b/BLUI.uplugin @@ -1,23 +1,21 @@ { "FileVersion": 3, - "FriendlyName": "BLUI", "Version": 3, - "VersionName": "3.1.1", - "EngineVersion": "4.9+", + "VersionName": "3.2", "Description": "Chrome powered HTML UI and HUD for Unreal Engine 4", "Category": "UI", "CreatedBy": "Aaron M. Shea", "CreatedByURL": "http://aaronshea.me", + "EnabledByDefault" : true, "CanContainContent": "true", - "Modules": [ { "Name" : "BluLoader", "Type" : "Runtime", "LoadingPhase" : "PreDefault", - "BlacklistPlatforms" : [ "HTML5", "Android", "iOS"] + "BlacklistPlatforms" : [ "HTML5", "Android", "iOS"] }, { "Name": "Blu", @@ -25,6 +23,5 @@ "LoadingPhase": "PreDefault", "BlacklistPlatforms": [ "HTML5", "Android", "iOS" ] } - ], - "CanContainContent" : true + ] } diff --git a/Content/BluTickActor.uasset b/Content/BluTickActor.uasset new file mode 100644 index 0000000..88ab7a0 Binary files /dev/null and b/Content/BluTickActor.uasset differ diff --git a/Source/Blu/Private/BluBluprintFunctionLibrary.cpp b/Source/Blu/Private/BluBluprintFunctionLibrary.cpp index 4f96f73..814aaf9 100644 --- a/Source/Blu/Private/BluBluprintFunctionLibrary.cpp +++ b/Source/Blu/Private/BluBluprintFunctionLibrary.cpp @@ -11,7 +11,7 @@ UBluBlueprintFunctionLibrary::UBluBlueprintFunctionLibrary(const class FObjectIn UBluEye* UBluBlueprintFunctionLibrary::NewBluEye(UObject* WorldContextObject) { - UWorld* World = GEngine->GetWorldFromContextObject(WorldContextObject); + UWorld* World = GEngine->GetWorldFromContextObject(WorldContextObject, EGetWorldErrorMode::LogAndReturnNull); UBluEye* tempObject = Cast(StaticConstructObject_Internal(UBluEye::StaticClass())); return tempObject;