Skip to content
Snippets Groups Projects
Commit 2d4382fc authored by maikeljh's avatar maikeljh
Browse files

[Fix] Cutscene time

parent 00ecb171
Branches
No related merge requests found
...@@ -68,7 +68,6 @@ namespace Nightmare ...@@ -68,7 +68,6 @@ namespace Nightmare
{ {
if (levels[currentIndex].StartsWith("Cutscene")) if (levels[currentIndex].StartsWith("Cutscene"))
{ {
Time.timeScale = 0;
bool skip = true; bool skip = true;
for (int i = 0; i < SceneManager.sceneCount; i++) for (int i = 0; i < SceneManager.sceneCount; i++)
{ {
...@@ -107,7 +106,6 @@ namespace Nightmare ...@@ -107,7 +106,6 @@ namespace Nightmare
{ {
SceneManager.LoadSceneAsync(levels[currentIndex], LoadSceneMode.Single); SceneManager.LoadSceneAsync(levels[currentIndex], LoadSceneMode.Single);
} }
Time.timeScale = 1;
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment