主题:  可能是最简单的画图了

D计划-混沌

职务:管理员
等级:6
金币:15.2
发贴:3528
#12004/9/27 17:57:11
property oldloc
on beginsprite me
oldloc = the mouseLoc
end
on exitframe me
if the mousedown then
x1 = oldloc[1]
y1 = oldloc[2]
x2 = (the mouseLoc)[1]
y2 = (the mouseLoc)[2]
(the stage).image.draw(x1,y1,x2,y2,rgb(0,0,0))
oldloc = the mouseLoc
end if
end