dop2000's Recent Forum Activity

  • Do you press keys on keyboard to move the player? And enemies move at the same time? Then either you have some mistake in the events, or you enabled default controls for enemies. Hard to guess without seeing your project file.

  • Oh, I see, thank you!

  • Loading a URL permanently overwrites the animation frame it's loaded in to.

    So this updated URL is still kept somewhere, even when there are no instances left and the sprite is unloaded from memory?

  • Check that you disabled "Default controls" for monsters.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • So you have one tilemap covering the whole level, and you need to find the first non-empty tile directly below the mouse cursor?

    You can do this in a loop, something like this:

    set cellX to Tilemap.PositionToTileX(Mouse.x)
    set cellY to Tilemap.PositionToTileY(Mouse.y)
    For "n" from cellY to cellY+100
     Tilemap compare tile at (cellX, loopindex) >=0
    	Create turret at Tilemap.TileToPositionX(cellX), Tilemap.TileToPositionY(loopindex) 
    	Stop loop
    
  • This is not an easy task..

    Firstly, you probably need Drag&Drop behavior here, not swipe gestures. On the video the hand grabs the letter and then drags it several rows/columns. With gestures you will only be able to slide letters one cell at a time. For example, to move the letter 3 cells up, you will need to swipe it 3 times.

    So when dragging starts, you need to detect its direction (horizontal or vertical), lock this direction, and then move the entire row or column. On drop you need to snap letters to the nearest cell.

    Another tricky part is wrapping the letters. As a letter disappears on one side of the board, the same letter should reappear at the other side. You need to create a copy of this letter sprite, or maybe a copy of the entire row/column.

    Anyway, this is a pretty complex mechanics, not something that can be done in 20 minutes.

  • I don't have a Mac and can't open your presentation.

  • Ashley , could you please explain why this happens? I wonder if it's a bug or expected behavior?

    If I destroy all instances of the sprite and unload it from memory, I thought that next time I create this sprite, its images should be re-loaded from the spritesheet.

  • This question is asked so often here lately, someone should make a tutorial.

    You need to add Local Storage plugin to your project, and manually update all actions and events - replace WebStorage with Local Storage. After that you can remove WebStorage from the project.

    Note, that Local Storage works differently, read the documentation carefully, and check the official template:

    https://editor.construct.net/#open=localstorage-hiscore

  • If you set acceleration/deceleration to 0, then MoveTo moves at the same constant speed. It is not slow or fast, the speed is the same.

    If you need the traveling time to be same, then use the formula for speed SimpleGames gave you.

  • So you creating these objects in runtime? Did you add "Persist" behavior to them?

    You can send me the file, my email in this post:

    construct.net/en/forum/game-development/job-offers-and-team-requests-28/-paid-and-free-programmer-will-130628

  • So you simply need to respawn one monster again and again in exactly the same position? Why didn't you tell this from the start?

    You can simply set it invisible, wait 5 seconds, set it visible.

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