Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: gamedivision on December 29, 2012, 08:05:54 PM

Title: Load Level Information needed
Post by: gamedivision on December 29, 2012, 08:05:54 PM
i checked the wiki,cant find any info on this question
what happens to the scene when i use load level.
i mean ive just gone from one level to the other how does it deal with the information from one level to the other,does it remove it from the memory or what,and is this the best way to change scenes

thank you
Title: Re: Load Level Information needed
Post by: FractalCore on December 30, 2012, 08:00:22 AM
I might not be the best to answer this. But it's my understanding that once a new level is loaded the old one is completely gone from memory. At least to such a degree that if you wanted to load it back up again I don't think it appears any faster than it would the first time.

Which also means the state you left it in would be reset if you wanted to load it again. If you wanted it to save how you left it, look up Unity Serializer. It can save pretty much EVERYTHING in the scene and it's free.

And I think the Actions in the Level category are probably the ONLY way to change scenes from Playmaker.
Title: Re: Load Level Information needed
Post by: gamedivision on December 30, 2012, 11:17:57 AM
Thanks for the reply.