mirror of
https://github.com/scratchfoundation/scratch-sb1-converter.git
synced 2025-02-17 12:00:26 -05:00
parent
a08e8a1385
commit
7796ae2a65
1 changed files with 4 additions and 1 deletions
|
@ -203,7 +203,10 @@ const toSb2Json = root => {
|
|||
penLayerID: 0,
|
||||
tempoBPM: _stageData.tempoBPM,
|
||||
videoAlpha: 0.5,
|
||||
children: _stageData.stageContents.map(toSb2JsonChild).filter(Boolean)
|
||||
children: _stageData.stageContents
|
||||
.map(toSb2JsonChild)
|
||||
.filter(Boolean)
|
||||
.reverse()
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue