mirror of
https://github.com/Relintai/ess_data.git
synced 2024-11-11 20:45:00 +01:00
13 lines
141 B
GDScript
13 lines
141 B
GDScript
tool
|
|
extends Button
|
|
|
|
export(int) var tab = 0
|
|
|
|
var _panel
|
|
|
|
func _pressed():
|
|
_panel.set_tab(tab)
|
|
|
|
func set_main_panel(panel):
|
|
_panel = panel
|