mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-21 15:14:17 +00:00
* Baystruments - I had two tgstation forks for some reason and had to delete one and that nuked the last PR (#51459) Instruments and sound channels refactor. * Baystruments - I had two tgstation forks for some reason and had to delete one and that nuked the last PR * Fixes dme dupe * Fixes dme dupe (#52954) Co-authored-by: silicons <2003111+silicons@users.noreply.github.com> Co-authored-by: AnturK <AnturK@users.noreply.github.com> Co-authored-by: Useroth <37159550+Useroth@users.noreply.github.com>
20 lines
606 B
Plaintext
20 lines
606 B
Plaintext
/datum/instrument/tones
|
|
name = "Ideal tone"
|
|
category = "Tones"
|
|
abstract_type = /datum/instrument/tones
|
|
|
|
/datum/instrument/tones/square_wave
|
|
name = "Ideal square wave"
|
|
id = "square"
|
|
real_samples = list("81"='sound/runtime/instruments/synthesis_samples/tones/Square.ogg')
|
|
|
|
/datum/instrument/tones/sine_wave
|
|
name = "Ideal sine wave"
|
|
id = "sine"
|
|
real_samples = list("81"='sound/runtime/instruments/synthesis_samples/tones/Sine.ogg')
|
|
|
|
/datum/instrument/tones/saw_wave
|
|
name = "Ideal sawtooth wave"
|
|
id = "saw"
|
|
real_samples = list("81"='sound/runtime/instruments/synthesis_samples/tones/Sawtooth.ogg')
|