dop2000's Recent Forum Activity

  • LesleyBeth Please refresh the page, I edited my post while you were reading it :)

  • Add an instance variable "id" to portal sprites, set different ids for each portal, you can use numbers or text (say, "park_west_entrance"). Add another instance variable "target_id", set correct target/exit ids for it too. For example the eastern portal in City3 will have target_id="park_west_entrance".

    When the character enters a portal, save Portal.target_id in a global variable Spawn_ID. On start of the new layout, spawn the character at the portal with id=Spawn_ID.

  • Make sure you don't have other objects with ScrollTo behavior, or events where you change scroll. Also, if the camera is close to layout edges, it will not shake, unless you set "Unbounded scrolling=yes" in layout properties.

  • I don't see any problems with the code. Try removing "str" expression, it's not needed here. If it still doesn't work, please post your capx.

  • It's not really a matter of performance, these events are different. "On key pressed" is triggered once. "Is key down" is triggered every tick, about 60 times per second, while the key is down.

    Therefore, "Is key down" may be worse for performance if you have lots of actions in this event.

  • Have you seen Audio Positioning template?

  • Just double-check everything, make sure it's exactly as on my screenshot. If you have Fade behavior on this text object, disable it. Also, make sure the size of Text object is enough to fit all text at maximum font size.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Origin image point (image point #0) always exists, and you can't rename it.

    If you want to check if another image point with a specific name exists, there is no straightforward way to do this.. If you are sure that the image point "Test" is not set at the same position as the origin, you can do this check:

    Sprite.ImagepointX("Test")<>Sprite.x or Sprite.ImagepointY("Test")<>Sprite.y

    If the result is true, this means the image point "Test" does exist.

    R0J0hound I tested just now and seems like if you try to access ImagepointX or ImagepointY for a non-existing image point, these expressions return coordinates of the origin point, not 0.

  • I thought I explained everything in the previous comment?

  • Your approach was correct, but you made a few mistakes. You need to use UIDs, not IID here, because IID is not a unique number. Use "For each" when there is a possibility that an event can pick multiple instances and you need to process each instance differently (say, pick a different target). I also recommend using Timer behavior instead of "Every X seconds".

    Here is the fixed project:

    dropbox.com/s/00lmkfa9f50grur/RTS_fixed.c3p

  • Tween a value. In "Tween is playing" event set text font size to self.Tween.Value("tag")

    I recommend using SpriteFont instead, it will scale better.

  • You can simply put this event into a group and deactivate this group after the ball is launched. Re-activate the group again when needed.

    Or add a variable CanJump=1. Modify the event like this:

    On Space Pressed
    CanJump=1 
    		Ball Apply impulse...
    		Set CanJump=0
    

    Reset CanJump to 1 when it's ok to launch the ball again.

    .

    Also, if you need to test only X velocity, use System Compare Two Values event, with expression Ball.Physics.VelocityX

dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 279 followers

Connect with dop2000

Trophy Case

  • 10-Year Club
  • Entrepreneur Sold something in the asset store
  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • Forum Wizard Made 5,000 posts in the forums
  • Forum Unicorn Made 10,000 posts in the forums
  • x5
    Popular Game One of your games has over 1,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
  • Steady Visitor Visited Construct.net 30 days in a row
  • Enduring Visitor Visited Construct.net 90 days in a row
  • Unrelenting Visitor Visited Construct.net 180 days in a row
  • Continuous Visitor Visited Construct.net 365 days in a row
  • RTFM Read the fabulous manual
  • x3
    Quick Draw First 5 people to up-vote a new Construct 3 release
  • x14
    Great Comment One of your comments gets 3 upvotes
  • Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

30/44
How to earn trophies