Creating functions that can be called in Blueprint
While marking classes as BlueprintType
or Blueprintable
allows us to pass instances of the class around in Blueprint, or to subclass the type with a Blueprint class, those specifiers don't actually say anything about member functions or variables, and if they should be exposed to Blueprint.
This recipe shows you how to mark a function so that it can be called within Blueprint graphs.
How to do it…
- Create a new
Actor
class using the editor. Call the actorSlidingDoor
. - Add the following
UPROPERTY
to the new class:UFUNCTION(BlueprintCallable, Category = Door) void Open(); UPROPERTY() bool IsOpen; UPROPERTY() FVector TargetLocation;
- Create the class implementation by adding the following to the
.cpp
file: ...
Get Unreal Engine 4 Scripting with C++ Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.