Switching Between Screens: различия между версиями

Материал из Поле цифровой дидактики
 
м (1 версия импортирована)
(нет различий)

Версия 11:33, 21 июля 2022

Шаблон:Expand This article provides a method for switching between screens.

Variables

First, create a variable called screen:

screen

This variable will store which backdrop is shown.

Scripts

Then, in every sprite that would transition, put this:

whenclicked...Codebeforeloopforeverifscreen=backdropthenchecksifthescreenvariableisthesameasthewantedscreenforthespritestobeshownshowIftrue,spriteisshown...CodeforwhenitisshownelsehideIfnottrue,spriteishidden...Codeforwhenitishidden.endend

In short, the script checks whether the screen variable is the same as the screen for showing the sprites. If so, the sprites will show and do whatever is required. If not, it will stay hidden and run the blocks for when it is hidden.

Stage Transitioning

For the stage, put this:

whenclicked...whatevercodeiswantedbeforeloopforeverswitchbackdroptoscreenSwitchesthebackdroptothestringstoredinthevariableend

This script constantly switches the backdrop to the string stored in the variable screen.

Music Transitioning

If music should change based on the screen, add the following script to the Stage (or the sprite playing the music if a sprite is playing the music):

whenIreceivechangemusicstopallsoundsthismethodcouldalsobeusedtostopthemusicifscreen=screen1thenforeversothemusicdoesn'trandomlystopplaysoundmusic1untildoneendendifscreen=screen2thenforeverplaysoundmusic2untildoneendend...

Execute this broadcast every time the music needs to be changed.

Black Screen

To make a black screen, first create a variable called nextscreen. Then, insert this into the black screen sprite:

whenIreceiveblackscreengotofrontlayersetghosteffectto100invisibleshowrepeat20changeghosteffectby-5fadeintoviewendsetscreentonothingbroadcastchangemusicstopthemusicwait1secssetscreentonextscreenthescreentoswitchtobroadcastchangemusicchangethemusictothescreenrepeat20changeghosteffectby5fadeoutofviewendhide

Use this to execute the black screen:

setnextscreentowantedbroadcastblackscreen

See Also