UnlockMatePanel.js 455 B

1234567891011121314151617181920212223
  1. var UnlockMatePanel = cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. Atlas:cc.SpriteAtlas,
  5. Sp:cc.Sprite,
  6. desLbl:cc.RichText,
  7. },
  8. ShowPanel:function(data){
  9. this.Sp.spriteFrame = this.Atlas.getSpriteFrame(data.icon);
  10. this.desLbl.string = "<color=#16a0e8>"+data.des + "</c>";
  11. },
  12. ClosePanel:function () {
  13. this.node.active = false;
  14. },
  15. });
  16. module.exports = UnlockMatePanel;