Skip to content

Commit c7a74bd

Browse files
committedJul 23, 2018
Prevent sleep component
1 parent db2d5dc commit c7a74bd

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
 

‎NoSleepBehaviour.cs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
using UnityEngine;
2+
3+
namespace TinyMatter.GetFact.Game {
4+
public class NoSleepBehaviour : MonoBehaviour {
5+
private void Awake() {
6+
Screen.sleepTimeout = SleepTimeout.NeverSleep;
7+
}
8+
}
9+
}

‎NoSleepBehaviour.cs.meta

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

0 commit comments

Comments
 (0)
Please sign in to comment.