The VG Resource
The GameDev Lounge 00000011 - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: Creativity (https://www.vg-resource.com/forum-126.html)
+--- Forum: Game Development (https://www.vg-resource.com/forum-129.html)
+--- Thread: The GameDev Lounge 00000011 (/thread-25298.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20


RE: The GameDev Lounge 00000011 - Hiro-sofT - 07-04-2017

[Image: cappani_world2beach2_1_.gif]



RE: The GameDev Lounge 00000011 - Kold-Virus - 07-04-2017

Well hello again, Cappani! Genki ^_^

Looking amazing as usual!

@iyenal. Yep. Shaders good. Genki ^_^


RE: The GameDev Lounge 00000011 - puggsoy - 07-04-2017

Have you thought about adjusting the camera for when Cappani goes out of bounds? The fact that she can jump that high but you won't be able to see her seems like it could take away from the gameplay and fun of jumping around.


RE: The GameDev Lounge 00000011 - Hiro-sofT - 07-05-2017

Well, normally I would just make the room bigger, in order to prevent that from happening. What you currently see is a test room for the tileset, in which I just have thrown the tiles in to see how they look like and how they fit with each other.

The out of bounds scrolling could be done, but it would mean, that I need to build actually way more level structure than now because of it. Currently, you can only see as much as the camera shows. But the camera needs an overhaul anyway (many people are saying it's too hectic, instant and fast).


RE: The GameDev Lounge 00000011 - iyenal - 08-13-2017

Giving some update :
Actually working on a level editor for Eggman Shuttle, on mobile platforms :
[Image: image.png]


RE: The GameDev Lounge 00000011 - iyenal - 01-03-2018

I don't know if Processor Developement enter in Game Development, but I think it is interesting to show this :
[Image: COVER1.png]
I started to make my own processor, and this is the cover of the development guide. Maybe it could be used somewhere.
And about the Sonic fangame, I make currently the UI.


RE: The GameDev Lounge 00000011 - IceManual - 01-07-2019

a forest scene from my rm2k3 project
[Image: unknown.png]


RE: The GameDev Lounge 00000011 - iyenal - 01-10-2019

(01-07-2019, 11:46 PM)IceManual Wrote: a forest scene from my rm2k3 project
[Image: unknown.png]

Wow, outstanding scene, so well detailed! Really great.


RE: The GameDev Lounge 00000011 - Kold-Virus - 01-18-2019

YAY, Ploaj and SMG are life-savers. They helped me fix my Metallic shader I was writing for Super Smash Bros. Feud!

Here it is in action! Left -> Right: 0 - 1 blend value!

[Image: BdOZLKJ.png?1]


RE: The GameDev Lounge 00000011 - iyenal - 01-19-2019

Happy to see new progress on Feud!


RE: The GameDev Lounge 00000011 - Kold-Virus - 01-19-2019

Thanks buddy! Big Grin

I haven't done much actual gameplay and stuff yet. I've been focusing on "core" game stuff like my moveset script intepreter, core fighter functions, etc.


RE: The GameDev Lounge 00000011 - Alefy San - 12-03-2023

I'm currently trying to create some sort of "old-school-fan-made-fighting-game" inspired by Mugen with the purpose of learning. I always give up on my projects, but at least this code will be reusable. I'm currently creating my own file format for the characters, I'm calling it the ".chr". It's made out of textures and character data. I have learned a bit of Python so I could make a script that converts PNGs and a readable JSON into this format. It supports custom palettes and some sort of compression. It is also usually smaller than PNG files, even with the additional data. The format is partly working, already. The converter script is working fine and my game can already load and display the textures from these files, but now I am working on something I'm calling the "frame data". It defines the animations and the offsets of each frame on the sprite sheet. If I don't give up on this game soon enough I might create some thread for it in the future. But even if I give up on working on this game, I'm glad I'm making this code to be as reusable as possible. It is very modular with some features you would find in a game engine.

...Working with binary in Python is easier than I thought.