Grid Sage Forums

REXPaint => Everything REXPaint => Topic started by: Kyzrati on July 28, 2015, 02:24:56 AM

Title: Roguelike Development with REXPaint, a Guide
Post by: Kyzrati on July 28, 2015, 02:24:56 AM
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 (http://www.gridsagegames.com/blog/2015/07/roguelike-development-rexpaint/).
Title: Re: Roguelike Development with REXPaint, a Guide
Post by: nullzero on July 30, 2015, 03:14:39 PM
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.

Title: Re: Roguelike Development with REXPaint, a Guide
Post by: 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.

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.)
Title: Re: Roguelike Development with REXPaint, a Guide
Post by: ironpotato on August 01, 2015, 09:23:13 PM
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.

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.
Title: Re: Roguelike Development with REXPaint, a Guide
Post by: Kyzrati on August 01, 2015, 11:00:14 PM
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.