Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: harribionic on July 01, 2013, 12:53:18 PM

Title: Game testing during development[SOLVED]
Post by: harribionic on July 01, 2013, 12:53:18 PM
Hi all,


noob question

This may seem like a daft question, but is it possible to jump to particular parts of a game that i'm developing so that I wouldn't have to keep playing through from the beginning?

Is it dependent on how I code the game?

I know games should be thoroughly tested but say in an adventure style game, which has a storyline, some way I can start from a particular point to try it out?

Any pointers / help much appreciated

Stu
Title: Re: Game testing during development
Post by: Lane on July 01, 2013, 12:57:45 PM
Just move the character where you want?
Title: Re: Game testing during development
Post by: harribionic on July 01, 2013, 01:15:59 PM
Yeah, wish it was that simple. The player goes through various tasks and scenarios which are dependent on various stuff happening. ie: get an object for a character that brings in another character that holds an object... etc

Title: Re: Game testing during development
Post by: jeanfabre on July 03, 2013, 02:18:32 AM
Hi,

 yes, this is something you will have to implement in your game logic. because your game state is unique to your implementation, it's difficult to do otherwise.

 now, you can also work with unity serializer maybe, and save your game this way and reload it. you will also likely modify your game implementation but that is for sure a good approach all around.

http://whydoidoit.com/2012/06/11/playmaker-support-added-to-unity-serializer/

bye,

 Jean
Title: Re: Game testing during development
Post by: harribionic on July 05, 2013, 11:01:26 AM
Thanks again, Jean :)