@CatABC I don't know what caused it, but when I restarted my computer, the bug disappeared.
Posts made by CatABC
-
RE: A strange bug
-
A strange bug
A strange bug
When I switch back to the FLT keyboard from another window, the keyboard will automatically press a key, -
RE: Is it possible to control the playback speed of the playhead using the knob?
@d-healey Yeah, I looked carefully and it is indeed.
-
RE: Is it possible to control the playback speed of the playhead using the knob?
@d-healey Ahaha, sorry, I didn't know they were the same thing,
-
Is it possible to control the playback speed of the playhead using the knob?
Is it possible to control the playback speed of the playhead using the knob?
-
How to control Sampler's Timestching and Stretch Ratio separately
I want to control the Timestretching mode of a certain Sampler separately, and use the knob or note velocity to control the Stretch Ratiod value. How can I do this? Please help me ~ Thanks in advance
-
RE: How can I control the playback speed of a sample based on the velocity of the note?
@d-healey yes.just change speed,do not change pitch
-
How can I control the playback speed of a sample based on the velocity of the note?
How can I control the playback speed of a sample based on the velocity of the note?
The smaller the velocity, the slower the playback; the larger the velocity, the faster the playback. -
RE: How to get CPU serial number using HISE?
@Christoph-Hart Will the system ID change after reinstalling the system using this method? Is there a way to bind it to the hardware ID? In this way, even if the system is reinstalled, the system ID obtained will be the same
-
How to get CPU serial number using HISE?
Is there a way to get the CPU serial number using HISE?
-
RE: How to play a specified RR group based on the distance between two notes?
@CatABC I think I have confirmed that I can use fewer RR groups to achieve my purpose. I set up variables to store the key I pressed first, then calculated the interval, and set the group I wanted to play based on the interval. This should be simple for everyone. As a beginner in HISE, it took me a lot of effort. Anyway, thank you for your help! Following is my test code
local a = Message.getNoteNumber(); if(Synth.isLegatoInterval()) { leginterval = a - lastNote; Message.setNoteNumber(lastNote); if (leginterval == 2) { Sampler.setActiveGroup(2); } } else { Sampler.setActiveGroup(-1); } lastNote = a;
-
RE: How to play a specified RR group based on the distance between two notes?
@aaronventure Hahaha, thank you for your reminder. but I am still confirming whether it has achieved my expected purpose.
-
RE: How to play a specified RR group based on the distance between two notes?
@CatABC
I think I found the answer, thanks a lot to everyone who helped me,I love you all -
RE: How to play a specified RR group based on the distance between two notes?
@Christoph-Hart
Hi,Christoph, Thank you for providing me with the method,I tried using the script, but it seems like there is no way to change the group I want to play based on the interval? For example, I press C2-D2 and it plays RR48, I press C-D#2 and it still plays RR48,How can I improve this?And when my melody goes down, the descending legato should be played, which will overlap with the ascending legato RR group. This is a headache for me. Please help me. -
RE: How to ensure MIDI Overlay Panels Load on Exported Plugin?
@Mwins This is not an intermittent occurrence. If you remove a plugin once and do not completely shut down the DAW, this problem will occur when you load the plugin again.
This problem does not seem to have been resolved yet
https://forum.hise.audio/topic/10212/drag-and-drop-midi-functionality-does-not-work-after-reloading-plugins/11?_=1729782136374 -
RE: Play a specific RR group depending on the key pressed?
@d-healey OK, thank you very much