What should I call this adorable little platformer?
- TechnoCat
- Inner party member
- Posts: 1611
- Joined: Thu Jul 30, 2009 12:31 am
- Location: Milwaukee, WI
- Contact:
Re: What should I call this adorable little platformer?
I just continuously click the buttons on the left in sfxr until I get a sound I like.
- kikito
- Inner party member
- Posts: 3153
- Joined: Sat Oct 03, 2009 5:22 pm
- Location: Madrid, Spain
- Contact:
Re: What should I call this adorable little platformer?
In case the name isn't yet choosen, I've a suggestion:
"Greensleeves".
It shouldn't be difficult to find a creative commons chiptune to use as the background music, too.
"Greensleeves".
It shouldn't be difficult to find a creative commons chiptune to use as the background music, too.
When I write def I mean function.
- arquivista
- No longer with us
- Posts: 266
- Joined: Tue Jul 06, 2010 8:39 am
- Location: Insert Geolocation tag here
- Contact:
Re: What should I call this adorable little platformer?
Erm but don't you think it's a too much cliché song? Besides be a medieval folk song that is so totally boring when listen in continous, is also so well-know that is even one of the first songs that kids usually learn playing in organs. IMHO don't fit well in the indy-arty spirit of the game, but hey is just my opinion. Also even in games was too abused, King's Quest 1/2, Black Lamp, Xenosaga, Killer7, Punchy and list must go on. Well let's wait for Jasoco's opinion, he is the "boss".kikito wrote:In case the name isn't yet choosen, I've a suggestion:
"Greensleeves".
It shouldn't be difficult to find a creative commons chiptune to use as the background music, too.
--------------------------------------------------------
To Do: Insert Signature Here
--------------------------------------------------------
To Do: Insert Signature Here
--------------------------------------------------------
- Jasoco
- Inner party member
- Posts: 3727
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: What should I call this adorable little platformer?
I liked Greensleeves. I used to play it on my piano.
The name will come later.
My little man now has an idle animation. After a few seconds he sits down and falls asleep.
The name will come later.
My little man now has an idle animation. After a few seconds he sits down and falls asleep.
- arquivista
- No longer with us
- Posts: 266
- Joined: Tue Jul 06, 2010 8:39 am
- Location: Insert Geolocation tag here
- Contact:
Re: What should I call this adorable little platformer?
Was also the only song that I learned (and then forgot) in keyboard. But as I said is a song that was already totally overabused.Jasoco wrote:I liked Greensleeves. I used to play it on my piano.
That's nice. It's much better and original than the usual "beat the feet" or "whistle" animation. Good choice for idle anim...Jasoco wrote:My little man now has an idle animation. After a few seconds he sits down and falls asleep.
--------------------------------------------------------
To Do: Insert Signature Here
--------------------------------------------------------
To Do: Insert Signature Here
--------------------------------------------------------
- Jasoco
- Inner party member
- Posts: 3727
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: What should I call this adorable little platformer?
The sprite is only 8x8. There's not really much room to do anything too fancy. I would have had him sit down and read a book like Commander Keen but of course, too small. Also, Mario fell asleep in Mario 64.arquivista wrote:That's nice. It's much better and original than the usual "beat the feet" or "whistle" animation. Good choice for idle anim...Jasoco wrote:My little man now has an idle animation. After a few seconds he sits down and falls asleep.
Re: What should I call this adorable little platformer?
I just looked through the code... The horrors...
You really should clean up the death code, cramming it all into update, even in an early version is not a good idea.
You really should clean up the death code, cramming it all into update, even in an early version is not a good idea.
- Jasoco
- Inner party member
- Posts: 3727
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: What should I call this adorable little platformer?
Death code? There's only like 10 lines and it's in the ELSE part of an IF player.dying == false THEN call. It's not even the messiest part of the code. What line are you talking about?
Code: Select all
player.dying_f = player.dying_f - dt --Dying frame advance
player.rotate = player.rotate + 720 * dt --Rotate player twice per second
if player.dying_f < 0 then --If the death animation is over...
player.dying_f = 0 --Reset frame to 0
player.dying = false --Turn off death
player.x = 2 --Reset player position
player.y = 0
player.rotate = 0 --Reset rotation
player.jumping = false --In case he was jumping
player.facing = 0 --Reset facing
level.time = 90 --Reset level time
player.idletime = 0 --Reset idle time too
if player.lives <= 0 then --Make sure player isn't out of lives
gamemode = inMenu --If so, return to menu
end
end
Re: What should I call this adorable little platformer?
love.update() in main.lua
- Jasoco
- Inner party member
- Posts: 3727
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: What should I call this adorable little platformer?
I don't quite follow. I always put stuff in update. I even use a custom Run() function so I can draw stuff in there. In fact, eventually update and draw may be the same function if it lets me optimize the speed even more. It's the way I roll, bay-bee! I optimize over time.ZenX2 wrote:love.update() in main.lua
My code has no problems. It's not what it looks like on the inside. It's what it looks like on the outside. And my code is a lot easier to understand for me than most peoples coding techniques. And that's all that matters. That I know what it does.
Also, I like having all my code in one place rather than scattered in functions all over the place when they don't need to be. Saves me time running around clicking the function pop-down (In TextWrangler) to find what I am looking for.
Who is online
Users browsing this forum: Amazon [Bot] and 1 guest