Basic client that understands factions

This commit is contained in:
2020-09-05 17:45:07 -04:00
parent ab3f05f013
commit ae3ecb03c5
53 changed files with 432 additions and 8 deletions

View File

@ -1,6 +1,6 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://art/entities/player/dev_player.png" type="Texture" id=1]
[ext_resource path="res://art/entities/player/dev/dev_player_1.png" type="Texture" id=1]
[ext_resource path="res://scripts/entities/Player.gd" type="Script" id=2]
[node name="Player" type="KinematicBody2D"]

View File

@ -1,6 +1,8 @@
[gd_scene load_steps=2 format=2]
[gd_scene load_steps=3 format=2]
[ext_resource path="res://art/entities/player/dev_player.png" type="Texture" id=1]
[ext_resource path="res://art/entities/player/dev/dev_player_1.png" type="Texture" id=1]
[ext_resource path="res://scripts/entities/PlayerPuppet.gd" type="Script" id=2]
[node name="PlayerPuppet" type="Sprite"]
texture = ExtResource( 1 )
script = ExtResource( 2 )