No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Button.tscn 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [gd_scene load_steps=6 format=2]
  2. [ext_resource path="res://fonts/ButtonFont.tres" type="DynamicFont" id=1]
  3. [ext_resource path="res://scenes/typo/Button.gd" type="Script" id=2]
  4. [sub_resource type="StyleBoxFlat" id=1]
  5. content_margin_left = 10.0
  6. content_margin_right = 10.0
  7. content_margin_top = 5.0
  8. content_margin_bottom = 5.0
  9. bg_color = Color( 0.380392, 0.368627, 0.643137, 1 )
  10. border_width_left = 1
  11. border_width_top = 1
  12. border_width_right = 1
  13. border_width_bottom = 1
  14. border_color = Color( 0.213929, 0.201553, 0.433594, 1 )
  15. corner_radius_top_left = 6
  16. corner_radius_top_right = 6
  17. corner_radius_bottom_right = 6
  18. corner_radius_bottom_left = 6
  19. [sub_resource type="StyleBoxFlat" id=2]
  20. content_margin_left = 10.0
  21. content_margin_right = 10.0
  22. content_margin_top = 5.0
  23. content_margin_bottom = 5.0
  24. bg_color = Color( 0.203922, 0.2, 0.34902, 1 )
  25. border_width_left = 1
  26. border_width_top = 1
  27. border_width_right = 1
  28. border_width_bottom = 1
  29. border_color = Color( 0.213929, 0.201553, 0.433594, 1 )
  30. corner_radius_top_left = 6
  31. corner_radius_top_right = 6
  32. corner_radius_bottom_right = 6
  33. corner_radius_bottom_left = 6
  34. [sub_resource type="StyleBoxFlat" id=3]
  35. content_margin_left = 10.0
  36. content_margin_right = 10.0
  37. content_margin_top = 5.0
  38. content_margin_bottom = 5.0
  39. bg_color = Color( 0.294118, 0.286275, 0.501961, 1 )
  40. border_width_left = 1
  41. border_width_top = 1
  42. border_width_right = 1
  43. border_width_bottom = 1
  44. border_color = Color( 0.213929, 0.201553, 0.433594, 1 )
  45. corner_radius_top_left = 6
  46. corner_radius_top_right = 6
  47. corner_radius_bottom_right = 6
  48. corner_radius_bottom_left = 6
  49. [node name="CustomButton" type="Button"]
  50. margin_left = -1.33484
  51. margin_top = -1.33484
  52. margin_right = 113.665
  53. margin_bottom = 50.6652
  54. custom_styles/hover = SubResource( 1 )
  55. custom_styles/pressed = SubResource( 2 )
  56. custom_styles/normal = SubResource( 3 )
  57. custom_fonts/font = ExtResource( 1 )
  58. text = "Button"
  59. script = ExtResource( 2 )
  60. __meta__ = {
  61. "_edit_use_anchors_": false
  62. }