Hello friends,
Before upgrading to unity in November, I use the instantiate function for hundreds of techniques, items, and other things in game. But when I updated and went to test the old techniques, none worked, because the instantiate was creating objects in another position, this is given to all objects. The code worked fine before upgrading to 2017.3.0f3. What do I do?
Example code (POSITION = Player positions; POSICAOOBJ = Object position):
Kiblast newKi = Instantiate (kiblast, transform.position, transform.rotation) as Kiblast;
POSITION = transform.position;
POSICAOOBJ = newKi.transform.position;
And these were the vectors: