Icons for Saturate, Desaturate, Keep Color, Remove Color
This commit is contained in:
parent
6b7f59d7f1
commit
b4c284edc8
6 changed files with 10 additions and 12 deletions
|
|
@ -7,7 +7,7 @@ Various contributors (see below, and AUTHORS.txt)
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
|
|
||||||
2023.March.6 (0.9.29)
|
2023.March.7 (0.9.29)
|
||||||
* Improvements to "Stamp" tool:
|
* Improvements to "Stamp" tool:
|
||||||
-----------------------------
|
-----------------------------
|
||||||
* Stamps may now be rotated.
|
* Stamps may now be rotated.
|
||||||
|
|
@ -60,7 +60,6 @@ https://tuxpaint.org/
|
||||||
|
|
||||||
* [WIP] "Saturate" & "Desaturate" - Increase or decrease color saturation.
|
* [WIP] "Saturate" & "Desaturate" - Increase or decrease color saturation.
|
||||||
Bill Kendrick <bill@newbreedsoftware.com>
|
Bill Kendrick <bill@newbreedsoftware.com>
|
||||||
- need icons
|
|
||||||
- need sound effects
|
- need sound effects
|
||||||
|
|
||||||
* [WIP] "Keep Color" & "Remove Color" - Completely desaturate
|
* [WIP] "Keep Color" & "Remove Color" - Completely desaturate
|
||||||
|
|
@ -69,7 +68,6 @@ https://tuxpaint.org/
|
||||||
while "Remove" desaturates parts of the image that match the
|
while "Remove" desaturates parts of the image that match the
|
||||||
chosen color.
|
chosen color.
|
||||||
Bill Kendrick <bill@newbreedsoftware.com>
|
Bill Kendrick <bill@newbreedsoftware.com>
|
||||||
- need icons
|
|
||||||
- need sound effects
|
- need sound effects
|
||||||
|
|
||||||
* [WIP] "Kaleido-4", "-6", and "-8" -- Kaleidoscopic lens effects.
|
* [WIP] "Kaleido-4", "-6", and "-8" -- Kaleidoscopic lens effects.
|
||||||
|
|
|
||||||
BIN
magic/icons/desaturate.png
Normal file
BIN
magic/icons/desaturate.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5 KiB |
BIN
magic/icons/keep_color.png
Normal file
BIN
magic/icons/keep_color.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
BIN
magic/icons/remove_color.png
Normal file
BIN
magic/icons/remove_color.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
BIN
magic/icons/saturate.png
Normal file
BIN
magic/icons/saturate.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5 KiB |
|
|
@ -23,7 +23,7 @@
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
(See COPYING.txt)
|
(See COPYING.txt)
|
||||||
|
|
||||||
Last updated: February 28, 2023
|
Last updated: March 7, 2023
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
@ -82,19 +82,19 @@ char * tool_descriptions[NUM_TOOLS][2] = {
|
||||||
char * sfx_filenames[NUM_TOOLS] = {
|
char * sfx_filenames[NUM_TOOLS] = {
|
||||||
"fade.wav",
|
"fade.wav",
|
||||||
"darken.wav",
|
"darken.wav",
|
||||||
"fade.wav", // FIXME
|
"desaturate.wav",
|
||||||
"darken.wav", // FIXME
|
"saturate.wav",
|
||||||
"darken.wav", // FIXME
|
"remove_color.wav",
|
||||||
"darken.wav", // FIXME
|
"keep_color.wav",
|
||||||
};
|
};
|
||||||
|
|
||||||
char * icon_filenames[NUM_TOOLS] = {
|
char * icon_filenames[NUM_TOOLS] = {
|
||||||
"fade.png",
|
"fade.png",
|
||||||
"darken.png",
|
"darken.png",
|
||||||
"fade.png", // FIXME
|
"desaturate.png",
|
||||||
"darken.png", // FIXME
|
"saturate.png",
|
||||||
"darken.png", // FIXME
|
"remove_color.png",
|
||||||
"darken.png", // FIXME
|
"keep_color.png",
|
||||||
};
|
};
|
||||||
|
|
||||||
static Mix_Chunk *snd_effects[NUM_TOOLS];
|
static Mix_Chunk *snd_effects[NUM_TOOLS];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue