Hi,
i got problem with instantiating prefabs while in the Editor.
I created editor where i can set up values for object, after i set up values i call other script where i instantiate the object into the scene with these values and everything works just fine. But problem is that i got there List of Vectors. When i create one object and then create other one with different values, for some reason, all the old created objects somehow inherits all the values, although there is no link to them. Basicly i realy only call method with parameters in other script which one time instantiates prefab in the scene. So i am quite confused why when i instantiate new object, all the old ones take the new parameters from the editor since there is no link to them.
I thought the problem could be something along lines with the objects being somehow connected to the prefab or being somehow still stored in the memory as it is running in the editor, but i realy have no clue.
Thanks for any help.
Luke
Edit: all other variables like floats, ints are working fine. Issue is occuring only with List.
Edit2: I pass the list as parametr.