mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-20 18:19:48 +00:00
15 lines
236 B
GDScript3
15 lines
236 B
GDScript3
|
extends Tabs
|
||
|
|
||
|
|
||
|
func _on_Tabs_tab_changed(tab : int):
|
||
|
Global.current_project_index = tab
|
||
|
|
||
|
|
||
|
func _on_Tabs_tab_close(tab : int):
|
||
|
if Global.projects.size() == 1:
|
||
|
return
|
||
|
|
||
|
|
||
|
func _on_Tabs_reposition_active_tab_request(idx_to : int):
|
||
|
pass
|