Search found 9 matches

by DrLuke
Sun May 29, 2011 12:18 am
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Re: Platformer Prototype

Fasten your seatbelts and don't let any limbs hang outside of the table's boundaries, I'm presenting you:
Collisions with triangles!

ncSoY.png
ncSoY.png (30.43 KiB) Viewed 293 times

http://dl.dropbox.com/u/28079852/Collisions16.love
by DrLuke
Tue May 17, 2011 7:36 am
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Re: Platformer Prototype

bmzz wrote:when the player stand on ground and i hit right(or left) gently, player will Jitter.
Yeah, that's a problem with the friction, soon to be solved.
by DrLuke
Sat May 14, 2011 10:47 pm
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Re: Platformer Prototype

I am not using box2d. I made everything myself!
by DrLuke
Sat May 14, 2011 5:15 pm
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Re: Platformer Prototype

I added a fixed timestep now. Aka you can't fall through the floor when moving the window anymore.

http://dl.dropbox.com/u/28079852/PlatformerProto14.love
by DrLuke
Sat May 14, 2011 4:34 pm
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Re: Platformer Prototype

that's dt for you :)
by DrLuke
Fri May 13, 2011 5:15 pm
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Re: Platformer Prototype

Hehe thanks :3
by DrLuke
Fri May 13, 2011 11:11 am
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Re: Platformer Prototype

Good news, instead of smacking my brain with books for exams, I can code today! I plan on getting proper walljumping with wallsliding done. I could also add triangles as objects, but to be honest, I don't know if I want to. On a side note, I used this guide: http://www.metanetsoftware.com/technique/...
by DrLuke
Fri May 13, 2011 8:53 am
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Re: Platformer Prototype

That's part of the rudminetary wall-jumping. That's why I said it's not done yet. Or: It's a feature, not a bug!
by DrLuke
Fri May 13, 2011 8:39 am
Forum: Games and Creations
Topic: Platformer Prototype
Replies: 19
Views: 8385

Platformer Prototype

Hey guys! Look, I made a platformer prototype! Currently features: Collisions of dynamic entities (i.e. the player) with static entities (i.e. walls, probably even elevators) Bouncyness of the player when colliding Friction when colliding with walls and bouncing Rudimentary wall-jumping, which isn't...