Press E to open door

I want to press E key to open door… :frowning:

hi calewell.
to achieve this, you ll have to add a trigger volume in your door BP to trigger to know if youre player is close enought to open the door. set a bool to true when your player enters the volume : like this :

99072-overlap.jpg

then create an input called “use” in your project settings,
and call it in your blueprint like this :

99073-open+door.jpg

it will trigger a custom event (here i called it open door) when e is pressed and the players is close to the door
then disconnect your "on begin play from your timeline, and replace it by the custom event you created.
it should work like this !