CinematicFilterGenericBJ
- Parameters
-
duration real
bmode blendmode
tex string
red0 real
green0 real
blue0 real
trans0 real
red1 real
green1 real
blue1 real
trans1 real
- comment
- patch
1.00
- Source
- Blizzard.j
- return type
nothing
- Source code
function CinematicFilterGenericBJ takes real duration, blendmode bmode, string tex, real red0, real green0, real blue0, real trans0, real red1, real green1, real blue1, real trans1 returns nothing call AbortCinematicFadeBJ() call SetCineFilterTexture(tex) call SetCineFilterBlendMode(bmode) call SetCineFilterTexMapFlags(TEXMAP_FLAG_NONE) call SetCineFilterStartUV(0, 0, 1, 1) call SetCineFilterEndUV(0, 0, 1, 1) call SetCineFilterStartColor(PercentTo255(red0), PercentTo255(green0), PercentTo255(blue0), PercentTo255(100.0-trans0)) call SetCineFilterEndColor(PercentTo255(red1), PercentTo255(green1), PercentTo255(blue1), PercentTo255(100.0-trans1)) call SetCineFilterDuration(duration) call DisplayCineFilter(true) endfunction