Could you add me to the repo of laser game? I would like to check and correct :)

Cheers,
Alex

On Sat, Apr 2, 2016 at 5:26 PM, Aliaksei Syrel <alex.syrel@gmail.com> wrote:

Hi

What version do you use? In bloc drawing stuff happens in drawOnSpartaCanvas, not athensCanvas.

Also strangely enough you should not get red screen of death, instead image should crash in case of drawing error. Error handling is not yet done, because I don't like how red screen of death behaves.

Also, why do use BlMorph when we have BlElement?

I'm confused...

On Apr 2, 2016 4:59 PM, "stepharo" <stepharo@free.fr> wrote:
Hi

I got a red square of death and I can inspect the blMorph but I cannot get a debugger to understand the drawing problem?

rawOnAthensCanvas: aCanvas

�� �� super drawOnAthensCanvas: aCanvas.
�� �� aCanvas
�� �� �� �� drawShape: (BlShape new
�� �� �� �� �� �� �� �� �� �� �� �� �� �� strokePaint:
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� (BlStrokePaint new
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� paint: (BlColorPaint new color: (Color blue));
�� �� �� �� �� �� �� �� �� �� �� �� �� �� width: 15);
�� �� �� �� �� �� �� �� path: BlCirclePath new).

and when I select

(BlShape new
�� �� �� �� �� �� �� �� �� �� �� �� �� �� strokePaint:
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� (BlStrokePaint new
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� paint: (BlColorPaint new color: (Color blue));
�� �� �� �� �� �� �� �� �� �� �� �� �� �� width: 15);
�� �� �� �� �� �� �� �� path: BlCirclePath new).

I can inspect it.