Add a system for changing tools
This commit is contained in:
13
script/game_data.gd
Normal file
13
script/game_data.gd
Normal file
@ -0,0 +1,13 @@
|
||||
extends Node
|
||||
|
||||
|
||||
var tools = {
|
||||
"none": {
|
||||
"image": "res://textures/tools/none.svg",
|
||||
"offset": Vector2(0, 0)
|
||||
},
|
||||
"stick": {
|
||||
"image": "res://textures/tools/stick.svg",
|
||||
"offset": Vector2(-80, -120)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user