[WIP] Treballant en el jefe. Pattern mode funcionant

This commit is contained in:
2026-04-11 02:32:55 +02:00
parent 568b531d4b
commit d4ef8ba551
2 changed files with 487 additions and 419 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -21,10 +21,10 @@ function point:draw(fill)
-- debug rect
if not fill then
draw.rect(scr_x,scr_y,self.w,self.h,3)
draw.rect(scr_x+self.bb.x,scr_y,self.bb.w,self.h,2)
-- draw.rect(scr_x+self.bb.x,scr_y,self.bb.w,self.h,2)
else
draw.rectf(scr_x,scr_y,self.w,self.h,3)
draw.rectf(scr_x+self.bb.x,scr_y,self.bb.w,self.h,2)
-- draw.rectf(scr_x+self.bb.x,scr_y,self.bb.w,self.h,2)
end
end