Created
April 17, 2014 03:45
-
-
Save pnegri/10951469 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shot of BP being used | |
http://screencloud.net/v/ngaM | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UFUNCTION(BlueprintCallable, Category = "ServerProxy") | |
static TSubclassOf<AActor> FindGOCByString(const FString name); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TSubclassOf<AActor> UServerProxyBlueprintLibrary::FindGOCByString(const FString name) | |
{ | |
return (TSubclassOf<AActor>)FindObject<UClass>(ANY_PACKAGE, *name); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment