Skip to content
Snippets Groups Projects
Commit f7c2651e authored by Sebastian Pape's avatar Sebastian Pape
Browse files

Removing UFUNCTION definitions inside cpp, since they have no effect there

parent 8b59cec8
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ bool UVirtualRealityUtilities::IsHeadMountedMode()
return GEngine->XRSystem.IsValid() && GEngine->XRSystem->IsHeadTrackingAllowed();
}
UFUNCTION(BlueprintPure, Category = "DisplayCluster") bool UVirtualRealityUtilities::IsMaster()
bool UVirtualRealityUtilities::IsMaster()
{
IDisplayClusterClusterManager* manager = IDisplayCluster::Get().GetClusterMgr();
if (manager == nullptr) // no manager means we are not in clustermode and therefore master
......@@ -29,7 +29,7 @@ UFUNCTION(BlueprintPure, Category = "DisplayCluster") bool UVirtualRealityUtilit
return manager->IsMaster();
}
UFUNCTION(BlueprintPure, Category = "DisplayCluster") bool UVirtualRealityUtilities::IsSlave()
bool UVirtualRealityUtilities::IsSlave()
{
return !IsMaster();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment