diff --git a/Assets/Sprites/Blocks/Cannon.json b/Assets/Sprites/Blocks/Cannon.json index d51f59b..a34934b 100644 --- a/Assets/Sprites/Blocks/Cannon.json +++ b/Assets/Sprites/Blocks/Cannon.json @@ -8,11 +8,11 @@ "Desert": {"source": "Cannon.png", "rect": [0, 16, 48, 16]}, "Jungle": {"source": "Cannon.png", "rect": [48, 16, 48, 16]}, "Snow": {"source": "Cannon.png", "rect": [96, 16, 48, 16]}, - "Space": {"source": "Cannon.png", "rect": [144, 16, 48, 16]}, + "Volcano": {"source": "Cannon.png", "rect": [144, 16, 48, 16]}, "Autumn": {"source": "Cannon.png", "rect": [0, 32, 48, 16]}, "Beach": {"source": "Cannon.png", "rect": [48, 32, 48, 16]}, "Mountain": {"source": "Cannon.png", "rect": [96, 32, 48, 16]}, - "Volcano": {"source": "Cannon.png", "rect": [0, 32, 48, 16]}, + "Space": {"source": "Cannon.png", "rect": [144, 32, 48, 16]}, "Bonus": {"source": "Cannon.png", "rect": [0, 48, 48, 16]} } } diff --git a/README.md b/README.md index 5d405e2..cfa64df 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,15 @@ A Remake / Celebration of the original 'Super Mario Bros.' games. Features new l ## Contributing You are more than welcome to contribute any fixes / improvements you'd like, simply open a pull request, and I'll review it ASAP! +## System Requirements + +Please refer to the Godot engine requirements for minimum and recommended hardware specifications. + +[Minimum Requirements]([url](https://docs.godotengine.org/en/latest/about/system_requirements.html#desktop-or-laptop-pc-minimum)) + +[Recommended Requirements]([url](https://docs.godotengine.org/en/latest/about/system_requirements.html#id3)) + + ## Issues When opening an issue, please keep it to one report, per post, and try and be as helpful as possible, when telling me what has occured, so that its as easy to fix as possible. Please do not open issues, for feature requests, suggestions, or opinions. BUG REPORTS ONLY diff --git a/Resources/Locale/locale.csv b/Resources/Locale/locale.csv index f7be040..f225e37 100644 --- a/Resources/Locale/locale.csv +++ b/Resources/Locale/locale.csv @@ -277,7 +277,7 @@ DELETION_BOO,,Delete You VS. Boo Data,Supprimer Données de Vous Contre Boo,Usu DELETION_ACHIEVEMENT,,Delete Achievement Data,Supprimer Données des Succès,Usuń Dane Osiągnięć,Удaлиtь дahhыe дoctижehий,Eliminar datos de logros,Elimina dati degli obiettivi,DELETE ACHIEVEMENT DATA,I-delete ang data ng mga Tropeo,Erfolge-Speicherdaten löschen,Başarı Verİlerİnİ Sİl,Hapus Data Achievement,Deletar Dados de Conquistas,トロフィーデータをさくじょする DELETION_ALL,,Delete Everything,Tout supprimer,Usuń Wszystko,Удaлиtь bcё,Eliminar todo,Elimina tutto,DELETE EVERYTHING,I-delete ang kabuohang data,Alle Speicherdaten löschen,Herşeyİ Sİl,Hapus Semuanya,Deletar Tudo,すべてのデータをさくじょする CREDITS_SKIP,,Press Jump to Skip...,Appuyez sur Saut pour passer,Wciśnij Skok aby Pominąć,"haжmиte пpыжok, чtoбы пpoпУctиtь...",Pulse Saltar para omitir,Premi Salta per saltare...,PRESS JUMP TO SKIP...,Pindutin ang Jump para magpatuloy,Zum Überspringen Sprung-Taste drücken.,Atlamak İçİn Zıplayın...,Tekan Lompat untuk Melewati...,Aperte Pular para Pular,ジャンプキーでスキップ -EDITOR_MAIN_CREATE_0,,New Level,Nouveau Niveau,Nowy Poziom,hobый Уpobehь,Neuvo nivel,Nuovo livello,NEW LEVEL,Bagong Lebel,Neues Level,Yenİ Level,Level Baru,Novo Nível,あたらたなステージ +EDITOR_MAIN_CREATE_0,,New Level,Nouveau Niveau,Nowy Poziom,hobый Уpobehь,Nuevo nivel,Nuovo livello,NEW LEVEL,Bagong Lebel,Neues Level,Yenİ Level,Level Baru,Novo Nível,あたらたなステージ EDITOR_MAIN_CREATE_1,,Make a level…,Créer un niveau,Stwórz poziom,coздatь Уpobehь...,Crear un nivel...,Crea un livello...,MAKE A LEVEL…,Gumawa ng Lebel...,Erstelle ein Level.,Level Oluştur...,Buat level…,Crie um nível...,ステージをつくる EDITOR_MAIN_LIST_NOLEVEL,,No levels found!,Aucun Niveaux trouvés !,Nie znaleziono poziomów,Уpobheй he haйдeho!,¡No se han encontrado niveles!,Nessun livello trovato!,NO LEVELS FOUND!,Walang makitang lebel...,Keine Level vorhanden!,Level Bulunamadı!,Tidak ada level yang ditemukan!,Nenhum nível encontrado!,ステージがみつからない! EDITOR_MAIN_LEVEL_PLAY,,Play,Jouer,Graj,Игpatь,Jugar,Gioca,PLAY,Play,Spielen,Oyna,Main,Jogar,あそぶ @@ -1175,4 +1175,4 @@ P_RANK_MESSAGE,,Perfect!,Parfait !,Perfekcyjnie!,Идeaльho!,¡Perfecto!,,P ,,,,,,,,,,,,,, ,,,,,,,,,,,,,, ,,,,,,,,,,,,,, -0.74,,,,,,,,,,,,,, \ No newline at end of file +0.74,,,,,,,,,,,,,, diff --git a/Scripts/Classes/States/Player/Pipe.gd b/Scripts/Classes/States/Player/Pipe.gd index d472fc3..92eff07 100644 --- a/Scripts/Classes/States/Player/Pipe.gd +++ b/Scripts/Classes/States/Player/Pipe.gd @@ -16,6 +16,7 @@ func physics_update(delta: float) -> void: player.direction = int(player.pipe_enter_direction.x) player.sprite.scale.x = player.direction else: + player.sprite.speed_scale = 1 player.play_animation("Pipe") func exit() -> void: