JirkaDellOro / FUDGE_Story

A FUDGE module for the easy development of interactive stories, visual novels and simple adventure games
https://jirkadelloro.github.io/FUDGE_Story/
7 stars 9 forks source link

--- Flashing backgrounds in Introduction, transitions playing incorrectly from black, tv-lines covering the screen --- #38

Closed Hanhan139 closed 1 year ago

Hanhan139 commented 1 year ago

--- Either this: --- (will be referred to as LineError)

image

--- Or flashing from a black screen that shouldn't be there -- (FlashBlackError)

Not to say I don't appreciate these kind of horror shaders and they give the image more visual interest, but if it's not happening on command it's a bit of an issue. So I wrote an issue! There's more to come;

This one particularly happens after the opening "cutscene" after the second sentance. I'm using multiple backgrounds to achieve small fog effects and transitions from one picture to another (see below). Specifically in the change from picture 4 to 5 and 5 to 6.

All other transitions work, and the LineError is gone when i simply use update(1); without an alpha channel. But the FlashBlackError persists. How do I solve it?

FIle: scn_Intro.ts Code:

        await ƒS.Speech.tell(characters.HER, "Now, the only thing that’s left before I leave you, is…");
        await ƒS.Speech.clear();
        await ƒS.Speech.hide();
        await ƒS.update(1);

        await ƒS.Location.show(backgrounds.BG_Intro_Night3);    
        await ƒS.update(3, transitions.dotscrollRL.alpha, 0.5);

        await ƒS.Character.animate(
          characters.HER, characters.HER.pose.default_happy, anim_fadeInFromBlack());

        await ƒS.update(0.1);

        await ƒS.Location.show(backgrounds.BG_Intro_Night4);    
        await ƒS.update(1, transitions.fade.alpha, 0.1);
        await ƒS.Location.show(backgrounds.BG_Intro_Night5);    
        await ƒS.update(1, transitions.fade.alpha, 0.1);

        await ƒS.Speech.tell(characters.HER, "BANNING you!!!");

--- Backgrounds ---

BG_night_06 BG_night_05 BG_night_04 BG_night_03 BG_night_02 BG_night_01

Rina14 commented 1 year ago

@Hanhan139 bitte neue FS-Version ziehen!