gifted-whale-78169
02/18/2023, 1:13 AMambitious-knife-25690
02/18/2023, 1:13 AMgifted-whale-78169
02/18/2023, 1:13 AMgifted-whale-78169
02/18/2023, 1:14 AMgifted-whale-78169
02/18/2023, 1:16 AMgifted-whale-78169
02/18/2023, 1:16 AMcap
of the line fixes the thickness issuesgifted-whale-78169
02/18/2023, 1:16 AMfaint-toothbrush-51643
02/18/2023, 1:16 AMgifted-whale-78169
02/18/2023, 1:17 AMgifted-whale-78169
02/18/2023, 1:17 AMgifted-whale-78169
02/18/2023, 1:22 AMgifted-whale-78169
02/18/2023, 1:22 AMgifted-whale-78169
02/18/2023, 1:24 AMfaint-toothbrush-51643
02/18/2023, 1:27 AMfaint-toothbrush-51643
02/18/2023, 1:27 AMgifted-whale-78169
02/18/2023, 1:28 AMgifted-whale-78169
02/18/2023, 1:28 AMgifted-whale-78169
02/18/2023, 1:29 AMgifted-whale-78169
02/18/2023, 1:34 AMfaint-toothbrush-51643
02/18/2023, 1:47 AMgifted-whale-78169
02/18/2023, 1:55 AMgifted-whale-78169
02/18/2023, 1:56 AMhx
for (v in [battleBtn, optionBtn, customBtn]) {
v.complexHit = true; // make the hitboxes accurate
var tb = new Line();
tb.thickness = 2;
tb.color = 0x000000;
tb.points = v.points.concat([v.points[0], v.points[1]]);
tb.loop = true;
tb.depth = 1;
tb.id = "passiveTb";
v.add(tb);
v.onPointerOver(this, (info) -> {
v.childWithId("passiveTb").destroy();
var tb = new Line();
tb.thickness = 5;
tb.color = 0xEEFF00;
tb.points = v.points.concat([v.points[0], v.points[1]]);
tb.loop = true;
tb.depth = 1;
tb.id = "activeTb";
v.add(tb);
});
v.onPointerOut(this, (info) -> {
v.childWithId("activeTb").destroy();
var tb = new Line();
tb.thickness = 2;
tb.color = 0x000000;
tb.points = v.points.concat([v.points[0], v.points[1]]);
tb.loop = true;
tb.depth = 1;
tb.id = "passiveTb";
v.add(tb);
});
}
gifted-whale-78169
02/18/2023, 1:57 AMfaint-toothbrush-51643
02/18/2023, 2:06 AMgifted-whale-78169
02/18/2023, 2:06 AMgifted-whale-78169
02/18/2023, 2:07 AMactiveTb
but the passiveTb
does the same thing)faint-toothbrush-51643
02/18/2023, 2:08 AMVisual
or something, i think it would make it much easier to handle overallgifted-whale-78169
02/18/2023, 2:08 AMgifted-whale-78169
02/18/2023, 2:08 AMpoints
kept me from doing itgifted-whale-78169
02/18/2023, 2:08 AM