// 游戏开始运行
create: function(){
this.fieldArray = [];
this.fieldGroup = this.add.group();
this.score = 0;//4096 增加得分
this.bestScore = localStorage.getItem(gameOptions.localStorageName) == null ? 0 : localStorage.getItem(gameOptions.localStorageName);
for(var i = 0; i < 4; i++){
this.fieldArray[i] = [];
for(var j = 0; j < 4; j++){
var spot = this.add.sprite(this.tileDestination(j, COL), this.tileDestination(i, ROW), "spot")
var tile = this.add.sprite(this.tileDestination(j, COL), this.tileDestination(i, ROW), "tiles");
tile.alpha = 0;
tile.visible = 0;
this.fieldGroup.add(tile);
this.fieldArray[i][j] = {
tileValue: 0,
tileSprite: tile,
canUpgrade: true
}
}
}
var restartButton = this.add.sprite(this.tileDestination(3, COL), this.tileDestination(0, ROW) - 200, "restart");
restartButton.setInteractive();
restartButton.on("pointerdown", function(){
this.scene.start("PlayGame");
}, this)
this.add.sprite(this.tileDestination(1, COL), this.tileDestin
纯前端小游戏,4096小游戏,有音效,Html5,可学习使用
不太会写2024-07-19 16:57
相关推荐
Red Red15 分钟前
网安基础知识|IDS入侵检测系统|IPS入侵防御系统|堡垒机|VPN|EDR|CC防御|云安全-VDC/VPC|安全服务IT女孩儿1 小时前
CSS查缺补漏(补充上一条)吃杠碰小鸡2 小时前
commitlint校验git提交信息Natural_yz2 小时前
大数据学习17之Spark-Coreqq_172805592 小时前
RUST学习教程-安装教程一只小小汤圆2 小时前
opencascade源码学习之BRepOffsetAPI包 -BRepOffsetAPI_DraftAngle虾球xz2 小时前
游戏引擎学习第20天我爱李星璇2 小时前
HTML常用表格与标签LateBloomer7772 小时前
FreeRTOS——信号量疯狂的沙粒3 小时前
如何在Vue项目中应用TypeScript?应该注意那些点?