I need to assign a property to a specific reference of an actor to make him/her a persistent reference. I know you can do this with the editor, by going to the properties tab of a script, then selecting edit value. But since I need to assign this property while the game is running, I need to be able to do it all in the script.
If you didn't understand what I'm asking for, let me explain again: You know when you declare a property in a script, and then you can go to the properties tab in the editor, select "edit value" and connect that property to an object in the editor? Like connecting it via the "select reference in render window" to some actor reference you placed in a cell. Well I need to do that, but all within script because the actor reference that I need to connect my property to will not exit until the game starts. (He is created using the placeActorAtMe command when the game starts)
Thanks in advance for any help.