Twitter LogoFacebook Logo
Realtime Database - Add Data
Add data to Realtime Database using the Add Data node.
By: King

Hello, in this tutorial, I will show you how to Add Data to Realtime Database using the FBP Plugin for Unreal Engine.


To add data, use the Add Data node from the plugin.

Image from Codeible.com

Then set the path to where you want to store the data using the Data Path pin.

Image from Codeible.com

For the Data pin, create a document using the Begin Write Document node. Then add content by using a combination of Add nodes provided in the plugin.

Image from Codeible.com

Available Add Nodes

(1) Add String
(2) Add Number
(3) Add Boolean
(4) Add String Array
(5) Add Number Array
(6) Add Boolean Array
(7) Add Map

Adding the Callbacks

Lastly add the callbacks nodes.

Image from Codeible.com

Click and hold on the callback pin from the node. Then drag and let go on an empty spot on the blueprint.

Select “Add Event” then “Add Custom Event.” That will create the event node fit for the callback.

Image from Codeible.com

The On Data Added callback gets called when the data is added successfully. 


The On Fail to Add Data callback gets called when it fails to add the data.


Sign In