Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: dhanze on March 29, 2015, 05:40:24 AM

Title: [How] create a quiztable
Post by: dhanze on March 29, 2015, 05:40:24 AM
Help guys I need help..

Can you show me how to make QuizTable for my game., I have education game after action scene ther is a question scene and resultboard? do you have any Idea..

or any suggest Plugin for unity 3rd party for playmaker that will easy to make 
thanks
Title: Re: [How] create a quiztable
Post by: TheBadFeeling on March 29, 2015, 04:40:25 PM
Sounds a bit fluffy, but I think I would look at using the new Unity 4.6+ UI canvas for shooting some simple quiz questions off.

/Bad
Title: Re: [How] create a quiztable
Post by: wetcircuit on April 02, 2015, 12:32:17 PM
I have been thinking about this too... trying to break it down.
Store the questions and answers as strings, and create an action loop where:
1. display the Question text string
2. Answer strings displayed with UI buttons
3. get/compare/record the answer
repeat...
4. give feedback, review answers...

try an INT SWITCH (LOGIC) action to progress through the variables in your loop. and maybe BOOL COMPARE to control each button's logic based on if it is the right answer.

Many many ways to skin a cat, ymmv