I am working on an inventory system. What I’m doing to create in the inventory system requires a very repetitive process of replacing variables with other variables, which got me wondering if there is a mode or system built into unreal engine 4 blueprints, where I can select an area of blueprints and do a find and replace. I.e.:
Find Get Variable Integer “Texture1”
Replace All Instances of Get Variable Integer “Texture1” With “Texture2”
Just curios if there is something like that! (I know that there is a find references but that’s not what I am looking for here. )
You can drag & drop variables on top of one another → this will replace them.
There’s also this:
Perhaps it’s a logical problem; while setting blueprints can be mundane, it can be often solved with setting up macros, select nodes and switches to automate the process.
For anyone interested, I figured out if you create a “dummy” Blueprint, you can fill that Blueprint with whatever code variables you plan to amend (with the surrounding code, of course), change the name there, and then copy it back into your original Blueprint. (You’ll be prompted to “create variable”.)
@Everynone , you may have figured this out by now, but I could find no one else offering such a solution.
Oh, buddy, I WISH I could do that, but trust me, given that the system I’m making has dozens of conditions for the most SIMPLE of tasks, this was the cleanest way I could think of (without using loops, but again, the functions are so complicated, I needed to see them to make sure I wrote them correctly).