文件名称:Grid2D:帮助管理二维数组的Javascript库
文件大小:11KB
文件格式:ZIP
更新时间:2024-07-25 17:31:37
JavaScript
网格2D 帮助管理二维数组的 Javascript 库。 最有用的功能: 网格中的每个单元格都包含对左/右/上/下单元格的引用 能够在网格的拼接处调用函数(某个部分) 旨在帮助管理 2d 游戏中的 Tilemap 系统 例子 来自一个小(循环)程序世界生成器的小样本,它有帮助 var grid = new Grid2D({w: 5, h: 5}); grid.each(function(cell) { var tileType = Math.floor(Math.random()*3); cell.set( tileType ); }); console.log("Map size", grid.size()); // Expand the grid to double the size and scale all cells var n
【文件预览】:
Grid2D-master
----Grid2D.js(8KB)
----Grid2D.min.js(2KB)
----LICENSE(18KB)
----README.md(2KB)