diverses améliorations.
This commit is contained in:
parent
83133524f6
commit
0aaa638c0c
4 changed files with 10 additions and 5 deletions
|
@ -28,3 +28,7 @@ func _on_SaveHUD_pressed():
|
|||
child.save_to_file( config_file )
|
||||
|
||||
config_file.save( HUD_config_file )
|
||||
|
||||
func _on_Windows_gui_input( event ):
|
||||
if event is InputEventMouseButton and not event.is_echo() and not event.pressed:
|
||||
Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
|
||||
|
|
|
@ -67,7 +67,6 @@ _sections_unfolded = [ "Visibility" ]
|
|||
|
||||
[node name="Windows" type="ReferenceRect" parent="." index="2"]
|
||||
|
||||
editor/display_folded = true
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
|
@ -76,7 +75,7 @@ margin_right = 1024.0
|
|||
margin_bottom = 600.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
mouse_filter = 2
|
||||
mouse_filter = 1
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
|
@ -1339,6 +1338,8 @@ flat = false
|
|||
align = 1
|
||||
_sections_unfolded = [ "Size Flags" ]
|
||||
|
||||
[connection signal="gui_input" from="Windows" to="." method="_on_Windows_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Windows/Test/VBoxContainer/Header" to="Windows/Test" method="_on_Header_gui_input"]
|
||||
|
||||
[connection signal="pressed" from="Windows/Test/VBoxContainer/Header/HBoxContainer/Quit" to="Windows/Test" method="_on_Quit_pressed"]
|
||||
|
|
|
@ -124,7 +124,7 @@ func save_to_file( config_file ):
|
|||
print( "" )
|
||||
|
||||
config_file.set_value(self.name, "position", self.rect_position)
|
||||
config_file.set_value(self.name, "size", self.rect_size)
|
||||
config_file.set_value(self.name, "size", current_rect_size)
|
||||
if $VBoxContainer/Content.visible:
|
||||
config_file.set_value(self.name, "opened", true)
|
||||
else:
|
||||
|
|
|
@ -17,4 +17,4 @@ func _ready():
|
|||
|
||||
func _on_ProgressBar_value_changed(value):
|
||||
self.modulate = Color( 1.0, 1.0, 1.0, clamp(value/50, 20/255, 1 ) )
|
||||
get_node( "../../overlay_oubli" ).modulate.a = self.modulate.a-self.modulate.a/2
|
||||
get_node( "../../overlay_oubli" ).modulate.a = self.modulate.a/2
|
Loading…
Reference in a new issue