Icons for "Comic Dots" magic tools

This commit is contained in:
Bill Kendrick 2024-09-17 22:21:23 -07:00
parent d94e85e26e
commit d6af2fa981
4 changed files with 2 additions and 3 deletions

View file

@ -9,13 +9,12 @@ https://tuxpaint.org/
2024.September.17 (0.9.34)
* New Magic Tools:
----------------
* WIP "Comic Dots", draws repeating dots (using a multiply blend)
* "Comic Dots", draws repeating dots (using a multiply blend)
to simulate the "Ben Day process" of coloring/shading.
+ Code & icon Bill Kendrick <bill@newbreedsoftware.com>
+ Sound effect based on "superhero theme",
Creative Commons Attribution 4.0 by Luis Humanoide
<https://freesound.org/people/humanoide9000/>
- TODO needs icon
Closes https://sourceforge.net/p/tuxpaint/feature-requests/257/
* Magic Tool Improvements:

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

View file

@ -124,7 +124,7 @@ SDL_Surface *comicdot_get_icon(magic_api * api, int which)
{
char fname[1024];
snprintf(fname, sizeof(fname), "%simages/magic/xor.png", api->data_directory); // FIXME [which]
snprintf(fname, sizeof(fname), "%simages/magic/comic_dots_%d.png", api->data_directory, which);
return (IMG_Load(fname));
}