changelogui.gd 499 B

1234567891011121314151617181920212223242526
  1. extends CanvasItem
  2. # Declare member variables here. Examples:
  3. # var a = 2
  4. # var b = "text"
  5. # Called when the node enters the scene tree for the first time.
  6. func _ready():
  7. pass # Replace with function body.
  8. # Called every frame. 'delta' is the elapsed time since the previous frame.
  9. #func _process(delta):
  10. # pass
  11. func _on_Button3_button_down():
  12. visible = !visible
  13. pass # Replace with function body.
  14. func _on_Button4_button_down():
  15. visible = !visible
  16. pass # Replace with function body.