aboutsummaryrefslogtreecommitdiff
path: root/js/lib/rdge/materials/twist-vert-material.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-03-26 15:36:49 -0700
committerJose Antonio Marquez2012-03-26 15:36:49 -0700
commit7bf738bc08f6a24edce30dbc2b101a8cab2d27aa (patch)
treeaf3b114d6a83ae62dfcead8bd61bc62efe0c9516 /js/lib/rdge/materials/twist-vert-material.js
parentd87cded11dcc0faf41a4a3e6b587e5549c0da6df (diff)
parent309dde5a8c4599cef6a1052c1ff9ee1ad8ec5858 (diff)
downloadninja-7bf738bc08f6a24edce30dbc2b101a8cab2d27aa.tar.gz
Merge branch 'refs/heads/Ninja-Internal' into FileIO
Diffstat (limited to 'js/lib/rdge/materials/twist-vert-material.js')
-rw-r--r--js/lib/rdge/materials/twist-vert-material.js28
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