I Wanna Community

Fangames => Game Design => Programming Questions => Topic started by: Junior Nintendista on August 05, 2015, 08:57:28 PM

Title: Edit sprites with glow
Post by: Junior Nintendista on August 05, 2015, 08:57:28 PM
Well, I need a program to edit this sprite as the game maker is not good, recommend me a program.

example:

Original
(https://i.imgur.com/YllRyOx.png)

Game Maker
(https://i.imgur.com/YJeg9pG.png)
Title: Re: Edit sprites with glow
Post by: Katz on August 05, 2015, 09:17:29 PM
Every image editing program (even gamemaker) has a tolerance level with the magic wand selection. I'd use that to the best of your abilities.

(Judging from that sprite you might need to blur out the edges when you make the cut, too)
Title: Re: Edit sprites with glow
Post by: Derf on August 05, 2015, 10:32:34 PM
Yeah the magic wand tool is what you're gonna be needing to use and there's not a massive amount of difference between the version in GM and other program.

Alternatively you could try making the sprite yourself by drawing the white bar in the middle and using glow settings. GM's aren't that advanced but you could still do something serviceable with them.
Title: Re: Edit sprites with glow
Post by: infern0man1 on August 05, 2015, 11:17:08 PM
Increase the size of the eraser; the edges of the eraser mark will be a lighter alpha,  like the smooth edge option.
Title: Re: Edit sprites with glow
Post by: klazen108 on August 06, 2015, 08:50:49 AM
I use a plugin for Paint.net called 'Alpha Mask' - this works great if the background is a solid black/white like that:
(https://i.imgur.com/2en5imQ.png)
You just need to select the entire image, then copy it, and then choose the 'paste from clipboard' option in the plugin.

ALTERNATIVELY you could use an additive blend mode while drawing that sprite, that's probably what was intended - in additive blend mode, sprite colors are added to what's already on the screen, and since black is (0,0,0) the background colors are not changed. The bright parts also look "shinier", for this reason additive blend mode is often used for special effects like fire, sparks, magic, etc.
Code: [Select]
draw_set_blend_mode(bm_add);
draw_self();
draw_set_blend_mode(bm_normal);
(click to show/hide)

Get the Alpha Mask plugin here (https://forums.getpaint.net/index.php?/topic/1854-alpha-mask-import-plugin-20/)
Get Paint.NET here (https://www.getpaint.net/index.html)
How to install plugins in Paint.NET (https://forums.getpaint.net/index.php?/topic/1708-how-to-install-pluginsgeneral-plugin-troubleshooting-thread/)
Title: Re: Edit sprites with glow
Post by: Junior Nintendista on August 15, 2015, 11:22:55 AM
I use a plugin for Paint.net called 'Alpha Mask' - this works great if the background is a solid black/white like that:
(https://i.imgur.com/2en5imQ.png)
You just need to select the entire image, then copy it, and then choose the 'paste from clipboard' option in the plugin.

ALTERNATIVELY you could use an additive blend mode while drawing that sprite, that's probably what was intended - in additive blend mode, sprite colors are added to what's already on the screen, and since black is (0,0,0) the background colors are not changed. The bright parts also look "shinier", for this reason additive blend mode is often used for special effects like fire, sparks, magic, etc.
Code: [Select]
draw_set_blend_mode(bm_add);
draw_self();
draw_set_blend_mode(bm_normal);
(click to show/hide)

Get the Alpha Mask plugin here (https://forums.getpaint.net/index.php?/topic/1854-alpha-mask-import-plugin-20/)
Get Paint.NET here (https://www.getpaint.net/index.html)
How to install plugins in Paint.NET (https://forums.getpaint.net/index.php?/topic/1708-how-to-install-pluginsgeneral-plugin-troubleshooting-thread/)
Thanks