smitchell's Forum Posts

  • Ashley, Any chance of adding more Box2D features such as prismatic joints?

  • How are you going to know weather we used family's or not? there not visually notable <img src="smileys/smiley1.gif" border="0" align="middle" />

  • Wow Yann, you amaze me once again!

  • Why do we need to use the free version? we payed for the full features to the engine, this is not really promoting what the engine can do if were limited to the free feature's.

  • I dont get what your asking, explain what you want more.

    do you want the player to face the right angle depending on what key is pressed? or do you want it to rotate smoothly depending on the arrow keys?

  • Amazing! I presume you could easily have collisions aswell right?

    because the 2D demonstration thing, you could make the player a sprite and have the walls a solid acting as collision, am I being dumb or smart? <img src="smileys/smiley1.gif" border="0" align="middle" />

  • 48-50 chrome

  • I think I'm in. I have a couple questions though <img src="smileys/smiley1.gif" border="0" align="middle" />

    So we can make any game we want? any? <img src="smileys/smiley3.gif" border="0" align="middle" />

    Is the game limited to the Scirra arcade? ie are we allowed to use custom plugins?

    Thanks.

  • The controls are pretty terrible to be honest, who will want to drive with q,a,o and p?

    people will want to use the arrow keys.

  • How do you turn? <img src="smileys/smiley5.gif" border="0" align="middle" />

  • im sure my vote would be worth quite allot then <img src="smileys/smiley1.gif" border="0" align="middle" />, I think I might vote for Yann 's game, I really like the originality of it [:)[, allthough I have not played them all yet, I think I should when I have some time.

  • Both are nothing unless you have both together, it's unlikely you'll have a popular game if the gameplay is good but the graphics are not. Graphics are what people will recognise the game from.

  • would this work on ios?

  • Iphone's resolution is 640 x 960 for retina support.

    And 320 x 480 for non retina

    And ipad is 1024x768

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Ok start game button, add the mouse object, then add the event:

    Mouse.OnObjectClicked(YourButton)

         -> System.GoToLayout{YourLayout

    Then for the dice, to get a random number between 1 and six use rnadom()

    like this:

    Global var die_value

    Mouse.OnObjectClicked(Dice)

         -> System.setValue(Die{int(random(1, 6))})

         ->