dop2000's Recent Forum Activity

  • It's a weird thing about OR-blocks in C3 - they still pick instances. So in your case, when the first condition (Player hitCount) is false, then no Player insteances will be picked. If the second condition is true, the event will execute, but because the picked scope for Player is zero, "Player set animation" action will have no effect.

  • 1200 is not a lot, the project should not take more than a several seconds to save. (Unless you have a slow HDD drive in your PC)

    If it takes 2 minutes, the problem may be with something else..

    I would try a different computer, to see if the issue is hardware or OS related. Also try removing that large JS file from the project, just to test.

  • It depends. If you have hundreds or thousands of sprites, replacing them with a single tilemap will be much better for performance.

  • Check the number of files in Images and other folders.

    Each animation frame is saved as a separate file. And if there are many thousands of them, the project will take a long time to load and save.

  • It's better not to use Trigger Once at all, than adding it "just to be safe". It's very often used incorrectly and can cause difficult to fix bugs.

  • construct.net/en/make-games/manuals/construct-3/interface/debugger

    To add console messages, add Browser object to your project and use "Browser log" action. Press F12 in preview and you should be able to see your messages in the console tab.

  • Trigger Once condition is used incorrectly in all screenshots in this post! It should not be used inside of loops, or be the first condition in an event. Also, never use it when working with multiple instances of an object!

    farfetchd83 All you need to do is either put particles to a container with the sprite, or spawn them in "For each" loop inside the "On start of layout" event.

  • You can add an event - when a key is pressed, set time scale to 0.

    Another option is to use Browser Log to output the speed value into browser console. You can even do this on every tick, this will give you the full history of how the speed was changing.

  • Try adding "For each sprite" to the event where you spawn and pin the particle object. If this doesn't help, you'll need to post your code or project file, it's difficult to guess without it.

  • You've likely selected "Letterbox integer" scale mode in project properties. Change it to "Letterbox scale"

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Looks like this list is automatically scaled to the widest item, but in your case this doesn't work for some reason. I suggest filing a bug with the details about your browser etc.

  • You can enable unbounded scrolling and instead limit the scolling area to layout borders with events. Create a camera sprite with ScrollTo behavior and set its position on every tick.

    For example:

    On every tick 
     Camera Set x to clamp(player.x, viewportWidth(layer)/2, layoutWidth-viewportWidth(layer)/2)
    
     Camera Set Y to clamp(player.y, viewportHeight(layer)/2, layoutHeight-viewportHeight(layer)/2)
    
dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 258 followers

Connect with dop2000

Trophy Case

  • 8-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
  • x13
    Great Comment One of your comments gets 3 upvotes
  • Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

28/44
How to earn trophies