Skip to content

Commit de4cee9

Browse files
committed
[Fix]: Platform friction causing player movement
1 parent 8d4b90e commit de4cee9

6 files changed

+125
-5
lines changed

Assets/0_Scenes/Main Menu.unity

+97-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/1_Scripts/PauseButton.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void OnClick()
3535
{
3636
if (audios[i].isPlaying)
3737
{
38-
audios[i].Pause();
38+
//audios[i].Pause();
3939
}
4040
}
4141
}
@@ -82,7 +82,7 @@ public void ResumeAudios()
8282
{
8383
if (Architecture.Managers.UserGameData.Instance.soundsOn)
8484
{
85-
audios[i].UnPause();
85+
//audios[i].UnPause();
8686
}
8787
}
8888
}

Assets/Sprites/Platform/NoFriction.physicsMaterial2D

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Sprites/Platform/NoFriction.physicsMaterial2D.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Sprites/Platform/PlatformFULL.prefab

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Sprites/Platform/PlatformFULL_H.prefab

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)