M2L Note Flash |
Print Previous Next |
Functions provided By M2L Note Flash This effect uses the following functions:
This effect allows to select the frequency bands which should be used to calculate the flash. The functions SetMinBand and SetMaxBand may be used to set the inimum band and the maximum band. Both use an identifier value between 0 and 10, which describes one of the following frequency bands:
Example The source code below would select C0 as minimum band and B1 as maximum band. Furthermore, the color white is set with a fade-in value of 3000 BPM and a fade-out value of 120 BPM. @scriptname=""; @author=""; @version=""; @description="";
void InitEffect() { SetColor(WHITE); SetFadeIn(3000); SetFadeOut(120); SetMinBand(1); SetMaxBand(2); }
void PreRenderEffect() {
}
void PostRenderEffect() {
}
void MatrixSizeChanged() { InitEffect(); }
|
MADRIX Version: 3.6j | Script Version: 2.22 |
[Ctrl & +/-] = Zoom In/Out | [Ctrl & 0] = 100% |
Print Previous Next |