aboutsummaryrefslogtreecommitdiff
path: root/js/lib/rdge/materials/radial-blur-material.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/lib/rdge/materials/radial-blur-material.js')
-rw-r--r--js/lib/rdge/materials/radial-blur-material.js59
1 files changed, 57 insertions, 2 deletions
diff --git a/js/lib/rdge/materials/radial-blur-material.js b/js/lib/rdge/materials/radial-blur-material.js
index 46cdda74..91eebcff 100644
--- a/js/lib/rdge/materials/radial-blur-material.js
+++ b/js/lib/rdge/materials/radial-blur-material.js
@@ -157,6 +157,38 @@ var RadialBlurMaterial = function RadialBlurMaterial() {
157 } 157 }
158 }; 158 };
159 159
160 this.exportJSON = function()
161 {
162 var jObj =
163 {
164 'material' : this.getShaderName(),
165 'name' : this.getName(),
166 'color' : this._propValues["color"],
167 'texture' : this._propValues[this._propNames[0]]
168 };
169
170 return jObj;
171 };
172
173 this.importJSON = function( jObj )
174 {
175 if (this.getShaderName() != jObj.material) throw new Error( "ill-formed material" );
176 this.setName( jObj.name );
177
178 var rtnStr;
179 try
180 {
181 this._propValues[this._propNames[0]] = jObj.texture;
182 this.updateTexture();
183 }
184 catch (e)
185 {
186 throw new Error( "could not import material: " + importStr );
187 }
188
189 return rtnStr;
190 }
191
160 this.export = function() { 192 this.export = function() {
161 // every material needs the base type and instance name 193 // every material needs the base type and instance name
162 var exportStr = "material: " + this.getShaderName() + "\n"; 194 var exportStr = "material: " + this.getShaderName() + "\n";
@@ -242,10 +274,33 @@ var radialBlurMaterialDef =
242 } 274 }
243}; 275};
244 276
277
278/*
279var RaidersMaterial = function RaidersMaterial()
280{
281 // initialize the inherited members
282 this.inheritedFrom = RadialBlurMaterial;
283 this.inheritedFrom();
284
285 this._name = "RaidersMaterial";
286 this._shaderName = "radialBlur";
287
288 this._texMap = 'assets/images/raiders.png';
289 this._propValues[ this._propNames[0] ] = this._texMap.slice(0);
290}
291
292RaidersMaterial.prototype = new Material();
293
294if (typeof exports === "object")
295{
296 exports.RaidersMaterial = RaidersMaterial;
297}
298*/
299
300
245RadialBlurMaterial.prototype = new Material(); 301RadialBlurMaterial.prototype = new Material();
246 302
247if (typeof exports === "object") { 303if (typeof exports === "object")
248 exports.RadialBlurMaterial = RadialBlurMaterial; 304 exports.RadialBlurMaterial = RadialBlurMaterial;
249}
250 305
251 306