Wavetable Post FX processers
-
Just discovered this in WavetableSynth.h
Anyone tried this before? How to use this in Hise?
I'm wondering if i could use my own warp functions here.
-
@Allen Images too small. What am I looking at?
-
sorry my bad... here's the github page:
HISE/hi_core/hi_modules/synthesisers/synths/WavetableSynth.h at develop · christophhart/HISE
The open source framework for sample based instruments - HISE/hi_core/hi_modules/synthesisers/synths/WavetableSynth.h at develop · christophhart/HISE
GitHub (github.com)
basically a bunch of functions in the PostFXProcessor.
-
@Allen I think this is all just part of the wavetable module, perhaps along with Tools > Show Wavetable Creator
-
I've checked the wavetable creator before and didn't find it...
I think this might be a part of the new WavetableController Class, which is probably haven't been documented yet
there's a api for this but i don't know what the var supposed to be here
So i wonder if anybody has tried this before
-
@Allen Ah ok I see it now. So the .h file you're looking at isn't directly related to what's available in the scripting API. That's more just the internal C++ side of things.
For the script API you need to be looking at the files within the hi_scripting folder.
This particular function is in ScriptingApiObjects.cpp - https://github.com/christophhart/HISE/blob/733e3e9a1b9fb2361bedc010406fbb18092e7a42/hi_scripting/scripting/api/ScriptingApiObjects.cpp#L5168
I'm not sure what the variable should be either though, looks like some kind of object.
-