dop2000's Recent Forum Activity

  • Do you have a lot of text? Break it into smaller pieces. There is a limited amount of memory allocated to a text instance and when the text is very long it will become blurry.

    If that's not your case, then please explain what you mean.

  • Perhaps the easiest solution for you would be putting a bunch of placeholder sprites, manually in the editor. And then you can spawn random objects on them.

  • As I understand you need something like this:

    academo.org/demos/rotation-about-point

    You can update the position of every object by rotating their coordinates 0.01 degrees on every tick. However, this will probably mess with behaviors like 8direction or pathfinding.

    As an alternative you can use the method from my previous comment and make all objects invisible or place them off-screen. And then add visible copies of them, which will be positioned based on the original/parent object coordinates and the world rotation angle.

  • I'm curious - what program? Can you make a screenshot of the program window?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • If you are certain it's a bug and you can reproduce it in a small project, you need to report it:

    github.com/Scirra/Construct-bugs/issues

  • --disable-devtools is a checkbox you can enable/disable on export.

    You can see what commands were added in previous version and manually update package.json file after export.

    You can also revert your project file to Construct version 368.2 by unpacking it to a folder and editing project.c3proj file:

    	"savedWithRelease": 36802,
    
    
  • I think the problem is that you are picking a random spawner first, and then checking if it has not spawned a key. If the first condition picked the spawner which has already spawned a key, the whole event won't run. You need to swap the order of these conditions in every event.

    Also, "Wait for previous action" should not be used like that - you need to remove them or replace with "Wait 0" if you want to wait to the end of the tick.

  • Can you post a screenshot of the event sheet? Or share your project file.

  • In "On key/button pressed" event you can set a variable jump_start to 1.

    Then add another top-level event:

    jump_start=1 
    ... Platform set vector
    ... Set jump_hold to Jump_Hold_Strength
    ... set jump_start to 0
    
    

    This should fix the issue!

  • Yeah, this is odd. My guess is that keyboard and gamepad "On pressed" events trigger at different stages in a tick. Perhaps the keyboard event triggers earlier, before the Platform behavior makes its vector calculations. So the event sets vectorY to -400, then the behavior reduces it by gravity value. So at the end of the tick the vector value is already reduced to something like -370.

    In case of gamepad, the behavior updates the vector first, then the "On A pressed" event sets vectorY to -400, which remains -400 until the end of the tick. That's why the sprite jumps higher.

    Player.Platform.VectorY returns -400 in both cases, but from my experience you can't trust vectorX/vectorY expressions, they often return wrong (not actual) values. See this bug report for example:

    github.com/Scirra/Construct-bugs/issues/6323

    Three objects move at different speeds, by vectorX returns the same value for all of them..

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