14 lines
207 B
GDScript3
14 lines
207 B
GDScript3
|
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)
|
||
|
}
|
||
|
}
|