SetCinematicSceneBJ

Parameters
soundHandle sound
portraitUnitId integer
color playercolor
speakerTitle string
text string
sceneDuration real
voiceoverDuration real
comment
patch

1.00

Source
Blizzard.j
return type
nothing
Source code
function SetCinematicSceneBJ takes sound soundHandle, integer portraitUnitId, playercolor color, string speakerTitle, string text, real sceneDuration, real voiceoverDuration returns nothing
    set bj_cineSceneLastSound = soundHandle
    call SetCinematicScene(portraitUnitId, color, speakerTitle, text, sceneDuration, voiceoverDuration)
    call PlaySoundBJ(soundHandle)
endfunction