How to stop a Playback and to start a Playback from a time (without device)
See original GitHub issueTitle ^^^
Codes:
public void Play()
{
isPlaying = true;
midiFile = FindObjectOfType<DryWetMidiRead>().midiFile;
var playback = midiFile.GetPlayback();
playback.NotesPlaybackStarted += OnNotesPlaybackStarted;
}
private static void OnNotesPlaybackStarted(object sender, NotesEventArgs e)
{
foreach (var note in e.Notes)
{
Debug.Log("Note is " + note);
}
}
Problems: 1) After Play() is called, there is nothing come out from console. 2) Ways to stop the playback? 3) Start playback from a certain time?
Issue Analytics
- State:
- Created 3 years ago
- Comments:20 (9 by maintainers)
Top Results From Across the Web
How to STOP YouTube Videos From Playing While Scrolling
I think this feature in YouTube on your mobile phone where when you're scrolling, it starts to play the video without your consent...
Read more >How to Stop YouTube Videos from Playing While Scrolling 2022
In this video, I'm going to show you how to stop YouTube autoplay while scrolling. So the first thing that you want to...
Read more >Galaxy S21: How to Stop Music App from Playing ... - YouTube
Learn how you can stop your music app from playing music automatically when connecting to a Bluetooth device such as a car system, ......
Read more >How to listen to YouTube with the Screen Off 2020 - New Trick
In this tutorial, I show you a 3 tricks that allow YouTube to keep playing even when you phone or tablet is locked...
Read more >How To: Turn Off Auto Play Video in YouTube Home Page ...
There are 2 types of video auto- playing that happen in the YouTube App. One is YouTube videos auto- play while scrolling the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
And it stop working after I go in play mode second time.
Okay, thanks! You are really helpful and I really appreciate your hard work. I think I got the things working now.