0
Evolution prefab like digimon or pokemon
i am searching for a good code to create a monster evole to a bigger one what is the best code to use?
6 Answers
+ 2
What exactly are you doing? Making a game? An animation for that? etc.. Give us more information to work with.
Game:
Unreal Engine
Unity
Animation:
Maya
LightWork
Blender
0
unity3d, maya and blender its just for practicing
0
once it evolves, why not just destroy the origional and instantiate a new "evolved" prefab?
0
how can i put that in c+?
0
if(evolve){
Instantiate(evolved, new Vector3(transform.position.x, transform.position.y, transform.position.z), Quaternion.identity);
Destroy(gameObject);
}
Something like that maybe
0
thanks i will try that