最近刚开始学godot做游戏,想给游戏的设置按钮做个弹窗,目前在给弹窗绘制边框时遇到问题,怎么改都不生效,有没有大神帮忙看下:
func _on_settings_button_pressed():
settings_window = preload("res://settings.tscn").instantiate()
var stheme = Theme.new()
var style = StyleBoxFlat.new()
style.bg_color = Color(0.1, 0.1, 0.15)
style.border_color = Color(0, 0.8, 1)
style.border_width_left = 2
style.border_width_right = 2
style.border_width_top = 2
style.border_width_bottom = 2
style.content_margin_left = 2
style.content_margin_right = 2
style.content_margin_top = 2
style.content_margin_bottom = 2
stheme.set_stylebox("panel", "Window", style)
settings_window.theme = stheme
add_child(settings_window)
settings_window.popup_centered(Vector2(500, 300))
部分代码是从deepseek那讨教来的,弹出的窗口用的是window节点,没用PopupPanel是因为没法设置控件的位置,如果有别的方法也可以,只要能解决问题就行
func _on_settings_button_pressed():
settings_window = preload("res://settings.tscn").instantiate()
var stheme = Theme.new()
var style = StyleBoxFlat.new()
style.bg_color = Color(0.1, 0.1, 0.15)
style.border_color = Color(0, 0.8, 1)
style.border_width_left = 2
style.border_width_right = 2
style.border_width_top = 2
style.border_width_bottom = 2
style.content_margin_left = 2
style.content_margin_right = 2
style.content_margin_top = 2
style.content_margin_bottom = 2
stheme.set_stylebox("panel", "Window", style)
settings_window.theme = stheme
add_child(settings_window)
settings_window.popup_centered(Vector2(500, 300))
部分代码是从deepseek那讨教来的,弹出的窗口用的是window节点,没用PopupPanel是因为没法设置控件的位置,如果有别的方法也可以,只要能解决问题就行
