5 Commits

Author SHA1 Message Date
59da630c7c fix orientation 2019-02-10 15:03:02 +01:00
bdbeb399d5 v1.11.1 release 2019-01-27 14:32:00 +01:00
976bc01c20 Update .gitignore 2019-01-27 14:18:50 +01:00
4424107f16 Update Start.tscn 2019-01-27 14:18:46 +01:00
bdba103417 fix flash text (again) 2019-01-27 14:18:42 +01:00
5 changed files with 7 additions and 7 deletions

4
.gitignore vendored
View File

@ -10,4 +10,6 @@ export_presets.cfg
midi/FluidR3 GM.sf2
release/
*.import
*.tmp
*.tmp
desktop.ini

View File

@ -10,7 +10,5 @@ func print(text):
$AnimationPlayer.play("Flash")
func _on_AnimationPlayer_animation_finished(anim_name):
texts = PoolStringArray()
func _on_Stats_flash_text(text):
self.print(text)
texts.resize(0)

View File

@ -26,7 +26,7 @@ _sections_unfolded = [ "Extra Spacing", "Font", "Font/fallback", "Settings" ]
default_font = SubResource( 2 )
[node name="Start" type="Control" index="0"]
[node name="Start" type="Control"]
anchor_left = 0.5
anchor_top = 0.5

View File

@ -121,7 +121,7 @@ func turn(direction):
var movements = super_rotation_system[orientation][direction]
for i in range(movements.size()):
if grid_map.possible_positions(rotated_translations, movements[i]):
orientation = (orientation - direction) % NB_MINOES
orientation = (orientation - direction) % 4
set_translations(rotated_translations)
translate(movements[i])
unlocking()

Binary file not shown.