Skip to content

Commit

Permalink
compile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
getnamo committed Sep 19, 2017
1 parent 0edeb0a commit 3735c02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
11 changes: 4 additions & 7 deletions BLUI.uplugin
Original file line number Diff line number Diff line change
@@ -1,30 +1,27 @@
{
"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",
"Type": "Runtime",
"LoadingPhase": "PreDefault",
"BlacklistPlatforms": [ "HTML5", "Android", "iOS" ]
}
],
"CanContainContent" : true
]
}
2 changes: 1 addition & 1 deletion Source/Blu/Private/BluBluprintFunctionLibrary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<UBluEye>(StaticConstructObject_Internal(UBluEye::StaticClass()));

return tempObject;
Expand Down

0 comments on commit 3735c02

Please sign in to comment.