Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
59da630c7c | |||
bdbeb399d5 | |||
976bc01c20 | |||
4424107f16 | |||
bdba103417 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -10,4 +10,6 @@ export_presets.cfg
|
|||||||
midi/FluidR3 GM.sf2
|
midi/FluidR3 GM.sf2
|
||||||
release/
|
release/
|
||||||
*.import
|
*.import
|
||||||
*.tmp
|
*.tmp
|
||||||
|
|
||||||
|
desktop.ini
|
||||||
|
@ -10,7 +10,5 @@ func print(text):
|
|||||||
$AnimationPlayer.play("Flash")
|
$AnimationPlayer.play("Flash")
|
||||||
|
|
||||||
func _on_AnimationPlayer_animation_finished(anim_name):
|
func _on_AnimationPlayer_animation_finished(anim_name):
|
||||||
texts = PoolStringArray()
|
texts.resize(0)
|
||||||
|
|
||||||
func _on_Stats_flash_text(text):
|
|
||||||
self.print(text)
|
|
||||||
|
@ -26,7 +26,7 @@ _sections_unfolded = [ "Extra Spacing", "Font", "Font/fallback", "Settings" ]
|
|||||||
|
|
||||||
default_font = SubResource( 2 )
|
default_font = SubResource( 2 )
|
||||||
|
|
||||||
[node name="Start" type="Control" index="0"]
|
[node name="Start" type="Control"]
|
||||||
|
|
||||||
anchor_left = 0.5
|
anchor_left = 0.5
|
||||||
anchor_top = 0.5
|
anchor_top = 0.5
|
||||||
|
@ -121,7 +121,7 @@ func turn(direction):
|
|||||||
var movements = super_rotation_system[orientation][direction]
|
var movements = super_rotation_system[orientation][direction]
|
||||||
for i in range(movements.size()):
|
for i in range(movements.size()):
|
||||||
if grid_map.possible_positions(rotated_translations, movements[i]):
|
if grid_map.possible_positions(rotated_translations, movements[i]):
|
||||||
orientation = (orientation - direction) % NB_MINOES
|
orientation = (orientation - direction) % 4
|
||||||
set_translations(rotated_translations)
|
set_translations(rotated_translations)
|
||||||
translate(movements[i])
|
translate(movements[i])
|
||||||
unlocking()
|
unlocking()
|
||||||
|
Binary file not shown.
Reference in New Issue
Block a user