aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE/src/core/script/runtime.js
diff options
context:
space:
mode:
authorNivesh Rajbhandari2012-02-22 11:52:31 -0800
committerNivesh Rajbhandari2012-02-22 11:52:31 -0800
commitd5b216d9d6d2b8cb93106e8f8ca351089d05b41d (patch)
tree657274b7efd3a930e4d3298ad6c245b975a8224b /js/helper-classes/RDGE/src/core/script/runtime.js
parentdae612ccef06a18eb7cccc2fd9d0db13ec4ef5f9 (diff)
downloadninja-d5b216d9d6d2b8cb93106e8f8ca351089d05b41d.tar.gz
Integrating canvas-2d and WebGL drawing fixes. Also adding back WebGL materials.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/helper-classes/RDGE/src/core/script/runtime.js')
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/runtime.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/js/helper-classes/RDGE/src/core/script/runtime.js b/js/helper-classes/RDGE/src/core/script/runtime.js
index 18b9b223..3d824faf 100755
--- a/js/helper-classes/RDGE/src/core/script/runtime.js
+++ b/js/helper-classes/RDGE/src/core/script/runtime.js
@@ -206,11 +206,15 @@ RDGETask = (function() {
206 self.lastTime = self.currTime; 206 self.lastTime = self.currTime;
207 } 207 }
208 208
209 this.start = function() { 209 this.start = function()
210 this.running = true; 210 {
211 this.currTime = new Date().getTime(); 211 if (!this.running)
212 this.lastTime = this.currTime; 212 {
213 tasks[this.id](); 213 this.running = true;
214 this.currTime = new Date().getTime();
215 this.lastTime = this.currTime;
216 tasks[this.id]();
217 }
214 } 218 }
215 219
216 this.stop = function() { 220 this.stop = function() {