diff options
author | Jose Antonio Marquez | 2012-03-09 10:13:59 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-03-09 10:13:59 -0800 |
commit | d549383abf18a0dc54a990983fb4296602b66120 (patch) | |
tree | ac107d3823abb846c1afae3d03abce0f6aae2c98 /js/lib/rdge/materials/pulse-material.js | |
parent | 3bcdfaa322ac53609b66ecedbace1872048fd310 (diff) | |
parent | 7b6e8194b91168abdeb94702eb350d14f147858b (diff) | |
download | ninja-d549383abf18a0dc54a990983fb4296602b66120.tar.gz |
Merge branch 'refs/heads/integration' into FileIO-Integration
Conflicts:
js/document/html-document.js
Diffstat (limited to 'js/lib/rdge/materials/pulse-material.js')
-rw-r--r-- | js/lib/rdge/materials/pulse-material.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/js/lib/rdge/materials/pulse-material.js b/js/lib/rdge/materials/pulse-material.js index 1e3137eb..8ad78bd4 100644 --- a/js/lib/rdge/materials/pulse-material.js +++ b/js/lib/rdge/materials/pulse-material.js | |||
@@ -179,8 +179,12 @@ var PulseMaterial = function PulseMaterial() { | |||
179 | var exportStr = "material: " + this.getShaderName() + "\n"; | 179 | var exportStr = "material: " + this.getShaderName() + "\n"; |
180 | exportStr += "name: " + this.getName() + "\n"; | 180 | exportStr += "name: " + this.getName() + "\n"; |
181 | 181 | ||
182 | var texMapName = this._propValues[this._propNames[0]]; | 182 | var world = this.getWorld(); |
183 | exportStr += "texture: " + texMapName + "\n"; | 183 | if (!world) |
184 | throw new Error( "no world in material.export, " + this.getName() ); | ||
185 | |||
186 | var texMapName = world.cleansePath( this._propValues[this._propNames[0]] ); | ||
187 | exportStr += "texture: " +texMapName + "\n"; | ||
184 | 188 | ||
185 | // every material needs to terminate like this | 189 | // every material needs to terminate like this |
186 | exportStr += "endMaterial\n"; | 190 | exportStr += "endMaterial\n"; |