├── .github └── FUNDING.yml ├── 2021_03 Basic Enemy └── BasicEnemy.gd ├── 2021_05 Dialogue ├── DialoguePlayer.gd ├── DialoguePlayer.tscn ├── NPC.gd ├── NPC.tscn └── jsons │ ├── npc.json │ └── npc2.json ├── 2021_07 Joystick ├── JetPackPlayer.gd └── MobileJoystick.gd ├── 2021_07 Mobile Tutorial Textures └── mobile │ ├── arrow.aseprite │ ├── arrow.png │ ├── arrow.png.import │ ├── hammer.aseprite │ ├── hammer.png │ └── hammer.png.import └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /2021_03 Basic Enemy/BasicEnemy.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_03 Basic Enemy/BasicEnemy.gd -------------------------------------------------------------------------------- /2021_05 Dialogue/DialoguePlayer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_05 Dialogue/DialoguePlayer.gd -------------------------------------------------------------------------------- /2021_05 Dialogue/DialoguePlayer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_05 Dialogue/DialoguePlayer.tscn -------------------------------------------------------------------------------- /2021_05 Dialogue/NPC.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_05 Dialogue/NPC.gd -------------------------------------------------------------------------------- /2021_05 Dialogue/NPC.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_05 Dialogue/NPC.tscn -------------------------------------------------------------------------------- /2021_05 Dialogue/jsons/npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_05 Dialogue/jsons/npc.json -------------------------------------------------------------------------------- /2021_05 Dialogue/jsons/npc2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_05 Dialogue/jsons/npc2.json -------------------------------------------------------------------------------- /2021_07 Joystick/JetPackPlayer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_07 Joystick/JetPackPlayer.gd -------------------------------------------------------------------------------- /2021_07 Joystick/MobileJoystick.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_07 Joystick/MobileJoystick.gd -------------------------------------------------------------------------------- /2021_07 Mobile Tutorial Textures/mobile/arrow.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_07 Mobile Tutorial Textures/mobile/arrow.aseprite -------------------------------------------------------------------------------- /2021_07 Mobile Tutorial Textures/mobile/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_07 Mobile Tutorial Textures/mobile/arrow.png -------------------------------------------------------------------------------- /2021_07 Mobile Tutorial Textures/mobile/arrow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_07 Mobile Tutorial Textures/mobile/arrow.png.import -------------------------------------------------------------------------------- /2021_07 Mobile Tutorial Textures/mobile/hammer.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_07 Mobile Tutorial Textures/mobile/hammer.aseprite -------------------------------------------------------------------------------- /2021_07 Mobile Tutorial Textures/mobile/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_07 Mobile Tutorial Textures/mobile/hammer.png -------------------------------------------------------------------------------- /2021_07 Mobile Tutorial Textures/mobile/hammer.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/2021_07 Mobile Tutorial Textures/mobile/hammer.png.import -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafa-fiedo/Godot3-Projects/HEAD/README.md --------------------------------------------------------------------------------