JetPre.js 242 B

12345678910
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. m_atlas:cc.SpriteAtlas,
  5. },
  6. SetJet:function(value){
  7. this.node.getComponent(cc.Sprite).spriteFrame = this.m_atlas.getSpriteFrame(''+value);
  8. },
  9. });