diff options
author | hwc487 | 2012-03-16 12:26:30 -0700 |
---|---|---|
committer | hwc487 | 2012-03-16 12:26:30 -0700 |
commit | a0d23354802ebc6b437698acb4b18d3395d47cd1 (patch) | |
tree | a0081c079c9fc557e10a828db9adeed5a91d5a72 /js/lib/rdge/materials/taper-material.js | |
parent | 57d4a82977a1f0e809511fe894886f88581d9615 (diff) | |
download | ninja-a0d23354802ebc6b437698acb4b18d3395d47cd1.tar.gz |
Conversion to JSON based file IO for canvas2D and WebGL rendering
Diffstat (limited to 'js/lib/rdge/materials/taper-material.js')
-rw-r--r-- | js/lib/rdge/materials/taper-material.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/js/lib/rdge/materials/taper-material.js b/js/lib/rdge/materials/taper-material.js index 03a7ba9c..15b7b2b0 100644 --- a/js/lib/rdge/materials/taper-material.js +++ b/js/lib/rdge/materials/taper-material.js | |||
@@ -96,6 +96,33 @@ function TaperMaterial() | |||
96 | } | 96 | } |
97 | } | 97 | } |
98 | /////////////////////////////////////////////////////////////////////// | 98 | /////////////////////////////////////////////////////////////////////// |
99 | this.exportJSON = function() | ||
100 | { | ||
101 | var jObj = | ||
102 | { | ||
103 | 'material' : this.getShaderName(), | ||
104 | 'name' : this.getName(), | ||
105 | 'color' : this._propValues["color"] | ||
106 | }; | ||
107 | |||
108 | return jObj; | ||
109 | } | ||
110 | |||
111 | this.importJSON = function( jObj ) | ||
112 | { | ||
113 | if (this.getShaderName() != jObj.material) throw new Error( "ill-formed material" ); | ||
114 | this.setName( jObj.name ); | ||
115 | |||
116 | try | ||
117 | { | ||
118 | var color = jObj.color; | ||
119 | this.setProperty( "color", color); | ||
120 | } | ||
121 | catch (e) | ||
122 | { | ||
123 | throw new Error( "could not import material: " + jObj ); | ||
124 | } | ||
125 | } | ||
99 | 126 | ||
100 | this.export = function() | 127 | this.export = function() |
101 | { | 128 | { |