This commit is contained in:
the me 2022-08-07 14:14:04 -07:00
commit 09ade10207
117 changed files with 2153 additions and 0 deletions

View file

@ -0,0 +1,6 @@
function draw_rectangle_width(x1, y1, x2, y2, width) {
var i;
for (i=-ceil(width/2); i<floor(width/2); i++) {
draw_rectangle(x1+i, y1+i, x2+i, y2+i, true);
}
}

View file

@ -0,0 +1,12 @@
{
"isDnD": false,
"isCompatibility": false,
"parent": {
"name": "drawing",
"path": "folders/Scripts/drawing.yy",
},
"resourceVersion": "1.0",
"name": "draw_rectangle_width",
"tags": [],
"resourceType": "GMScript",
}