Siam博客

COCOS 个人踩坑日记

2020-05-22

改变子节点的label内容

this.turnDuration.getChildByName("number").getComponent(cc.Label).string)

动态添加精灵(发牌)

```

/** * 发牌 个人 */ showMyCard(){ let _this = this; for (let index = 0; index < 17; index++) { let node = new cc.Node(“MyCard_”+index); let sprite = node.addComponent(cc.Sprite); // 点击事件 node.on(“mousedown”, function(event){ _this.choosCard(this); event.stopPropagation(); }, node); cc.loader.loadRes(“Img/card”,cc.SpriteFrame,function(err,spriteFrame){ sprite.spriteFrame = spriteFrame; }); node.parent = this.MyArea; } }, /** * 选择/取消选择 卡片 * @param {*} card */ choosCard(card){ if (card.isChoose){ var action = cc.moveTo(0.02, 10, 0); card.runAction(action); card.isChoose = false; }else{ card.isChoose = true; var action = cc.moveTo(0.02, 10, 20); card.runAction(action); } }, ```

本文链接:
版权声明: 本文由 Siam原创发布,转载请遵循《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权
Tags: 前端

扫描二维码,分享此文章