behaviors of a copy-paste scene don't work
keekee312
Member Posts: 91
Hi, I just copied the main scene of my game to make different levels (I also copied the main actor Spawner to change actors' behaviors in levels) but there is a problem !
For instance : in level 1 (main scene), Spawner1 spawns actors well and everything is running well.
But in level 2( copy of main scene), Spawner2 which is a copy of Spawner1 (and other actors) don't follow rules very well while they are the same than before, I made many tests but I still don't understand
Thanks for help.
Thank you for help
For instance : in level 1 (main scene), Spawner1 spawns actors well and everything is running well.
But in level 2( copy of main scene), Spawner2 which is a copy of Spawner1 (and other actors) don't follow rules very well while they are the same than before, I made many tests but I still don't understand
Thanks for help.
Thank you for help
Comments
Hope it is that simple to fix. Good luck.
_________________________________
HOLY NOSE JOB!: Nesen Probe: Is this the single most unappealing game in the history of GameSalad? I can't seem to give it away! Anywhere. But if anyone want's to try it out, codes are still available near the end of the thread! http://gamesalad.com/forums/topic.php?id=8097
I'll try to make copies on my own without copy and paste to see where's the problem...
I have an invisible actor called SPAWNER which aim is to spawn actor at random location thanks to a timer (like every 1sec, change Game.RandomNumber to random(1,5)
If 1 = spawn square 1 etc)
Because i need different behaviors for levels, I copied the original SPAWNER actor and called it Spawner LVL2 and put it in the scene 2 (copy of scene 1)
Each square has rules : when touched by the tongue, stop moving then get destroyed
And the tongue has complicated rules but when you touch somewhere on the screen, the character spits out the tongue from its mouth to where you touched (so when you touch a square, it destroys it, I mean it used to destroy it ^^)
Hope it will help you to help me