My first Game - Android Platformer

[size=120]How can I change the ladder climbing speed?

Is there a way to make a pause-menu and GUI in all scenes?
Link external events is okay, but external layouts cannot work because you can only choose one scene. Do I have to copy/set as a global object and position each object individually in each scene? :o[/size]

Why the collision with the yellow bar does not work correctly here?
Even if I not use a rotation but an angle in scene editor, only higher up it works. Standard Hitboxes, no custom object sitze.

http://memu.ga/game
I think I had a similar problem in the past when I built a slide, sometimes(!!) the player fell down at 90% of the slide.

  • You cannot change the ladder climbing speed for now, unless you change the time scale.
  • yes, you can use external events and layouts in several scenes, the software asks for a reference scene but they aren’t limited to that reference scene.
  • can you show the relevant events and settings for that yellow bar issue?

Now I know what the problem is, but not the solution.
If I put the Center in Edit points from auto/auto (100/18.5) to 0/18.5 the collision works only in the first 50% of the bar.
game.zip

I have two blocks that are deleted when the player touches them (jumping from below). It is possible to touch 2 (not more than 2) at the same time. But only one should be deleted. Unfortunately with these events both are always deleted at the same time.

have you tried to force value of variable to 1 or 0 and see what happens?
Maybe the problem is with variable, the code seems right to me
why not use an scene variable instead of object variable?

It doesn’t make sense to me but with Scene and Global variable, it works.
Also it’s weird you can use variables without creating them.

for me as a programmer it has sense like local and global variable.
In some programming languages you can use variable without declaring them, you need one you use it but it will lead to confusión I prefer declaring because mispelling a letter will create a new variable and tyou’ll get crazy until you find this error

Right now I’m trying to use Extension/Function for checkpoints in my game.
One of the problems is “Change the Position of para1: = tree.X(), = treeY()” does not work.
para1 is the player, but it is not allowed to use names of other objects?
My player appears at 0; 0 and not at the object.

For checkpoints I would prefer the usage of variables instead of objects position.

Hm. I use scene variable “checkpoint”.
If I die and she is 2, I want to telepot to the checkpoint instance with the instance-variable 2.
Outside of Functions it works.

edit: Okay I only need one parameter more for the target object and select it in normal action.

Ladder climbing speed can be changed, now. :slight_smile:
image