Development of ModLoop Tool

Hello, I just read the sticky noting that Tool Announcements is not for technical discussion. I’ll try to keep my posts there related to new features from now on.

I do have some questions related to my tool at github

Does the Renoise API provide functions for translating midi note numbers into frequencies and strings or am I correct to supply my own functions for my tool?

If I wanted to place a mark on the zero point of a slider, or marks at various points along a slider, would I just do that with bitmaps? Or is there another way? I notice calibration markings all over the place in Renoise.

Thank you for the extensive API. I’m probably just overlooking something. :slight_smile:

Does the Renoise API provide functions for translating midi note numbers into frequencies and strings or am I correct to supply my own functions for my tool?

Nope, you will need to roll your own, fairly straightforward to do a midi note to frequency function though, I have one somewhere if you need it.

If I wanted to place a mark on the zero point of a slider, or marks at various points along a slider, would I just do that with bitmaps? Or is there another way? I notice calibration markings all over the place in Renoise.

You will need to use bitmaps, however you can use negative spacing values in the viewbuilder to layer things

Thank you!