My E Button doesn't work in my self created actor

Hi all…
i have this blueprints…
http://s10.postimg.org/dnzrlfm4l/Nuova_immagine_bitmap.jpg
Now when i press e toward to my object the light and the audio doesn’t works…why?

Do you have Input enabled for this Actor? Can you debug the Blueprint and look if the “E” press is actually called?
Either by looking if the wires light up or by adding a print message.

If the E Button is not working, you are missing the Enable input. You will want to add a collision to this Actor and
OnBeginOverlap, you enable input and also OnEndOverlap you disable it again.

Like eXi is saying and to add to that:
Input is by default only enabled for the player’s controller, pawn and the level blueprint (in that order of processing). For others you need to call EnableInput. It will then receive input before the player controller.

how i cann add input? The collision ecc?

Add a Collision to the Actor you want to use. Make sure it is big enough for the Character to step into.
Add the OnBegin- and OnEndOverlap Event of it to the Event Graph. For OnBeginOverlap get your
PlayerController and call “Enable Input”. For the OnEndOverlap get your PlayerController and call “Disable Input”.

i don’t know how to add the collision…all the on begin overlap i don’t know

Then please search the internet for it. This is a basic thing. I can’t post you pictures etc every time. Youtube also
got tutorials about collision and you may want to watch the basic tutorials of Epic Games Youtube Channel!

i created the two blueprints
http://s8.postimg.org/9qfsys40h/Nuova_immagine_bitmap.jpg
And this is the sphere of collision…
http://s30.postimg.org/qn5poxjul/Nuova_immagine_bitmap.jpg
Wht stil doesn’t works? what i ve wronged?

Sometimes i feel like you are trolling me xD

I said: “Add a Collision to the Actor you want to use.” and not to the Character.

Also the “GetPlayerController” needs to be in the “PlayerController” pin and the Target needs
to be empty or self.

but my character is the actor xD or you mean the object?
I’m confused ahahha

Everything placed into the Scene is at least an Actor! That’s why i said Actor.
I mean the object you want to use. The generator.

thanks solved :smiley: thanks man :smiley: