R0J0hound's Recent Forum Activity

  • Since they did it with the next penalope they have the base of making a C2 game run on the switch. You could always try to see if you could hire them to get your game on switch too. No idea what the cost would be.

  • The limit was added as a spam fighting measure. There are still spam accounts that get through registration and blocking the links is the best way to stop them until a mod can recognize it as spam.

    Anyways, that doesn’t preclude new users from posting links. You can put the link inside code tags or add spaces in a few spots in the link. Or as a different user you can see the blocked link by just looking at the page source if you feel so inclined.

    At any rate, a new user will get enough rep in a short time anyway.

  • one possible solution is by using qarp() to do the curve.

    Objects:

    A, B, dot

    Every tick

    —- destroy dot

    Repeat 10 times

    —- create dot at lerp(A.x, B.x, (loopindex+1)/11), qarp(A.y, (A.y+B.y)/2-abs(A.x-B.x)/4, B.y, (loopindex+1)/11)

    Dot.x > touch.x

    —- destroy dot

  • Changing the playback rate changes the pitch.

  • Isn't there a create by name action?

  • From what I read most browsers already do this internally with JavaScript. Are you having performance issues?

  • If it says the file isn’t compatible then it probably is corrupted unfortunately. If you open the file in a hex editor I’d guess it’s all zeros so there is nothing to recover.

  • You could always just move around the layout a screen at a time, capture a screenshot of each and merge then together.

    https://www.dropbox.com/s/rth2r0p44qex6 ... .capx?dl=1

  • Instead of using "set at (loopindex, 1)", use (array.width-1, 1). The first loop pushes stuff to the end and loopindex ends up being at the end of the array. In the second loop, loopindex is not the end of array. You could also use loopindex+TileFloor.count instead of loopindex in the second loop.

    You can offset the grid using this.

    grid_position = round((x-offset)/gridsize)*gridsize+offset

    For example when the walls are vertical.

    x = round((Mouse.X-24)/48)*48+24

    y = round((Mouse.Y)/48)*48

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • If the object origin is at the center you can do warping with two events:

    sprite: x < -self.width/2

    --- sprite: set x to self.x+640+self.width

    sprite: x > 640+self.width/2

    --- sprite: set x to self.x-640-self.width

  • That dropbox change broke all the links, just TAG the authors in a reply and if they're around they can fix those links.

  • Use this equation for x and y. Solving for scrollx1 and scrolly1 should do it

    (X-scrollx0)/scale0 = (x-scrollx1)/scale1