18 lines
307 B
GDScript
18 lines
307 B
GDScript
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)
|
|
},
|
|
"stone_axe": {
|
|
"image": "res://textures/tools/stone_axe.svg",
|
|
"offset": Vector2(-80, -195)
|
|
}
|
|
}
|