"Tessellation" sound effect

This commit is contained in:
Bill Kendrick 2024-10-09 19:58:32 -07:00
parent 7ccd3aca7f
commit 076ccbd947
4 changed files with 11 additions and 3 deletions

View file

@ -6,7 +6,7 @@ Copyright (c) 2002-2024
Various contributors (see below, and CHANGES.txt)
https://tuxpaint.org/
June 17, 2002 - October 8, 2024
June 17, 2002 - October 9, 2024
* Design and Coding:
@ -271,6 +271,11 @@ June 17, 2002 - October 8, 2024
"Tessellation" magic tool
by Bill Kendrick <bill@newbreedsoftware.com>
"Tessellation" sound effect based on "TIME_Vocal Harmony.mp3"
<https://freesound.org/people/GrowingUp/sounds/350128/>
Creative Commons CC0 1.0 Universal by Chris B. "Growing Up"
<https://freesound.org/people/GrowingUp/>
Bloom magic tool
by Bill Kendrick <bill@newbreedsoftware.com>

View file

@ -99,7 +99,10 @@ https://tuxpaint.org/
* "Tessellation Pointy" & "Tessellation Flat", a pair of tools
to draw a repeating hexagon tessellation pattern
+ Code by Bill Kendrick <bill@newbreedsoftware.com>
+ TODO Add sound effect
+ "Tessellation" sound effect based on "TIME_Vocal Harmony.mp3"
<https://freesound.org/people/GrowingUp/sounds/350128/>
Creative Commons CC0 1.0 Universal by Chris B. "Growing Up"
<https://freesound.org/people/GrowingUp/>
+ TODO Documentation
* Magic Tool Improvements:

Binary file not shown.

View file

@ -85,7 +85,7 @@ int tessell_init(magic_api * api, Uint8 disabled_features ATTRIBUTE_UNUSED, Uint
{
char fname[1024];
snprintf(fname, sizeof(fname), "%ssounds/magic/xor.ogg", api->data_directory); // FIXME
snprintf(fname, sizeof(fname), "%ssounds/magic/tessellation.ogg", api->data_directory);
tessell_snd = Mix_LoadWAV(fname);
return (1);