Skip to content

Commit

Permalink
add debug mode, separate daw actions into dispatched events, add basi…
Browse files Browse the repository at this point in the history
…c interpreter
  • Loading branch information
nbennett320 committed Apr 2, 2024
1 parent 95aa9d2 commit 738cbf1
Show file tree
Hide file tree
Showing 18 changed files with 2,624 additions and 504 deletions.
2 changes: 1 addition & 1 deletion engine/src/daw/daw.rs
Expand Up @@ -15,7 +15,7 @@ use std::sync::{
use std::sync::atomic::{Ordering};
use std::thread;
use std::time::{
Duration,
Duration,
Instant,
};
use rodio::{Source};
Expand Down
2 changes: 2 additions & 0 deletions engine/src/daw/state/state.rs
Expand Up @@ -46,3 +46,5 @@ impl InnerState {
.set_tempo(tempo);
}
}

pub type TState<'a> = tauri::State<'a, Arc<InnerState>>;

0 comments on commit 738cbf1

Please sign in to comment.