Hi, I am currently working on a smart elevator and starting with small basic functions such as going up and down when requested through “using” a button. At the moment I am struggling to try and have one button on the first floor where the elevator would then move and a button on the ground floor request the elevator to return back to its original position.
The way I have done it is setting a public array of floors which stores the Z coordinates as a float and by blueprint communication to my button blueprint, it will get the floor requested through a integer variable (which acts as a pointer to the array basically) in the button blueprint. How do I get my elevator blueprint to access more than one button blueprint? Thanks.