Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
chore: move working dir to root
Browse files Browse the repository at this point in the history
  • Loading branch information
Mouwrice committed Oct 17, 2023
1 parent 534599d commit 47e98c8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

class Tracker:
def __init__(self):
snare_drum = Sound("../DrumSamples/Snare/CKV1_Snare Loud.wav", (-100, 0, 600))
hi_hat = Sound("../DrumSamples/HiHat/CKV1_HH Closed Loud.wav", (-220, -200, 800))
kick_drum = Sound("../DrumSamples/Kick/CKV1_Kick Loud.wav", (-475, 200, 30))
hi_hat_foot = Sound("../DrumSamples/HiHat/CKV1_HH Foot.wav", (-420, -350, 30))
tom1 = Sound("../DrumSamples/Perc/Tom1.wav", (-320, 0, 800))
tom2 = Sound("../DrumSamples/Perc/Tom2.wav", (-320, 100, 850))
cymbal = Sound("../DrumSamples/cymbals/Hop_Crs.wav", (-50, 500, 925))
snare_drum = Sound("./DrumSamples/Snare/CKV1_Snare Loud.wav", (-100, 0, 600))
hi_hat = Sound("./DrumSamples/HiHat/CKV1_HH Closed Loud.wav", (-220, -200, 800))
kick_drum = Sound("./DrumSamples/Kick/CKV1_Kick Loud.wav", (-475, 200, 30))
hi_hat_foot = Sound("./DrumSamples/HiHat/CKV1_HH Foot.wav", (-420, -350, 30))
tom1 = Sound("./DrumSamples/Perc/Tom1.wav", (-320, 0, 800))
tom2 = Sound("./DrumSamples/Perc/Tom2.wav", (-320, 100, 850))
cymbal = Sound("./DrumSamples/cymbals/Hop_Crs.wav", (-50, 500, 925))

self.markers: list[Marker] = [
Marker("WristOut_L", 14, [snare_drum, hi_hat, tom1, tom2, cymbal], downward_trend=-3, upward_trend=0.5),
Expand Down

0 comments on commit 47e98c8

Please sign in to comment.