need some mac testers :)
-
@danh Links are in first post ;)
-
@iamlamprey tryed everything here : Installation runs NEATly, instructions are clear. No validation/detection problem in Logic
2 tiny tiny bugish things :
after loading the plugin in Logic > the library is loaded correctly > after reaching 100%, a "Loading 0%" is still displayed :
this just happened once, I reloaded it in Logic and tried in Ableton : the thing was correctly disappearing
The RANDOMIZE menu is not closed automatically when clicking on other sections (sample/FX/etc...). You have to click it again to close it. (unless this is intended)
I'll make some music with the plugin later today and report back if anything comes weird :)
-
@matt_sf Thanks so much for that! :)
-
@iamlamprey no problem. Really nice job you did here
-
@iamlampreyOk so I haven't read any install instructions / docs.
- Installed the DMG
- Opened NEAT Player in Logic
- Clicked 'Add Library'
- Installed the Cloudburst .hr1 file you supplied
- Selecting Presets from the Cloudburst folder in the browser...
- No sound!!
- Reopened plugin, no sound, restarted Logic, no sound. Any ideas?
2 things I've noticed:
1 - Your window tabs should close eachother as @Matt_SF mentioned - this also applies to the top tabs (Preset Browser, Add Library) - perhaps put all the buttons in a radio group? @d-healey also has a neat solution for this on his Patreon I think.
2 - The CPU usage is running at about 10% on here! -
@danh Thanks for that!
I'm not sure what's causing the no-sound issue, it's possible that the Cloudburst .hr1 is an older one, I just grabbed the one on my google drive so it might be out of date (I don't have copy protection so I can't share the google cloud URL in case there's some lurkers here with bad intentions)
if you'd like I can DM you the current stable version of Cloudburst
Your window tabs should close eachother as @Matt_SF mentioned
yes I'll have to do a pass for some of the minor bugs in the future, there's some tooltip rounding issues and such as well, this thread was just to make sure the DMG installer worked and Logic validated everything properly :)
The CPU usage is running at about 10% on here
That might be the new scriptnode thing doing that... I haven't compiled any nodes but I'll take a look.
-
ok I've updated the original google Drive file with the latest Cloudburst, it didn't seem fair to plug a "free library" for people taking the time to test it if it was out of date :P
-
@iamlamprey thanks will try and test again in a few
-
@danh You might have to delete the appdata stuff to make sure it uses the latest presets etc
-
@iamlamprey yup
-
@iamlamprey Installed on laptop and all working. I'll try again on desktop when back in front of it (was on that one before).
Nice. What method did you use for the expansion installer progress percentage indicator?
-
@danh Awesome!
What method did you use for the expansion installer progress percentage indicator?
loadingBar.setPaintRoutine(function(g) { g.fillAll(this.data.colour); g.drawAlignedText(this.data.text, [0, 0, 100, 20], "centred"); }); loadingBar.setTimerCallback(function() { this.data.progress = Engine.getPreloadProgress(); this.data.progress = this.data.progress * 100; this.data.progress = Math.round(this.data.progress); this.data.text = "Loading: " + this.data.progress + "%"; this.repaint(); }); // This function will be executed whenever the preload state changes loadingBar.setLoadingCallback(function(isPreloading) { if(isPreloading) { this.data.colour = 0xD5E6E6E6; this.startTimer(50); } else { this.stopTimer(); this.data.colour = 0x00000000; this.data.text = ""; } // Update the UI this.repaint(); });
I'll probably add a progress bar or something down the line...
-
@iamlamprey nice, thank you :)