diff options
author | Jonathan Duran | 2012-03-29 07:27:27 -0700 |
---|---|---|
committer | Jonathan Duran | 2012-03-29 07:27:27 -0700 |
commit | ab730848419a0b72c4c2747a3c928f2c8cc763e7 (patch) | |
tree | 6b48b82604e194016ca048ad912f8015de719999 /js/lib/rdge/materials/twist-vert-material.js | |
parent | 06f247d881f4cfd790d635c6e310ae7f97724339 (diff) | |
parent | 3fd2cdb59027b3f973b9165db9db4fdd22026941 (diff) | |
download | ninja-ab730848419a0b72c4c2747a3c928f2c8cc763e7.tar.gz |
Merge branch 'refs/heads/NINJAmaster' into TimelineUber
Diffstat (limited to 'js/lib/rdge/materials/twist-vert-material.js')
-rw-r--r-- | js/lib/rdge/materials/twist-vert-material.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/js/lib/rdge/materials/twist-vert-material.js b/js/lib/rdge/materials/twist-vert-material.js index 05172a1b..2d2cdcc5 100644 --- a/js/lib/rdge/materials/twist-vert-material.js +++ b/js/lib/rdge/materials/twist-vert-material.js | |||
@@ -102,6 +102,34 @@ function TwistVertMaterial() | |||
102 | } | 102 | } |
103 | /////////////////////////////////////////////////////////////////////// | 103 | /////////////////////////////////////////////////////////////////////// |
104 | 104 | ||
105 | this.exportJSON = function() | ||
106 | { | ||
107 | var jObj = | ||
108 | { | ||
109 | 'material' : this.getShaderName(), | ||
110 | 'name' : this.getName(), | ||
111 | 'color' : this._propValues["color"] | ||
112 | }; | ||
113 | |||
114 | return jObj; | ||
115 | } | ||
116 | |||
117 | this.importJSON = function( jObj ) | ||
118 | { | ||
119 | if (this.getShaderName() != jObj.material) throw new Error( "ill-formed material" ); | ||
120 | this.setName( jObj.name ); | ||
121 | |||
122 | try | ||
123 | { | ||
124 | var color = jObj.color; | ||
125 | this.setProperty( "color", color); | ||
126 | } | ||
127 | catch (e) | ||
128 | { | ||
129 | throw new Error( "could not import material: " + importStr ); | ||
130 | } | ||
131 | } | ||
132 | |||
105 | this.export = function() | 133 | this.export = function() |
106 | { | 134 | { |
107 | // this function should be overridden by subclasses | 135 | // this function should be overridden by subclasses |