Main Menu

Roguelike Development with REXPaint, a Guide

Started by Kyzrati, July 28, 2015, 02:24:56 AM

Previous topic - Next topic

Kyzrati

I've posted an in-depth guide to how I use REXPaint for roguelike development--mockups, art, prefabs and more--including specific techniques and plenty of reference images. Check it out here.
Josh Ge, Developer - Dev Blog | @GridSageGames | Patreon

nullzero

Reply, sweet! I'm specially found of the useful tips section.

I'm trying the editor again and I'm enjoying the autocomplete cell function, it makes it pretty easy to make a mockup.

By the way, is there any color that serves as a transparent background for the .png image export? At least I found out that it is easy to open the .png in another program (i.e. GIMP) select the empty black background and delete it.


Kyzrati

Yup, useful tips are useful :D. Certainly I've used this thing for a very long time for so many parts of game development, accumulating a number of good habits in the process.

Quote from: nullzero on July 30, 2015, 03:14:39 PM
By the way, is there any color that serves as a transparent background for the .png image export? At least I found out that it is easy to open the .png in another program (i.e. GIMP) select the empty black background and delete it.
Unfortunately, no. Even if I did set a color that could do this, I'm not really sure about adding transparency to a .png image, to be honest. For now I'd just say... use a supplementary program as you are :/. I'll add that to a list of things to look at at some point, but there are quite a few higher-priority items on that list already. (Technically we could just say that the hot pink transparency color on layer 0 becomes transparent in the final image, so we wouldn't need a second color.)
Josh Ge, Developer - Dev Blog | @GridSageGames | Patreon

ironpotato

Quote from: Kyzrati on July 31, 2015, 09:02:28 AM
Yup, useful tips are useful :D. Certainly I've used this thing for a very long time for so many parts of game development, accumulating a number of good habits in the process.

Quote from: nullzero on July 30, 2015, 03:14:39 PM
By the way, is there any color that serves as a transparent background for the .png image export? At least I found out that it is easy to open the .png in another program (i.e. GIMP) select the empty black background and delete it.
Unfortunately, no. Even if I did set a color that could do this, I'm not really sure about adding transparency to a .png image, to be honest. For now I'd just say... use a supplementary program as you are :/. I'll add that to a list of things to look at at some point, but there are quite a few higher-priority items on that list already. (Technically we could just say that the hot pink transparency color on layer 0 becomes transparent in the final image, so we wouldn't need a second color.)

Are you using SDL functions to save the images? Image formats aren't too terrible to write manually. Not that you have time for that, but just in case anyone else was interested.

Kyzrati

No SDL functions, no. It's a separate png write function. I did take note to at least investigate it in the future, but yeah, not enough time to work on REXPaint right now.
Josh Ge, Developer - Dev Blog | @GridSageGames | Patreon