Board hand-drawn style: cream board, recessed gray lanes with sockets, glossy balls

This commit is contained in:
enne2
2026-08-18 14:59:56 +02:00
parent 54619a2385
commit 4d7aa698e3
4 changed files with 76 additions and 40 deletions
+5 -2
View File
@@ -6,9 +6,12 @@ var dot_color := Color.WHITE
func _draw() -> void:
draw_circle(Vector2(0, 4), 36.0, Color(0, 0, 0, 0.3))
draw_circle(Vector2(0, 4), 36.0, Color(0, 0, 0, 0.25))
draw_circle(Vector2.ZERO, 36.0, dot_color)
draw_arc(Vector2.ZERO, 36.0, 0.0, TAU, 40, Color(0, 0, 0, 0.4), 3.0)
draw_circle(Vector2(6.5, 8.0), 33.0, Color(0, 0, 0, 0.16))
draw_circle(Vector2(-6.5, -8.0), 33.0, Color(1, 1, 1, 0.2))
draw_arc(Vector2.ZERO, 36.0, 0.0, TAU, 40, Color(0.1, 0.1, 0.1, 0.9), 4.0)
draw_circle(Vector2(-11.0, -12.0), 6.0, Color(1, 1, 1, 0.85))
func set_color(c: Color) -> void: