Search found 2 matches

by FetzMR
Tue Dec 28, 2021 6:18 am
Forum: Coding Questions
Topic: Why everything is drawn on the Debugwindow
Replies: 3
Views: 1419

Re: Why everything is drawn on the Debugwindow

Thanks for your reply
I have seen this example.
What i want to reach is to draw something like boxes and text on an Screen. Not on a Window.
I only found a way to print Sprites on an screen that is started with openscreen().
by FetzMR
Mon Dec 27, 2021 9:33 pm
Forum: Coding Questions
Topic: Why everything is drawn on the Debugwindow
Replies: 3
Views: 1419

Why everything is drawn on the Debugwindow

Hi there, why is the following Code draw the Circle on the Debugwindow? (Spiderbasic 2.31 (x64) Linux) InitSprite() OpenScreen(1000, 1000, 0, "TEST") ClearScreen(RGB(0, 0, 255)) ImageGadget(1,10,10,900,900,0) CreateImage(0, 800, 800) If StartDrawing(ImageOutput(0)) Circle(100, 100, 100, RG...