2d对象池

getCoinPool() {
        if (this.coinPools.length <= 0) {
            let coin = new Laya.Image();
            coin.skin = "res/game/icon_jinbi.png";
            return coin;
        } else {
            return this.coinPools.pop();
        }
    }

    pushCoinPool(coin: Laya.Image) {
        this.coinPools.push(coin);
    }

    getLinePool() {
        if (this.linePools.length <= 0) {
            let coinAni = this.coinLineAni.clone();
            return coinAni;
        } else {
            return this.linePools.pop();
        }
    }

    pushLinePool(coinAni: Laya.Animation) {
        this.linePools.push(coinAni);
    }
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。