online multiplayer chess game (note server currently down)
Diffstat (limited to 'Piece.tscn')
-rw-r--r--Piece.tscn17
1 files changed, 17 insertions, 0 deletions
diff --git a/Piece.tscn b/Piece.tscn
new file mode 100644
index 0000000..12161c4
--- /dev/null
+++ b/Piece.tscn
@@ -0,0 +1,17 @@
+[gd_scene load_steps=3 format=2]
+
+[ext_resource path="res://Piece.gd" type="Script" id=1]
+[ext_resource path="res://assets/california/wP.png" type="Texture" id=2]
+
+[node name="Piece" type="Node2D"]
+script = ExtResource( 1 )
+
+[node name="ColorRect" type="ColorRect" parent="."]
+visible = false
+margin_right = 96.0
+margin_bottom = 96.0
+color = Color( 0.2, 0.345098, 0.188235, 0.592157 )
+
+[node name="Sprite" type="Sprite" parent="."]
+position = Vector2( 50, 50 )
+texture = ExtResource( 2 )