Timer on linetrace

HI,
I did this blueprint, to set the visibility when the player looks at the actor. But i would like it to set the visibility only after a second or so looking.
I know I need to use the timer, but i can’t figure out how and where. Would anyone help?

Thanks!

Just put delay nodes between the branch and the Set Visibility nodes and set the time to whatever you like.

Hi Narayani,

The way I would set this up is using a float value that you increment as long as the player is looking at the object. Once the desired float value is achieved, it allows you to continue with your function. If your trace no longer hits the actor, reset the float to 0.0. You could set it up like this:

Thanks!!