Music.gd 462 B

1234567891011121314151617181920
  1. class_name Music
  2. # To deal with music theory in the digital world
  3. enum Note {A = 0, Ad, B, C, Cd, D, Dd, E, F, Fd, G, Gd}
  4. const NOTE_PITCH_SCALE = 1.0594630943592953
  5. static func scale_note(note: Note) -> float:
  6. return pow(NOTE_PITCH_SCALE, float(note))
  7. static func scale_octave(octave_offset: int) -> float:
  8. return pow(2, octave_offset)
  9. static func scale_note_octave(note: Note, octave: int) -> float:
  10. return scale_note(note) * scale_octave(octave)