Loya

Results 20 comments of Loya

I have the exact same problem. For some reason, the brightness value is set to the current mode's index in Picture Mode. However, setvcp did work with a verification failed...

Make sure you are in the correct directory where the `casg.sb3` file is located, or provide the full path to the file. Like this: `python -m pystage.convert.sb3 /full/path/to/casg.sb3 -l en...

Or there might be some modules come with ffmpeg inside, needs to be figured out later.

Test demo: ```python from pystage.en import Sprite, Stage stage = Stage() sprite = stage.add_a_sprite() stage.add_backdrop("pen") stage.add_backdrop("grid") def space(): stage.next_backdrop() def when_backdrop_switches(): sprite.if_on_edge_bounce() sprite.move(30) sprite.when_key_pressed("space", space) sprite.when_backdrop_switches_to("pen", when_backdrop_switches) stage.play() ```

This is the link of Scratch project to test this fix. > https://scratch.mit.edu/projects/869835564/editor/ Also in our test cases, `scratch_projects/tests/backdropDraw.sb3`.

> Can you elaborate what you did here and why? Like Prof. Norman mentioned in the issue #25, when the backdrop is a svg and only certain part of it...

> > Can you elaborate what you did here and why? > > Like Prof. Norman mentioned in the issue #25, when the backdrop is a svg and only certain...

> > > Can you elaborate what you did here and why? > > > > > > Like Prof. Norman mentioned in the issue #25, when the backdrop is...

Hope I explained it well with my poor English... :)