Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Commit

Permalink
DEPRECATED Get Material Instance
Browse files Browse the repository at this point in the history
  • Loading branch information
ashea-code committed Aug 9, 2015
1 parent ed08f89 commit d54591f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Source/Blu/Public/BluEye.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,12 @@ class BLU_API UBluEye : public UObject
UFUNCTION(BlueprintCallable, Category = "Blu")
UTexture2D* GetTexture() const;

/** Material instance that contains texture inside it */
UFUNCTION(BlueprintCallable, Category = "Blu")
/**
* Material instance that contains texture inside it
* @deprecated Please use raw texture using GetTexture method. GetMaterialInstance will be removed in the next release!
*/
DEPRECATED(4.8, "Please use raw texture using GetTexture method. GetMaterialInstance will be removed in the next release!")
UFUNCTION(BlueprintCallable, Category = "Blu", meta = (DeprecatedFunction, DeprecatedNode, DeprecationMessage = "Please use raw texture using GetTexture method. GetMaterialInstance will be removed in the next release!"))
UMaterialInstanceDynamic* GetMaterialInstance() const;

/** Execute JS code inside the browser */
Expand Down

0 comments on commit d54591f

Please sign in to comment.