SkinMgr.getSkin (proto, name) |
retrieve a skin from the skinmanager collection
|
Sourcecode in SkinMgr/objectFunctions.js:
1: function getSkin(proto, name) { 2: if (!this.get(proto)) 3: return null; 4: return this.get(proto).get(name); 5: } |