Own mc.wrappers?
Hello. Can someone guide me towards info as to how to make your own mc.wrappers? for instance I would like to make a sinusoids~ wrapper. Unless I am totally love interracial movs misunderstanding (probably..), it seems like we should be able to make wrappers from any signal generators/processors?
Hello, I saw someone making a demo of this (even for event-handling objects) during a Max meetup a few months ago. I got an explanation on how to do it with any object but the explanation was too fast and I can't find the modified files anymore. But it is definitely possible.
You can add a text file to /Applications/Max.app/Contents/Resources/C74/init, in that text file you can add a line for each object you want in an mc wrapper like so:
max objectfile mc.myobject~ mc.wrapper~ myobject~;
Replace "myobject" with the msp object you want to wrap. You should then be able to use mc.myobject~ in your patches. Note that this file gets wiped away any time a new max version replaces the old one. I typically store this text file somewhere else and have a script that copies it over. It would be nice if there was an option to store these in /Library/Application Support, but I'm not aware of one.
Thanks a lot @exit only!
I have made a test patch of a mc.metro. There is some potential here,