Reference variable from c++ class into animation BP

Hi Everyone,

I have some calculation on my char in c++ which i would like to be able to read them from anim BP. i set this:

/** can character climb */ 
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Character, Meta = (DisplayName = "Can Character Climb")) 
bool canCharacterClimb; 

https://forums.unrealengine.com/attachment.php?attachmentid=148725&d=1500214533

here in variables section i need to reference the variable from c++ code. do i need to create it manually and then get the value from property to the new created variable or there is another way to do it?

found wiki page for this: A new, community-hosted Unreal Engine Wiki - Announcements - Unreal Engine Forums