conways-life

Conway's game of life in Godot4
git clone git://bsandro.tech/conways-life
Log | Files | Refs | README | LICENSE

Cell.tscn (373B)


      1 [gd_scene load_steps=3 format=3 uid="uid://68b4ti6s884b"]
      2 
      3 [ext_resource type="Texture2D" uid="uid://dmrfry0b4kavp" path="res://cell_green.png" id="1_k1vbj"]
      4 [ext_resource type="Script" path="res://scripts/Cell.gd" id="2_uvr0w"]
      5 
      6 [node name="Cell" type="Sprite2D"]
      7 scale = Vector2(0.2, 0.2)
      8 texture = ExtResource("1_k1vbj")
      9 centered = false
     10 script = ExtResource("2_uvr0w")