YeOldeDM / lets-godot-roguelike

A tutorials series on how to build a simple roguelike in the Godot Game Engine
MIT License
24 stars 5 forks source link

`Thing` base object #33

Open YeOldeDM opened 7 years ago

YeOldeDM commented 7 years ago

Create a new scene res://global/things/Thing.tscn
Base is Node2D "Thing"

Child Sprite "Icon"

Migrate some of the code we have for the player over to this; everything except the _input() loop catching input. We'll migrate that code into another scene soon...