I don't know if it's possible.
You can move the object directly with timeline, and it will follow the Bezier path. No need to use MoveTo behavior.
It's probably a Platform behavior issue. If you are sure that two collisions are registered, you can temporarily disable collisions for batBox after jumping on it:
batBox set collisions disabled Wait 0.1 batBox set collisions enabled
Or create an instance variable lastCollision. On collision add a condition checking that batBox.lastCollision<(time-0.1)
And only if it's true, then do the jump and set it lastCollision to time.
I think you have a mistake in two conditions where you compare Tpin.X
I believe it should be:
Tpin.X < (Tarea.x-20)
Tpin.X > (Tarea.x+20)
Also, how do you limit the dragging distance of Tpin sprite? I have a few examples of virtual joystick, take a look:
howtoconstructdemos.com/category/virtual-joystick
Develop games in your browser. Powerful, performant & highly capable.
You do not have permission to view this post
Check if the layer is visible, or maybe has some blend mode that makes it invisible. Check parallax, scale rate. Run the game in Debug Mode, see what really happens with these objects - maybe they are nor destroyed, but still there.
You need to add "Else" as a first condition to the second sub-event. Press X to add it.
It's because you have "Slash Spawn Slash".
You need to change it to "System Create Slash" action, or "Player spawn Slash" and then you could remove "Set position" line.
Looks like you enabled animation preview - see that highlighted icon on the toolbar in your screenshot.
You should always be able to close animation editor by pressing Esc button.
Select a large area of tiles, then switch to eraser tool and you will be able to erase this area. Once you clear the entire tilemap, make several copies of it on an unused layout. Next time when you need an empty tilemap to design a new level - you will have spares.
You should also try setting Width=true and Height=true in Pin properties. Then when the body is mirrored, the pinned sprites will become mirrored too.
If you are asking about a physical gamepad controller, here is a demo:
dropbox.com/s/fpfpwv7io4v6rf1/GamepadTopViewShooter.capx
If your joystick sprites are on another layer with different parallax/scale rate, you might need to use Touch.X(layer) and Touch.Y(layer) expressions.
Check out these examples:
dop2000 Do you have any other addons that are great for 2D platformers? I'm obviously very noob.
dop2000
Do you have any other addons that are great for 2D platformers? I'm obviously very noob.
I have lots of demo projects, you can check them here:
howtoconstructdemos.com
Also check out this demo:
howtoconstructdemos.com/aiming-with-gamepad-analogue-stick-or-mouse-capx
There is an official Speech Recognition plugin, you can check out the template included in C3.
Note, that it will only work if speech recognition is supported on user's device.