I have a real PROBLEM! FMG,scitunes,tshirt
DanielAvni
Member Posts: 114
FMG,i need your TUTORIALS PLEASE!
I have 2 games that i need help with.
1st is i basically need the tutorials from FireMapleGames, are they coming soon?
My 2nd question is if not please can someone for starters tell me how to do the cloud platform so i can make my game? PLEASE i want to send the games out!
Thanks DanielA
I have 2 games that i need help with.
1st is i basically need the tutorials from FireMapleGames, are they coming soon?
My 2nd question is if not please can someone for starters tell me how to do the cloud platform so i can make my game? PLEASE i want to send the games out!
Thanks DanielA
Comments
http://gamesalad.com/forums/topic.php?id=370#post-1907
http://gamesalad.com/forums/topic.php?id=1468#post-8276
collide with cloud
when self.linear.Y is <0
AND overlaps with cloud
accelerate 90
this should let you jump through the cloud and then jump off of it when you hit it on your way down.
I can only assume he is at work like a mad scientist creating a platformer only to be rivaled by the likes of the Italian plumber himself.
Do this with Constrain Attributes in the player:
Constrain Attribute
game.PlayerX = self.Position.X
Constrain Attribute
game.PlayerY = self.Position.Y
In the cloud platform, create a Rule like this:
Rule
When game.PlayerY >= (self.PositionY + self.Height/2)
Collide with Player
That will give you a very basic cloud platform.
I am still working on the platformer tutorials. They are still not perfect. I will release them when they are. I have been very busy lately, and haven't had time to work on them...
You need to keep track of the main player's X and Y positions in global game Attributes.
Do this with Constrain Attributes in the player:
Constrain Attribute
game.PlayerX = self.Position.X
Constrain Attribute
game.PlayerY = self.Position.Y
In the cloud platform, create a Rule like this:
Rule
When game.PlayerY >= (self.PositionY + self.Height/2)
Collide with Player
That will give you a very basic cloud platform.
EDIT: O darn, FMG JUST beat me to the solution. You would think he copied me though with how similar our answers are! Hey maybe QS isn't the only Time Traveling Bovine???
http://gamesalad.com/forums/topic.php?id=3911
http://forums.toucharcade.com/showthread.php?t=46403