File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 25
25
****************************************************************************/
26
26
27
27
28
- /**
29
- * Minimum priority level for user scheduling.
30
- * @constant
31
- * @type Number
32
- */
33
- cc . PRIORITY_NON_SYSTEM = cc . PRIORITY_SYSTEM + 1 ;
34
28
35
29
//data structures
36
30
/**
@@ -1029,9 +1023,17 @@ cc.Scheduler = cc.Class.extend(/** @lends cc.Scheduler# */{
1029
1023
this . unscheduleAllWithMinPriority ( minPriority ) ;
1030
1024
}
1031
1025
} ) ;
1026
+
1032
1027
/**
1033
1028
* Priority level reserved for system services.
1034
1029
* @constant
1035
1030
* @type Number
1036
1031
*/
1037
1032
cc . 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