diff options
author | John Mayhew | 2012-02-10 16:04:19 -0800 |
---|---|---|
committer | John Mayhew | 2012-02-10 16:04:19 -0800 |
commit | 730c1e191e36b8ab8dba576c481a6585e0dfa69e (patch) | |
tree | c86445ff8d1981e97096ec5e9f6cc5301dc9ea40 /js/helper-classes/RDGE/Materials/IridescentScalesMaterial.js | |
parent | cde1dd9a9156b9682fdf85ce2cd4acdd94124c37 (diff) | |
parent | 48977780443d97b9e97b047066639c9056788041 (diff) | |
download | ninja-730c1e191e36b8ab8dba576c481a6585e0dfa69e.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into WorkingBranch
Conflicts:
js/ninja.reel/ninja.html
Diffstat (limited to 'js/helper-classes/RDGE/Materials/IridescentScalesMaterial.js')
-rw-r--r-- | js/helper-classes/RDGE/Materials/IridescentScalesMaterial.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/helper-classes/RDGE/Materials/IridescentScalesMaterial.js b/js/helper-classes/RDGE/Materials/IridescentScalesMaterial.js index ac1d3fe7..a8b1c18b 100644 --- a/js/helper-classes/RDGE/Materials/IridescentScalesMaterial.js +++ b/js/helper-classes/RDGE/Materials/IridescentScalesMaterial.js | |||
@@ -80,8 +80,11 @@ function IridescentScalesMaterial() | |||
80 | /////////////////////////////////////////////////////////////////////// | 80 | /////////////////////////////////////////////////////////////////////// |
81 | this.dup = function() { return new IridescentScalesMaterial(); } | 81 | this.dup = function() { return new IridescentScalesMaterial(); } |
82 | 82 | ||
83 | this.init = function() | 83 | this.init = function( world ) |
84 | { | 84 | { |
85 | // save the world | ||
86 | if (world) this.setWorld( world ); | ||
87 | |||
85 | // set up the shader | 88 | // set up the shader |
86 | this._shader = new jshader(); | 89 | this._shader = new jshader(); |
87 | this._shader.def = iridescentScalesShaderDef; | 90 | this._shader.def = iridescentScalesShaderDef; |