Game Programming and Development Tools

A "Paint" -command in Blitz Basic? – Lonelli

Lonelli

Member

Posts: 14
From: Finland
Registered: 07-29-2004
Hi everyone,
it seems to me that there´s not a "paint" or "fill" -command in BlitzBasic. So is there any way to paint on area on the screen?
Matthias

Member

Posts: 23
From: Spencer, Iowa, USA
Registered: 07-28-2004
That depends on how you mean that. you could use the MouseX() and MouseY()and MouseHit(button) commands/functions with Plot(x,y) to draw points where you click. ColorCls will paint the whole screen one color... but if you want to paint all of one color to another, then i don't know that.