Added main menu and settings

This commit is contained in:
2026-01-06 01:21:53 +03:00
parent 57473c2baa
commit f22dcea5da
32 changed files with 1133 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
class_name BWObject
extends Node2D
@export var is_colored := true
@export var is_white := true
func invert() -> void:
is_white = not is_white
+1
View File
@@ -0,0 +1 @@
uid://b7qut5xhc5hxo
+10
View File
@@ -0,0 +1,10 @@
[gd_scene load_steps=2 format=3 uid="uid://bgtb7602a2260"]
[ext_resource type="Script" uid="uid://b7qut5xhc5hxo" path="res://game/objects/b_w_object.gd" id="1_jpa1b"]
[node name="BlackAndWhiteObject" type="Node2D"]
script = ExtResource("1_jpa1b")
[node name="Black" type="Node2D" parent="."]
[node name="White" type="Node2D" parent="."]