8 #define PUMP_ALWAYS_RUNNING
9 #define PUMP_EVERY_FRAME
10 #define STOP_ON_LEVEL_LOAD
15 using System.Collections;
28 protected static ISpriteAnimatable head;
31 protected static ISpriteAnimatable cur;
35 static float _timeScale = 1f;
36 static float startTime;
39 static float timePaused;
40 static bool isPaused =
false;
41 static ISpriteAnimatable next;
46 protected static bool pumpIsRunning =
false;
49 protected static bool pumpIsDone =
true;
56 get {
return pumpIsRunning; }
71 return Time.timeScale;
80 Time.timeScale = value;
81 _timeScale = Time.timeScale;
83 _timeScale = Mathf.Max(0, value);
97 #if STOP_ON_LEVEL_LOAD
100 pumpIsRunning =
false;
103 DontDestroyOnLoad(
this);
110 void OnApplicationPause(
bool paused)
113 if (paused && !isPaused)
115 timePaused = Time.realtimeSinceStartup;
117 else if (!paused && isPaused)
120 float pauseDuration = Time.realtimeSinceStartup - timePaused;
121 startTime += pauseDuration;
139 pumpIsRunning =
true;
141 StartCoroutine(PumpStarter());
149 protected IEnumerator PumpStarter()
154 StartCoroutine(AnimationPump());
166 #if !PUMP_ALWAYS_RUNNING
167 pumpIsRunning =
false;
181 if ((!isPaused && Time.timeScale == 0) ||
182 (isPaused && Time.timeScale != 0))
183 instance.OnApplicationPause(Time.timeScale == 0);
186 time = Time.realtimeSinceStartup;
187 elapsed = (time - startTime) * _timeScale;
195 next = (ISpriteAnimatable)cur.next;
197 cur.StepAnim(elapsed);
199 cur.StepAnim(Time.deltaTime);
208 protected static IEnumerator AnimationPump()
211 startTime = Time.realtimeSinceStartup;
213 startTime = Time.time;
218 while (pumpIsRunning)
221 if ((!isPaused && Time.timeScale == 0) ||
222 (isPaused && Time.timeScale != 0))
223 instance.OnApplicationPause(Time.timeScale == 0);
225 #if !PUMP_EVERY_FRAME
234 elapsed = time - startTime;
237 time = Time.realtimeSinceStartup;
238 elapsed = (time - startTime) * _timeScale;
247 next = (ISpriteAnimatable)cur.next;
248 cur.StepAnim(elapsed);
256 #endif // end #if !COROUTINE_PUMP
264 GameObject go =
new GameObject(
"SpriteAnimationPump");
272 public void OnDestroy()
283 public static void Add(ISpriteAnimatable s)
297 Instance.StartAnimationPump();
304 public static void Remove(ISpriteAnimatable s)
308 head = (ISpriteAnimatable)s.next;
321 s.prev.next = s.next;
322 s.next.prev = s.prev;
324 else if(s.prev != null)
bool IsRunning
Returns whether or not the pump is currently running.
static float timeScale
Works like Time.timeScale, only it still works when using realtime tracking. When USE_DELTA_TIME is d...
static float animationPumpInterval
The interval between animation coroutine updates. Defaults to 0.03333f (30 frames per second)...
static void StopAnimationPump()
Stops the animation pump from running. Normally, there is no need to call this directly. Only use this if you want to pause all animations or something.
void StartAnimationPump()
Starts the animation pump coroutine. Normally, there is no need to call this directly. Only use this if you have manually stopped the pump to pause all animations or something.