@MikeB Thanks! It worked now! Apparently, I had to make sure all steps for enabling IPP are done right.
Best posts made by Shinami-Sound
-
RE: ERROR C1083 when Building HISE
-
Function onNote range [Level:Beginner]
[Level:Beginner]
Hello!
I'm trying figure out how to make a non-repetitive round robin for each drum. So, I decided just to split drums into separate Sampler modules.Then I made a script in each:
"on init"const var SamplerOpen = Synth.getSampler("SamplerOpen"); SamplerOpen.enableRoundRobin(false); reg counter = 0; reg lastCount = 0;
Next, to separate the round-robin counter for both each drums I though of cutting the note range for "onNote".
So, for one of my drums in the "onNote" section I tried:function onNoteOn(60, 64) { counter = (lastCount - 1 + Math.randInt(2, 5)) % 4; SamplerOpen.setActiveGroup(counter + 1); lastCount = counter; }
and it gave me this error:
"Line 1, column 19: Found Literal when expecting ')'.Does anyone know what's wrong here and what would be a better approach?
Latest posts made by Shinami-Sound
-
Custom Load Samples screen for VST instrument [Level:Beginner]
Hello!
Let's say I made a VST instrument, user downloads the plugin and in the first screen he sees a pop-up with 2 options: install the instrument or choose the folder location.My questions are:
- Is it possible to customize the pop-up window? (I'd like to load custom background, custom text, my custom buttons, add a custom greeting text)
- I want to delete the option "install instrument" and leave only one option available: "locate sample folder" at the very first run. Is there any easy way to do it?
- I noticed as soon as the user locates the folder with samples there's no button to choose the folder location again. So, I would like to add a "relocate samples" button to the screen. Shall it be done through scripting when developing the UI of my instrument in HISE?
- For some reason after exporting and loading the VST, it requires to locate the folder named "Samples". How and where can I rename the folder, so the required folder would be called "MyInstrumentName Samples", for example?
Thank you! :-) I appreciate if you could give me a comprehensive answer as I'm a total beginner thinking of getting into scripting and learning the basics of C++ for making custom VSTs and working more deeply with audio.
-
RE: ** BUILD FAILED ** Erorr: Building library libTG\
@d-healey I think you are right. I managed to solve the problem this way:
- I created a folder in "Applications" where I moved both my HISE folder and my Project Folder.
- I created a root user and logged into it (https://support.apple.com/en-us/HT204012)
- I exported my vst.
It worked fine but instead of having an exported vst file in my project's folder I found there a copy of it. I clicked to show info of this file and it said the original VST is located here: /private/var/root/Library/Audio/Plug-Ins/VST3/"my plugin name".vst3
So I used that one and inserted to where all my other VSTs are and it worked fine.
-
** BUILD FAILED ** Erorr: Building library libTG\
I was exporting a VST instrument on Mac and faced this problem:
▸ Building library libTG
error: unable to create directory .vst3/Contents/
** BUILD FAILED ** -
Export VSTi Error "batchCompileOSX: line 7: xcpretty: command not found"
I'm trying to export my project as a VSTi instrument and get this error in terminal: "batchCompileOSX: line 7: xcpretty: command not found".
MacOS Catalina 10.15.7 (19H2026)
Xcode Version 12.4 (12D4e) -
RE: ERROR C1083 when Building HISE
@MikeB Thanks! It worked now! Apparently, I had to make sure all steps for enabling IPP are done right.
-
ERROR C1083 when Building HISE
I was following this video tutorial https://www.youtube.com/watch?v=YYUZ4K4J3Os and I got a bunch of ERROR C1083 messages:
How can I fix it?