checheche/Robo-Bus-A31-HMI/common/base/base_scroll_container.gd
2024-12-06 21:22:11 +08:00

13 lines
311 B
GDScript

@tool
class_name BaseScrollContainer
extends ScrollContainer
func _init():
disable_scrollbars()
func disable_scrollbars():
var empty_stylebox = StyleBoxEmpty.new()
get_v_scroll_bar().set("theme_override_styles/scroll",empty_stylebox)
get_h_scroll_bar().set("theme_override_styles/scroll",empty_stylebox)