大约有 202 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0048 秒)
...么会出现为null的情况? 代码如下: class main{ constructor(){ MapManager.getInstance().LoadMapResource(); } } new main(); class MapManager { private static s_instance = null; public static getInstance():MapManager { if(null==this.s_instance) { this.s_instance=new MapManager(); this.s_in...
来源: Laya_社区 发布时间: 20171124
新版IDE2.0引擎代码里(AS版)自带的键值对Map容器 注释了delete函数 那我怎么去删除Map里的元素?? 我把注释打开,自己做了一个例子 发现delete函数确实会删除Map里的键值对,但是Map的length没有减少 代码在附件 我是在测Map删...
来源: Laya_社区 发布时间: 20190125
重复背景,全方向地图拖动Demo UI创建4个image var分别: map0,map1,map2,map3 背景图宽高 1800 class WorldPage extends ui.WorldPageUI{ constructor (x,y) { super() this.maxX = 149850 this.maxY = 97500 this.offsetX = x * 150 this.offsetY = y * 150 this.downMouseX = 0 this.downMouseY ...
来源: Laya_社区 发布时间: 20181220
关于下拉列表的选择触发 this.small_map.selectHandler = new Laya.Handler(this, onSelect_small); this.big_map.selectHandler = new Laya.Handler(this, onSelect_big); function onSelect_small(e) { Laya.big_switch = 0 Laya.maptype = "small" this.now_map.text = "当前地图:" + this.small_map....
来源: Laya_社区 发布时间: 20180719
...口处获取对象的子对象 在游戏入口实例化玩一个加载TiledMap地图的类(loadMap)后,想通过该对象获取到被加载地图的一个MapLayer层。也就是说,加载TiledMap和获取该地图的MapLayer(某一层)都放到一个类里面,只要通过实例化的对象...
来源: Laya_社区 发布时间: 20170605
...写下了laya的故事。 工具及涉及:layaide+typescript+pomelo+tiledmap+其他工具 项目类型:mmorpg 人员:zom(客户端) + arrow(服务端) 进度:单机体验状态,实现 摇杆,切图,释放技能(由于人员和精力有限还需要处理公司正常工作,...
来源: Laya_社区 发布时间: 20161109
...的,真是服LAYA,哎,搞了我一晚上,真心不行 this.small_map.selectHandler = new Laya.Handler(this, onSelect_small); this.big_map.selectHandler = new Laya.Handler(this, onSelect_big); function onSelect_small(e) { Laya.big_switch = 0 Laya.maptype = "small" this.now_map.text = "当前...
来源: Laya_社区 发布时间: 20180719
关于下拉列表的选择触发 this.small_map.selectHandler = new Laya.Handler(this, onSelect_small); this.big_map.selectHandler = new Laya.Handler(this, onSelect_big); function onSelect_small(e) { Laya.big_switch = 0 Laya.maptype = "small" this.now_map.text = "当前地图:" + this.small_map....
来源: Laya_社区 发布时间: 20180719
项目js.map如何生成 我参考http://ask.layabox.com/question/959 中,这个文件如何生成的js.map launch.json 中配置了 "sourceMaps": true, 怎么没生成呀 我是想利用sourceMaps个来定位压缩后的js报错后能对应到未压缩的js中行号 2017-06-09 添...
来源: Laya_社区 发布时间: 20170609
tiledMap问题,getTileProperties获取地图属性不能获取到 IDE:2.0.0bate5.1 tiled版本:2019.02.10 调用getTileProperties返回结果一直为null,看了源码发现不管传入什么参数都会返回为null。 因为_tileProperties初始化的完成后就为{0:undefined}。 /** ...
来源: Laya_社区 发布时间: 20190218