File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 2525 ****************************************************************************/
2626
2727
28- /**
29- * Minimum priority level for user scheduling.
30- * @constant
31- * @type Number
32- */
33- cc . PRIORITY_NON_SYSTEM = cc . PRIORITY_SYSTEM + 1 ;
3428
3529//data structures
3630/**
@@ -1029,9 +1023,17 @@ cc.Scheduler = cc.Class.extend(/** @lends cc.Scheduler# */{
10291023 this . unscheduleAllWithMinPriority ( minPriority ) ;
10301024 }
10311025} ) ;
1026+
10321027/**
10331028 * Priority level reserved for system services.
10341029 * @constant
10351030 * @type Number
10361031 */
10371032cc . Scheduler . PRIORITY_SYSTEM = ( - 2147483647 - 1 ) ;
1033+
1034+ /**
1035+ * Minimum priority level for user scheduling.
1036+ * @constant
1037+ * @type Number
1038+ */
1039+ cc . Scheduler . PRIORITY_NON_SYSTEM = cc . Scheduler . PRIORITY_SYSTEM + 1 ;
You can’t perform that action at this time.
0 commit comments