From 3f33008345aaab22182832ca13f469975b958100 Mon Sep 17 00:00:00 2001 From: Roberto De Ioris Date: Thu, 3 Aug 2017 19:54:13 +0200 Subject: [PATCH] disable TMAP<> related features --- Source/UnrealEnginePython/Public/PythonComponent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/UnrealEnginePython/Public/PythonComponent.h b/Source/UnrealEnginePython/Public/PythonComponent.h index 667c579b7..185eb5769 100644 --- a/Source/UnrealEnginePython/Public/PythonComponent.h +++ b/Source/UnrealEnginePython/Public/PythonComponent.h @@ -47,8 +47,8 @@ class UPythonComponent : public UActorComponent UFUNCTION(BlueprintCallable, Category = "Python") FString CallPythonComponentMethodString(FString method_name, FString args); - UFUNCTION(BlueprintCallable, Category = "Python") - TMap CallPythonComponentMethodMap(FString method_name, FString args); + //UFUNCTION(BlueprintCallable, Category = "Python") + //TMap CallPythonComponentMethodMap(FString method_name, FString args); UFUNCTION(BlueprintCallable, Category = "Python") void CallPythonComponentMethodStringArray(FString method_name, FString args, TArray &output_strings);