Hello, I am new to Unreal Engine and trying to make a puzzle game. I am a bit lost on how to add a counter. For example, if I ask the player “What is 3 + 2?” (which equals 5), I want them to press the button 5 times to open the door.
Is interact an interface? If not I’d set one up and add it to the door, this way you can interact with the door directly, using get all actors is risky. Aside from that your code seems good but I’d add an increment to the button value on the false execution chain if it’s not been pressed enough times. Is this the only code used for this interaction? If there’s more please post
It is interact. This is the only code for the button that opens the door when pushed once. I am trying to add multiple counts to open the door. Like I pushed the button 10 times which opened the door. If possible can you give me break down how to add the counter and also the false execution chain you are talking about I would really appreciate it.
It looks like you’ve already got counter variables set up. What are the door value and button value buttons? If you make them both instance editable, and make door value expose on spawn, that way you can set it per actor in the world in editor. The button variable set it’s default to 0. On your branch decision, on the false pin call “set” to the button variable, and set it with buttons current value plus one. This way every time this button is hit and the interaction event here fires, it will increment up or open the door when the value is reached. Hope that makes sense
Also being that this is an interact interface I wouldn’t use get all actors, as if there are multiple doors that could mess things up. What would be better, would be to set this entire function up as a custom event in the actors bp, and on interact just call that event. If you don’t want to go that route you should add an input to the interaction node and pass in a reference to that actor door