black_piano_key.tscn 780 B

1234567891011121314151617181920212223242526272829303132
  1. [gd_scene load_steps=3 format=2]
  2. [ext_resource path="res://piano_keys/piano_key.gd" type="Script" id=1]
  3. [ext_resource path="res://piano_keys/piano_key_color.gd" type="Script" id=2]
  4. [node name="PianoKey" type="Control"]
  5. offset_right = 20.0
  6. offset_bottom = 200.0
  7. mouse_filter = 2
  8. size_flags_horizontal = 3
  9. script = ExtResource( 1 )
  10. __meta__ = {
  11. "_edit_use_anchors_": false
  12. }
  13. [node name="Key" type="ColorRect" parent="."]
  14. anchor_left = 0.5
  15. anchor_right = 1.5
  16. anchor_bottom = 1.0
  17. offset_left = 2.0
  18. offset_right = -2.0
  19. size_flags_horizontal = 3
  20. color = Color(0, 0, 0, 1)
  21. script = ExtResource( 2 )
  22. __meta__ = {
  23. "_edit_use_anchors_": false
  24. }
  25. [node name="ColorTimer" type="Timer" parent="."]
  26. one_shot = true
  27. [connection signal="timeout" from="ColorTimer" to="." method="deactivate"]