coco2dゲームでは、更新関数は1/60秒ごとに呼び出されます。
this.scheduleUpdate();
update: function (dt) { }
スコアラベルは
var scoreLabel = cc.LabelTTF.create("0", "fantasy", 20, cc.size(0, 0), cc.TEXT_ALIGNMENT_LEFT);
scoreLabel.setPosition(cc.p(winSize.width - 80, winSize.height));
scoreLabel.schedule(function () {
var showingScore = parseInt(scoreLabel.getString());
if (showingScore < b2.getUserScore()) {
scoreLabel.setString((showingScore + 5)
.toString());
}
});
this.addChild(scoreLabel, 5);
scoreLabelはどのくらいの頻度で更新されますか?scoreLabelの2秒ごとに更新するタイマーをどのように設定しますか?