diff options
author | hwc487 | 2012-03-07 17:18:38 -0800 |
---|---|---|
committer | hwc487 | 2012-03-07 17:18:38 -0800 |
commit | 9e812f35ffa751e9215c5427c0c44005bd357924 (patch) | |
tree | aa26d7d4812eace4741cdc994eaf66c81ccadb43 /js/lib/rdge/runtime/RuntimeGeomObj.js | |
parent | 818582d389f504c915be0c9052fafa33e3e76c92 (diff) | |
download | ninja-9e812f35ffa751e9215c5427c0c44005bd357924.tar.gz |
Fixed a few problems with Plasma material.
Diffstat (limited to 'js/lib/rdge/runtime/RuntimeGeomObj.js')
-rw-r--r-- | js/lib/rdge/runtime/RuntimeGeomObj.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/lib/rdge/runtime/RuntimeGeomObj.js b/js/lib/rdge/runtime/RuntimeGeomObj.js index 5b212dce..93d4d9a1 100644 --- a/js/lib/rdge/runtime/RuntimeGeomObj.js +++ b/js/lib/rdge/runtime/RuntimeGeomObj.js | |||
@@ -11,7 +11,8 @@ var RuntimeFlatMaterial = RuntimeMaterial.RuntimeFlatMaterial, | |||
11 | RuntimeLinearGradientMaterial = RuntimeMaterial.RuntimeLinearGradientMaterial, | 11 | RuntimeLinearGradientMaterial = RuntimeMaterial.RuntimeLinearGradientMaterial, |
12 | RuntimeBumpMetalMaterial = RuntimeMaterial.RuntimeBumpMetalMaterial, | 12 | RuntimeBumpMetalMaterial = RuntimeMaterial.RuntimeBumpMetalMaterial, |
13 | RuntimeUberMaterial = RuntimeMaterial.RuntimeUberMaterial, | 13 | RuntimeUberMaterial = RuntimeMaterial.RuntimeUberMaterial, |
14 | RuntimePulseMaterial = RuntimeMaterial.RuntimePulseMaterial; | 14 | RuntimePulseMaterial = RuntimeMaterial.RuntimePulseMaterial, |
15 | RuntimePlasmaMaterial = RuntimeMaterial.RuntimePlasmaMaterial; | ||
15 | 16 | ||
16 | 17 | ||
17 | 18 | ||
@@ -94,6 +95,7 @@ var RuntimeGeomObj = function RuntimeGeomObj() | |||
94 | case "linearGradient": mat = new RuntimeLinearGradientMaterial(); break; | 95 | case "linearGradient": mat = new RuntimeLinearGradientMaterial(); break; |
95 | case "bumpMetal": mat = new RuntimeBumpMetalMaterial(); break; | 96 | case "bumpMetal": mat = new RuntimeBumpMetalMaterial(); break; |
96 | case "uber": mat = new RuntimeUberMaterial(); break; | 97 | case "uber": mat = new RuntimeUberMaterial(); break; |
98 | case "plasma": mat = new RuntimePlasmaMaterial(); break; | ||
97 | 99 | ||
98 | case "deform": | 100 | case "deform": |
99 | case "water": | 101 | case "water": |