(&self, sampler_i: usize)
| 173 | } |
| 174 | |
| 175 | pub fn is_playing(&self, sampler_i: usize) -> bool { |
| 176 | self.cx |
| 177 | .node_state::<SamplerState>(self.samplers[sampler_i].node_id) |
| 178 | .unwrap() |
| 179 | .currently_playing() |
| 180 | } |
| 181 | |
| 182 | pub fn is_paused(&self, sampler_i: usize) -> bool { |
| 183 | self.cx |
no test coverage detected