How to create a constant in blueprint?

How can I create a constant (a node containing a value with one output) in Blueprint?

1 Like

I don’t think you can… that feature is mainly a performance reducing one in C++, and blueprint doesn’t really work like that i guess…

You can make the variable private and create a BlueprintPure (enable const) that returns the variable. This way no other classes (even child classes) will be able to set that value to anything else.

To create a variable node, you can select and drag an input, and on the context menu which pops when you drop, select: “Promote to variable”.

I think I found best way to do constants using blueprints - Macro Library. Just create one and then in there you can create simple macro like this…

https://cdn.pbrd.co/images/9t1OTeCgn.png

And then use it whenever you want, no need for execution pins, acts like getter for a variable.

https://cdn.pbrd.co/images/9t38stduD.png

1 Like

functional programming workaround for class dependent constants:

229429-screenshot-5.png

keep that function pure also.

1 Like

try using the make literal node. of course this depends on type of value that you want to be a constant but you can use a make literal in a variety of situations. you could also use variables, addition nodes, and conversion string to int or something like that.

1 Like

It’s not only a performance feature, but it’s also to save yourself from making mistakes. If it’s a constant value, you can’t accidentally write a different value to it. You can also instantly tell that it will only ever have one value. It’ll save you headaches later down the line when you go “But how come this value is changing?!” while debugging.

1 Like