Music.gd 233 B

123456789101112
  1. class_name Music
  2. # To deal with music theory in the digital world
  3. enum Note {A = 1, Ad, B, C, Cd, D, Dd, E, F, Fd, G, Gd}
  4. const NOTE_PITCH_SCALE = 1.05942
  5. static func scale(note: Note) -> float:
  6. return note * NOTE_PITCH_SCALE