Paradox's Recent Forum Activity

  • You just want to play the game online out of your drop box?

    It's easy, just put the game folder in DropBox, and right click the Index.html and select "Copy Public Link"

    Then paste the link online, or in an HTML page.

    like this pong game:

    http://visualparadox.com/dropbox/forumposts/QuickyPong2/index.html

    *** Edit: -Sorry as of Oct 2016 dropbox no longer supports playable game links

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • The mustache made me think Mortdecai.

  • If I wanted to enter that particular IF statement, I would enter something like this:

    Compare two values:

    first value:

    1*(platform.x < previousplatform.x - 200) + 1*(platform.x > previousplatform.x + 200) + 10*(platform.x < leftboundary) + 10*(platform.x > rightboundary)

    greater than

    Second Value: 20

    THEN regenerate platform.x

    ELSE create platform at platform.x, platform.y

    If the expression in the parentheses is true, it's value will be 1 and if false it equals 0

    Multiplied by the number in front, and then adding up the different values, both ands have to be there, so the value must be at least 20, and since you need one of the two 1s to be there, Over 20 will trigger this event as true.

    It could be simplified to

    (platform.x < previousplatform.x - 200) + (platform.x > previousplatform.x + 200) + 10*(platform.x < leftboundary) + 10*(platform.x > rightboundary)

    But I showed a multiplier in front of each because it is so versatile.

    for example as a button toggle:

    Does that make sense?

  • If you need a portion of the screen to no leave trails, you can put in a solid image background in that area hiding the trails in the transparent area.

  • You could do it by having it drop particles that follow like a trail of smoke, fading and shrinking. But they may look like bubbles if it's moving fast, and they would have to be circles, as particles don't rotate.

    That could also be done with a trail of sprites, but again, would look like a chain of balls, especially when fading.

    You could also use a transparent background where nothing gets erased. You put a sprite with a color (or image) matching the background over the top of the sprite with the trails, the transparency draws over the old tails, fading them slightly, making the oldest completely faded away.

    You can see the effects in my modded particle demo: https://www.scirra.com/tutorials/761/particle-demo-capx

    Set ALL layers "transparent" property to transparent.

    In the project properties, set "Clear Background" to "NO."

    Here's an example capx: https://dl.dropboxusercontent.com/u/85412219/forumposts/FadeOutDemo.capx

    (screenshot of the capx)

  • Nope, they are optimized to be as fast as possible, so can't do anything special. It has been pointed out, if they added sprite like features the benefit would be lost as they would be the same as sprites. So yes, you will have to use multiple sprites.

    My particle demo: https://www.scirra.com/tutorials/761/particle-demo-capx

  • You can also do simpler versions of simulated gravity. For example, my game Cannonball Bash doesn't use physics, because I wanted it to run well on all platforms. It almost achieved that.

    https://www.scirra.com/arcade/shooting-games/cannonball-bash-1373

    The walls advance frame numbers when hit, each frame showing a little more damage and a smaller collision path.

    The walls stay in place if their collision path is touching their parent wall below. If the parent wall is destroyed, or momentarily loses contact, the room above moves down until it hits the parent again, or the ground.

    It's a little more advanced, but an option to consider.

  • If you need music here's a few websites with lots of royalty free music, just give credit and a website plug.

    http://incompetech.com/

    http://soundimage.org/

    http://www.danosongs.com/

  • Does this thread get you started?

  • I didn't even see this post was in classic, sorry.

    I'm not sure if it will help or not:

    The sprite has an instance variable named "Direction" that is set instead of angle, and angle is slowly rotated to the sprites "Direction" variable.

    "Text" is just a text box showing the current direction.

  • If someone else should find this in a search...

    There is a distance expression that calculates the distance between two points.

    distance(x1, y1, x2, y2)

  • Something like this? It's very simple, but could be the start of something.

    https://dl.dropboxusercontent.com/u/85412219/forumposts/KeyRotate.capx

    change rotate 1 degree to 3 or 6 for faster turns. It will switch directions if the current "direction" is closer in the other direction.

Paradox's avatar

Paradox

Member since 29 May, 2012

Twitter
Paradox has 16 followers

Connect with Paradox

Trophy Case

  • 12-Year Club
  • x2
    Popular Game One of your games has over 1,000 players
  • Famous Game One of your games has over 10,000 players
  • x2
    Coach One of your tutorials has over 1,000 readers
  • Educator One of your tutorials has over 10,000 readers
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • Email Verified

Progress

19/44
How to earn trophies