newt
Good to know, thanks.
But if the background in the game is more complex, consisting of different sprites, or moving, scaling - then I guess it needs to be a part of layout, not set in html.
fenis99
Yes, but once the users logged into their facebook account - what's next? What do you mean by "manage players"?
Post messages on their wall? Use Facebook Leaderboards?
In Platform behavior you can change the angle of gravity.
EMA2826
Don't use "Wait" action for this! This is a mistake many beginners make and it can cause all kind of bugs and problems.
Use Timer behavior instead.
Set Invincible=1, start Timer for 1.5 seconds.
On Timer event, set Invincible=0
https://www.scirra.com/tutorials/73/sup ... reen-sizes
To get rid of black bars on screens with different aspect ratio, use scale outer mode and make your background about 15% bigger than layout size.
Develop games in your browser. Powerful, performant & highly capable.
You do not have permission to view this post
Try checking for overlapping at a different offset - 15 or less.
Make another invisible "inverted" tilemap with tiles in place of holes, and use it for pathfinding.
Set obstacles=Custom in pathfinding properites and add this tilemap as an obstacle.
I think it's possible in C3, but not in C2.
The best you can do is a bunch of events like this:
If variable=x then spawn object x
If variable=y then spawn object y
etc.
If you are using 8-Direction behavior, simply set a low value to Deceleration property.
8-direction is mostly used in top-down games. Frankly, I have never seen Platform and 8-direction being used together in one object.
You can change the maximum Platform speed with events. Set a higher speed when grappling, then reset back to normal walking speed.
Why do you use Platform and 8-direction behaviors on the same objects? I don't think they work together well.
I would suggest moving the character and blocks using Platform actions only.
I replied you in PM.
Set s to left(s, 2) & "X" & right(s, len(s)-3)
If you are sure that there is only one occurrence of the character in the string (or if you want to replace all letters "D" with "X"), you can use replace() expression:
Set s to replace (s, "D", "X")
Do you reset continuecheck and countdown timer at the start of the layout/level?
Try running your game in debug mode (ctrl-F4) and see what's going on with this variable, countdown variable, layer visibility etc.
If nothing helps, share your capx.