Is this possible with GS?

andrekadowandrekadow Member Posts: 29
edited November -1 in Working with GS (Mac)
Hello there! I need some help from GS masters...

I wanna do a puzzle in a scene of my game, a connect the dot puzzle.

Ex:
1a 1b 1c
2a 2b 2c
3a 3b 3c
4a 4b 4c

Two options here:
The user press the point 2b and then another, 3b for example, and the line is draw between
Or
The user press the space between the points and the line appears.

Any suggestions or ideas?

Thanks and regards from Brazil (by the way, sorry for my English...)

Andre

Comments

  • magic101himagic101hi Member Posts: 713
    yes you would have to make attributes for every point (1a,2a,3a ect.) and make a rule that says

    inside point 1a for example

    if (touch is pressed)
    {
    change game.1a to 1
    }

    if (touch is pressed, and 1b is = 1)
    {
    span actor line with rotation of ?, x?, y?
    }

    hope i helped!

    -Josh
  • CodeMonkeyCodeMonkey Head Chef, Member, PRO Posts: 1,803
    Here's a demo. I didn't make the 2nd option.

    http://gamesalad.com/game/play/86644
Sign In or Register to comment.