Sorry about that, I've just added some more Steam keys, please try again! :)
Ben Hickling
Creator of
Recent community posts
Please take a look at this post, hopefully it will help:
https://itch.io/post/801676
Development has definitely slowed right down as most of my time is now spent developing Ex-Zodiac, but I still try and update BlastFX when bugs are found etc.
I don't think I can make use of native file dialogs as it's not available in Godot currently, which is what BlastFX was made in. I should be able to get it to remember the last directory you opened though. When you say it forgets where you loaded from last time, do you mean when you quit BlastFX and open it next time, or do you mean during a single session of using it?
I would like to add sliders but it would be quite a bit of work with how everything is organized, so I'm not sure if/when I'll be able to get around to it
Sorry for the delayed response, sometimes I don't get notifications for new forum posts.
That's definitely a bug I somehow over looked. I've just tested a fix for it that seems to work, but as I'm so busy with my main game project I haven't really had the chance to extensively check that it hasn't broken something else by fixing it, so I don't really want to publish it formally at the moment. In the mean time I can provide you with this custom build if you're interested? Are you on win/mac/linux?
Thanks!
The shadows are done using an orthographic camera that views the level from a top-down perspective and it follows the ship as it moves through the level. The camera is inside a viewport so that I'm able to access what the camera sees as a texture. The viewport is setup to have a transparent background, and things like the ground in my levels are on a different visibility layer so that they're not rendered by this camera, only the main objects such as the ship, enemies, scenery etc are. I then use this texture mapped onto a flat plane positioned just above the ground (also on a different visibility layer so the top-down camera doesn't see it) and I use a shader to draw the checkerboard effect. Any part of the viewport texture with a transparency < 0.5 is discarded, and anything greater is where I draw the checkerboard texture, which is just a repeating 8 x 8 texture and it's drawn using screen space UVs.
Hope that helps, let me know if you're unsure of anything :)
Thanks for the project file, it took me a while to figure out what was going wrong (been a while since I've worked with my own software!) but here's what you need to do:
Output Frame Count = Output Frames Per Second x Emitter Lifetime
So in your case, your emitter lifetime is 2, your desired frame rate is 16, so your output frame count should be 32
That should give you a seamless loop. I'll try and change it so that those settings are updated automatically when you enable seamless looping, as a lot of people keep running into this problem (understandably).
The delay capture thing is a bit of an ugly work around for a bug I haven't been able to solve yet, but I think it's more to do with the engine I'm using. Hopefully I'll be able to avoid empty frames without relying on that eventually.
Hope this helps!
Thank you! Yep, managing the scope of the game is super important (still not sure if I've bitten off more than I can chew, but I guess we'll find out) and I think having at least one other person to work with must be super helpful too. Unfortunately I don't have that luxury at the moment, although that's mostly down to me wanting to do everything myself (bar the music, which is still out of my skill range currently, but one day...), but maybe that'll change if I find the right person to work with.
Thanks man, you're absolutely right with everything you said! Sometimes it's hard to look past a finished product and realize the amount of time and effort it took to get it to that state. I'll keep working away at what I've got and hopefully it'll work out. I've gotten this far by doing that!
Also, great work on Fight 'N Rage! I bought it a while back on Steam and it's very impressive and professional. Feels just like a real arcade game :)
haha, not at all! It was a good reminder that I hadn't actually used the dev blog since opening it.. :)
I do enjoy the concept of game jams, but it usually takes me too long to think of something and I end up getting frustrated with myself!
I definitely think releasing some kind of public test/demo will help me, at least then I'll be able to get a general idea of what I'm doing right/wrong
I'll see if its possible to allow frame-by-frame rendering in the live view, in the mean time you should be able to render the animation and then view each frame in the preview window that pops up.
For the pause, have you tried the delay option under the general section? Not sure if this is what you're looking for, let me know if it's something different you're after
Oh I see what the problem is now, I accidentally included the files twice in the zip file.. :)
You've probably got a folder structure like this:
BlastFX.exe
BlastFX.pck
Windows
If you go into the Windows folder, you'll see blastfx.exe again, run that version and it should work okay. I'll get the zip files fixed later