2023-05-02
直線を描画するコンポーネントはないので四角形で代用します。
await add(
RectangleComponent(
position: Vector2(size.x * 0.5, 0),
size: Vector2(1, size.y),
),
);
await add(
RectangleComponent(
position: Vector2(0, size.y * 0.5),
size: Vector2(size.x, 1),
),
);
これで十字線が表示されます。
© 2023 tnantoka