white_piano_key.tscn 719 B

1234567891011121314151617181920212223242526272829
  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. size_flags_horizontal = 3
  8. script = ExtResource( 1 )
  9. __meta__ = {
  10. "_edit_use_anchors_": false
  11. }
  12. [node name="Key" type="ColorRect" parent="."]
  13. anchor_right = 1.0
  14. anchor_bottom = 1.0
  15. offset_left = 1.0
  16. offset_right = -1.0
  17. size_flags_horizontal = 3
  18. script = ExtResource( 2 )
  19. __meta__ = {
  20. "_edit_use_anchors_": false
  21. }
  22. [node name="ColorTimer" type="Timer" parent="."]
  23. one_shot = true
  24. [connection signal="timeout" from="ColorTimer" to="." method="deactivate"]