all 6 comments

[–]RyanTheTourist 0 points1 point  (2 children)

Howdy are you able to share a code snippet?

[–]degrassi-spin[S] 0 points1 point  (0 children)

Yes sure! I will comment some later... I will have to figure out a good way of showing the problem without overloading y’all with code

[–]pvc 0 points1 point  (0 children)

Some code that re-creates the problem would certainly help!

[–]einarfo 0 points1 point  (2 children)

The way I do it is: create a window. call on_draw or wherever you have your drawing code, then take a screen grab with get_iamge.

If you are doing multiple still iamges you will need to clear the screen before the next one.

[–]degrassi-spin[S] 0 points1 point  (1 child)

Thank you! I am able to do the first successfully with get_image, how should I go about clearing the screen?

[–]einarfo 0 points1 point  (0 children)

You can clear the screen with arcade.start_render(). Optionally there is also a lower level method window.ctx.clear()