diff options
author | hwc487 | 2012-03-30 06:23:53 -0700 |
---|---|---|
committer | hwc487 | 2012-03-30 06:23:53 -0700 |
commit | 947bad893335e1023bcbe177ff8db454c27c4bf8 (patch) | |
tree | 8e4ab2a709e638f21b50f55b6e1842699b46accc /js/lib/rdge/materials/fly-material.js | |
parent | 2ab7fbef0df37f0c2bb6a4447f03993b9d50b5d0 (diff) | |
download | ninja-947bad893335e1023bcbe177ff8db454c27c4bf8.tar.gz |
converted materials to new texture structure
Diffstat (limited to 'js/lib/rdge/materials/fly-material.js')
-rw-r--r-- | js/lib/rdge/materials/fly-material.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/js/lib/rdge/materials/fly-material.js b/js/lib/rdge/materials/fly-material.js index bd92ecd8..81cd1522 100644 --- a/js/lib/rdge/materials/fly-material.js +++ b/js/lib/rdge/materials/fly-material.js | |||
@@ -5,6 +5,7 @@ | |||
5 | </copyright> */ | 5 | </copyright> */ |
6 | 6 | ||
7 | var PulseMaterial = require("js/lib/rdge/materials/pulse-material").PulseMaterial; | 7 | var PulseMaterial = require("js/lib/rdge/materials/pulse-material").PulseMaterial; |
8 | var Texture = require("js/lib/rdge/texture").Texture; | ||
8 | 9 | ||
9 | var FlyMaterial = function FlyMaterial() { | 10 | var FlyMaterial = function FlyMaterial() { |
10 | /////////////////////////////////////////////////////////////////////// | 11 | /////////////////////////////////////////////////////////////////////// |
@@ -61,6 +62,10 @@ var FlyMaterial = function FlyMaterial() { | |||
61 | this._shader['default'].u_time.set( [this._time] ); | 62 | this._shader['default'].u_time.set( [this._time] ); |
62 | } | 63 | } |
63 | 64 | ||
65 | // set up the texture | ||
66 | var texMapName = this._propValues[this._propNames[0]]; | ||
67 | this._glTex = new Texture( world, texMapName ); | ||
68 | |||
64 | // set the shader values in the shader | 69 | // set the shader values in the shader |
65 | this.updateTexture(); | 70 | this.updateTexture(); |
66 | this.setResolution( [world.getViewportWidth(),world.getViewportHeight()] ); | 71 | this.setResolution( [world.getViewportWidth(),world.getViewportHeight()] ); |