diff options
author | John Mayhew | 2012-04-03 09:36:14 -0700 |
---|---|---|
committer | John Mayhew | 2012-04-03 09:36:14 -0700 |
commit | 8d1cc709340da845d76f84220fe92c11e6217ff3 (patch) | |
tree | e2f8cfac9c0dcd64ce2b06f55d3a3981795c2fe3 /js/lib/rdge/materials/pulse-material.js | |
parent | b4155fb4c33675a8a7cd37473513718043fdf0ba (diff) | |
download | ninja-8d1cc709340da845d76f84220fe92c11e6217ff3.tar.gz |
Made use of semicolons consistent and updated new files to use the new RDGE namespace
Diffstat (limited to 'js/lib/rdge/materials/pulse-material.js')
-rw-r--r-- | js/lib/rdge/materials/pulse-material.js | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/js/lib/rdge/materials/pulse-material.js b/js/lib/rdge/materials/pulse-material.js index 47059533..6dabc759 100644 --- a/js/lib/rdge/materials/pulse-material.js +++ b/js/lib/rdge/materials/pulse-material.js | |||
@@ -66,9 +66,8 @@ var PulseMaterial = function PulseMaterial() { | |||
66 | /////////////////////////////////////////////////////////////////////// | 66 | /////////////////////////////////////////////////////////////////////// |
67 | // Methods | 67 | // Methods |
68 | /////////////////////////////////////////////////////////////////////// | 68 | /////////////////////////////////////////////////////////////////////// |
69 | // duplcate method requirde | 69 | // duplicate method required |
70 | this.dup = function( world ) | 70 | this.dup = function( world ) { |
71 | { | ||
72 | // save the world | 71 | // save the world |
73 | if (world) this.setWorld( world ); | 72 | if (world) this.setWorld( world ); |
74 | 73 | ||
@@ -86,8 +85,7 @@ var PulseMaterial = function PulseMaterial() { | |||
86 | return newMat; | 85 | return newMat; |
87 | }; | 86 | }; |
88 | 87 | ||
89 | this.init = function( world ) | 88 | this.init = function( world ) { |
90 | { | ||
91 | // save the world | 89 | // save the world |
92 | if (world) this.setWorld( world ); | 90 | if (world) this.setWorld( world ); |
93 | 91 | ||
@@ -233,7 +231,7 @@ var PulseMaterial = function PulseMaterial() { | |||
233 | } | 231 | } |
234 | 232 | ||
235 | return rtnStr; | 233 | return rtnStr; |
236 | } | 234 | }; |
237 | }; | 235 | }; |
238 | 236 | ||
239 | /////////////////////////////////////////////////////////////////////////////////////// | 237 | /////////////////////////////////////////////////////////////////////////////////////// |