I am sorry if I am asking a question that has already been answered. I just can’t find any answers.
Background.
Launch starts up scene0 which checks to make sure that all files are current if not downloads them. Then asks the user to log in. The info is then passed to the player manager . I want the player manager to retrieve the info from the server on the player. However I need to attach the NetworkView to the instance of the character manager that I create. Here is a snip.
public static CharacterSelect Instance{
get{
if(instance == null){
instance = new GameObject(“CharacterSelect”).AddComponent ();
CharacterSelect.addcomponent(NetworkView);
My question is how do I add the network view component to the CharacterSelect object that gets created?
Thanks in advance for your help.