Compare commits
15 Commits
Author | SHA1 | Date | |
---|---|---|---|
ba8184af9d | |||
9f31c97391 | |||
e5778812bc | |||
d89c65333e | |||
52743e8ad2 | |||
52c1300d09 | |||
50b3e35859 | |||
e9f3d7dc14 | |||
c64c4afd89 | |||
e714b7cbaf | |||
63728c90c6 | |||
9e9779b8a9 | |||
25d865bcbb | |||
73d3e59d93 | |||
8c7a4bef17 |
@ -2,5 +2,5 @@
|
||||
|
||||
[Downloads](https://github.com/adrienmalin/TETRIS3000/releases)
|
||||
|
||||
[Play in browser (experimental)](https://adrienmalin.github.io/TETRIS3000/web/TETRIS3000.html)
|
||||
[Play in browser](https://adrienmalin.github.io/TETRIS3000/web/TETRIS3000.html)
|
||||
|
||||
|
@ -229,7 +229,7 @@ extra_spacing_bottom = 5
|
||||
font_data = ExtResource( 12 )
|
||||
_sections_unfolded = [ "Extra Spacing", "Font", "Settings" ]
|
||||
|
||||
[node name="Main" type="WorldEnvironment"]
|
||||
[node name="Main" type="WorldEnvironment" index="0"]
|
||||
|
||||
environment = SubResource( 2 )
|
||||
script = ExtResource( 1 )
|
||||
@ -327,7 +327,7 @@ lod_max_hysteresis = 0.0
|
||||
mesh = SubResource( 4 )
|
||||
skeleton = NodePath("..")
|
||||
material/0 = null
|
||||
_sections_unfolded = [ "Transform" ]
|
||||
_sections_unfolded = [ "Transform", "material" ]
|
||||
|
||||
[node name="GridMap" type="GridMap" parent="Matrix" index="0"]
|
||||
|
||||
@ -435,10 +435,10 @@ autostart = false
|
||||
|
||||
editor/display_folded = true
|
||||
script = ExtResource( 6 )
|
||||
file = "res://midi/Tetris - Song A.mid"
|
||||
_sections_unfolded = [ "Pause" ]
|
||||
file = "res://midi/Korobeiniki.mid"
|
||||
volume_db = -24
|
||||
loop = true
|
||||
loop_start = 1.81
|
||||
soundfont = "res://midi/TimGM6mb.sf2"
|
||||
|
||||
[node name="LineCLearTimer" type="Timer" parent="MidiPlayer" index="1"]
|
||||
@ -509,10 +509,10 @@ anchor_left = 0.0
|
||||
anchor_top = 1.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 1.0
|
||||
margin_left = 20.0
|
||||
margin_top = -260.0
|
||||
margin_right = 130.0
|
||||
margin_bottom = -50.0
|
||||
margin_left = 95.0
|
||||
margin_top = -250.0
|
||||
margin_right = 205.0
|
||||
margin_bottom = -40.0
|
||||
|
||||
[node name="controls_ui" parent="." index="13" instance=ExtResource( 10 )]
|
||||
|
||||
@ -527,10 +527,10 @@ anchor_left = 1.0
|
||||
anchor_top = 1.0
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_left = -335.0
|
||||
margin_top = -55.0
|
||||
margin_right = -165.0
|
||||
margin_bottom = -15.0
|
||||
margin_left = -215.0
|
||||
margin_top = -100.0
|
||||
margin_right = -90.0
|
||||
margin_bottom = -60.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
@ -544,15 +544,13 @@ toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
text = "REPLAY"
|
||||
text = "play again"
|
||||
flat = false
|
||||
align = 1
|
||||
_sections_unfolded = [ "Margin", "custom_colors", "custom_fonts" ]
|
||||
|
||||
[connection signal="timeout" from="DropTimer" to="." method="_on_DropTimer_timeout"]
|
||||
|
||||
[connection signal="timeout" from="LockDelay" to="." method="_on_LockDelay_timeout"]
|
||||
|
||||
[connection signal="timeout" from="AutoShiftDelay" to="." method="_on_AutoShiftDelay_timeout"]
|
||||
|
||||
[connection signal="timeout" from="AutoShiftTimer" to="." method="_on_AutoShiftTimer_timeout"]
|
||||
|
@ -2,7 +2,7 @@ extends "midi/MidiPlayer.gd"
|
||||
|
||||
const Tetromino = preload("res://Tetrominos/Tetromino.gd")
|
||||
|
||||
const LINE_CLEAR_CHANNELS = [2, 6]
|
||||
const LINE_CLEAR_CHANNELS = [2]
|
||||
|
||||
var muted_events = []
|
||||
|
||||
|
BIN
source/midi/Korobeiniki.mid
Normal file
BIN
source/midi/Korobeiniki.mid
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -17,8 +17,8 @@ config/icon="res://icons/48.png"
|
||||
|
||||
[display]
|
||||
|
||||
window/size/width=500
|
||||
window/size/height=500
|
||||
window/size/width=640
|
||||
window/size/height=480
|
||||
window/vsync/use_vsync=false
|
||||
window/stretch/aspect="expand"
|
||||
|
||||
|
Binary file not shown.
Reference in New Issue
Block a user