Don't know what to add as object wildcard

So I just looked through your BPs and noticed something as I tried to use the “Set View Target With Blend Node”. That node takes in an actor reference to then have your controller “view” be located. When I couldn’t get a camera component to be an input into that node I realized how you did so with a TCam, very tricky! But you actually made a Camera Actor variable called TCam within your TCamBP which was never set and is actually NOT anything related to what you are trying to do. That actor reference is NULL and does nothing. The node you are using “Set View Target With Blend” assumes you are switching from one actor to another and will thus be using the second actor’s “view” through its camera. So you can’t use that node with 2 cameras on the same actor. You need to find some other way to switch between 2 cameras on one actor smoothly but that node won’t do it as far as I know.