Search found 6 matches

by Liquid Tungsten
Sun Apr 27, 2014 5:12 am
Forum: General
Topic: I would like help with my basic platforming stuff
Replies: 8
Views: 4737

Re: I would like help with my basic platforming stuff

So uh I messed around with my code some more. The problem now is I don't really know how to detect when my player has hit the ground. so Here is my updated code. main.lua local playerfunc=require 'player' function love.load() player={x=750,y=591,upVelocity=600,isJumping=false,PlayerSpeed=600} end fu...
by Liquid Tungsten
Tue Apr 22, 2014 2:10 am
Forum: General
Topic: I would like help with my basic platforming stuff
Replies: 8
Views: 4737

Re: I would like help with my basic platforming stuff

Another off-topic: What's with this whole "Obey" thing? I don't really get it.
by Liquid Tungsten
Tue Apr 22, 2014 2:01 am
Forum: General
Topic: I would like help with my basic platforming stuff
Replies: 8
Views: 4737

Re: I would like help with my basic platforming stuff

Nah, I mostly play TF2, and some other assorted indie games. I just named myself Liquid Tungsten because liquid tungsten melts at roughly around 3,400 degrees Celsius, and I thought that was a cool fact.
by Liquid Tungsten
Mon Apr 21, 2014 2:31 am
Forum: General
Topic: I would like help with my basic platforming stuff
Replies: 8
Views: 4737

Re: I would like help with my basic platforming stuff

Thanks a lot, Robin. Your help is greatly appreciated, even if I don't quite understand it yet.
by Liquid Tungsten
Mon Apr 14, 2014 2:50 am
Forum: General
Topic: I would like help with my basic platforming stuff
Replies: 8
Views: 4737

I would like help with my basic platforming stuff

Hi everybody- I am new to this forum. I am also a love2d/game programming newb, so I want to ask the community for a little help. I decided to try my hand at a basic platforming game, so I wrote some the following code: player.lua function module.create() return {x=750,y=590,velocity=200,velocity2=3...