Popular posts from this blog
Sup*r M*troid(Update 17Oct13) New in Blue
...is a cool game! And is the inspiration for my next android game project. I don't have pictures yet but the code has been started. I believe the genre is called Metroidvania. Many Android platformers don't feel right when you play them like the little dude isn't moving fast enough or there is something wrong with the gravity. I have not found one game yet that the character is nice and spry and is a joy just making him move around. This is the starting focus of this game- making it fun to move the character around responsive and quick. I'm borrowing elements from the Metroid series and Cave Story. I have yet to play even one Castlevania game so I don't know if there will be any of that in there. Naturally a game like this must have a huge area to explore and this one will. That's all for now. Here is the main character (before and after DNA enhancement) And here is one of the armor suits: At last, actual coding has begun! I can't wait...
Lua
For a project I'm working on, I'm learning Lua and I need to strengthen my Linux fu. The "Hello World" that I use for new languages is a count to a million. I use this because I have to have an output and a loop and it shows the speed of the language. In this case, I also included os.clock() which returns the time in seconds since the script started. Here is the script: for n=1,1000000 do print(n,os.clock()) end I named it script.lua in Windows you just double click it(assuming you have Lua already installed) It opens in what looks like a command prompt, after the script is done the window shuts immediately so you don't have time to read all the magical numbers. I added another loop and variable to keep it on the screen long enough for me to ogle it. That looks like this: x=os.clock() for o=1,10000000 do print(x,os.clock()) end In Linux it's a bit more complicated to run it. You type this into a terminal: lua -i script.lua and it runs right in ...
Top looks like a blue wind-up Bomb-Omb. Ah Super Mario 3. Alpha!
ReplyDeleteThis comment has been removed by the author.
Delete