I'm using the new MIDI plugin (that I requested on the GitHub page) to finally fix an abandoned project, and have gotten pretty far. However, I'm starting to have issues with other things. I have a background note (9-Patch) created on the piano key, and it sets the height to `note.height + 1` every 1/120 seconds until the note is released. I then have logic to make it stop resizing and enable the move to behavior with the speed set to 120 pixels per second, and 0 acceleration. However, I noticed a speed difference, and after further investigation, it all relates to the tick rate. In the Construct 3 Documentation:
This means that it's actually resizing 60 times per second, not 120. This could easily be resolved by setting it to resize 2 pixels instead of 1 and making it longer intervals, but that would make it more choppy, and I'm still left with one question. How is the move to behavior able to move smoothly? Is there any way I can implement this sub-tick behavior portrayed in the height resizing?