Recording GIFs does not work on Roassal animations
Closed this issue · 1 comments
JurajKubelka commented
Recording GIFs does not work on Roassal animations
JurajKubelka commented
I have tried the following scripts:
textModel := RubScrolledTextModel new.
morph := textModel newScrolledText.
morph beWrapped.
window := morph openInWindow.
text := String loremIpsum: 900.
[
(5 seconds / 16 milliSeconds) asInteger timesRepeat: [
textModel setText: text shuffle.
16 milliSeconds wait ]
] forkAt: Processor userBackgroundPriority.
that produces:
And the following demo:
AthensFlakeDemo new openInWindow
that produces:
Both works, so it looks like an issue with the Roassal2. Maybe the animation is not done correctly?