Perhaps this is not the correct place to ask this, but since MD is the default code editor for Unity3D I thought I might as well try.
I remember seeing in code from other peoples projects that it is somehow possible to 'fold' pieces of your code manually - with which I mean that it's not just the function Foo () {...} which get's folded but that it's possible to fold a piece of code inside a function. For instance:
function Update () {
foo = bar;
{...} //folded bit
OtherStuff();
}
Am I right in remembering this is possible? Because I'm currently writing a script where this would be very helpful and I cannot seem to find out how to do this anywhere in MD's manual, google, this site or the forum. Thanks in advance.