05-18-2008, 08:59 PM
Maybe I'm missing the point here, but...
Open FumeFX mxs window from the FumeFX floater and copy your code inside the poststep function:
fn poststep = (
-- your code --
-- you can access all global variables and functions from here too...
)
or you can define functions and call them later from within callbacks...
fn myfn = ( some code )
fn poststep = (
myfn()
)
Vjeko
Open FumeFX mxs window from the FumeFX floater and copy your code inside the poststep function:
fn poststep = (
-- your code --
-- you can access all global variables and functions from here too...
)
or you can define functions and call them later from within callbacks...
fn myfn = ( some code )
fn poststep = (
myfn()
)
Vjeko
