Search found 21 matches
- Sun Jul 07, 2019 5:24 am
- Forum: Games and Creations
- Topic: GUNZ - Gun fight with your friend/sibling
- Replies: 1
- Views: 3378
GUNZ - Gun fight with your friend/sibling
A 2 player game for a harmless gun fight with your friend or sibling https://i.gjcdn.net/data/games/6/75/421825/media/game-description/screenshot1-4peawrjn.gif https://i.gjcdn.net/data/games/6/75/421825/media/game-description/screenshot2-hga8fxq4.gif https://i.gjcdn.net/data/games/6/75/421825/media...
- Thu Feb 21, 2019 11:13 am
- Forum: Games and Creations
- Topic: Tower Climb
- Replies: 15
- Views: 19710
Re: Tower Climb
Fun game. :) I'd appreciate a Pause button (space bar?) since it tracks time. I tried hitting ESC during gameplay to pause the game, and found myself back at the main menu. Is that intentional? A height counter of some kind would be nice to track player progress. Are all towers the same height? I d...
- Sun Feb 17, 2019 2:12 pm
- Forum: Support and Development
- Topic: How to delta time properly?
- Replies: 3
- Views: 4563
How to delta time properly?
I've got this code which controls a top-down shooter player's movement function player.move(speed, friction, dt) if love.keyboard.isDown("a") then player.xv = player.xv - speed*dt elseif love.keyboard.isDown("d") then player.xv = player.xv + speed*dt end if love.keyboard.isDown(&...
- Sat Feb 16, 2019 11:46 pm
- Forum: Support and Development
- Topic: Is there any online editor for Love2D?
- Replies: 10
- Views: 14704
Re: Is there any online editor for Love2D?
Chances are, if your school computers are that bad, löve won't really be able to run on them anyway... (Also, if you do want to try the google drive thing, you'll need the dll files as well, not just love.exe) I can get the love windows-32bit zipped version from the homepage and put it in my drive,...
- Fri Feb 15, 2019 3:11 am
- Forum: Support and Development
- Topic: Is there any online editor for Love2D?
- Replies: 10
- Views: 14704
Re: Is there any online editor for Love2D?
I'm sure you can download stuff but maybe can't install it. You could try downloading a portable copy and try running that. I keep a folder on the school's network with portable programs. l can save love.exe in my google drive and download it from the drive each time the club makes a game. But the ...
- Fri Feb 15, 2019 12:41 am
- Forum: Games and Creations
- Topic: Tower Climb
- Replies: 15
- Views: 19710
Re: Tower Climb
Thanks!Con_Quister wrote: ↑Thu Feb 14, 2019 7:16 pm I think its a pretty solid platformer. The physics are frustrating but feels fair when paired with the level design and overall challenge. kind of like how an old nes game would feel like. I like the music it definitely evokes an nes feel too.
- Thu Feb 14, 2019 9:13 am
- Forum: Games and Creations
- Topic: Tower Climb
- Replies: 15
- Views: 19710
Re: Tower Climb
See for example https://gafferongames.com/post/integration_basics/ I read the article and my simple premature brain wasn't able to understand most of it. But I think this will come in handy later when I have some knowledge of high school physics Nice little game, by the way :) Thanks for the compli...
- Thu Feb 14, 2019 8:58 am
- Forum: Games and Creations
- Topic: Tower Climb
- Replies: 15
- Views: 19710
Re: Tower Climb
Thanks for the compliment
- Thu Feb 14, 2019 12:24 am
- Forum: Games and Creations
- Topic: Tower Climb
- Replies: 15
- Views: 19710
Re: Tower Climb
It seems that there's a miscalculation of gravity. Changing this in Objects/PlatformerPlayer.lua: function player.gravity(grv, dt) player.yv = player.yv + grv end to this: function player.gravity(grv, dt) player.yv = player.yv + grv*dt end and adjusting gravity to this value: player.gravity(835, dt...
- Wed Feb 13, 2019 2:32 am
- Forum: Games and Creations
- Topic: Tower Climb
- Replies: 15
- Views: 19710
Re: Tower Climb
Thanks for uploading. Is there any other way to jump besides the up arrow? I was unable to reach any platform above me... can't make it off the very ground level!? So you weren't able to jump when you pressed the up arrow? What version of the game were you playing (.love or windows standalone)? Als...