大约有 61 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0035 秒)
... * @param value 值。 */ public function set(key:*, value:*):void { var index:int = indexOf(key); if (index >= 0) { _values[index] = value; return; } _keys.push(key); _values.push(value); ++_lenght; } /** * 获取指定对象的键名索引。 * @param key 键名对象。 * @return 键名索引...
来源: Laya_社区 发布时间: 20180619
关于tiledMap getTileProperties方法的index参数 getTileProperties(index:int, id:int, name:String):* 得到tile自定义属性这个我没太看懂index的意思是地图块索引,这个地图块索引是哪里来的? getTileProperties(index:int, id:int, name:String):* 得到tile自定...
来源: Laya_社区 发布时间: 20171229
...tId是什么 getTileProperties () method public function getTileProperties(index:int, id:int, name:String):* 得到tile自定义属性 Parameters index:int — 地图块索引 id:int — 具体的TileSetID name:String — 属性名称 这个api怎么用?tileSetId是什么 2018-01-29 添加评论 ...
来源: Laya_社区 发布时间: 20180129
...ler(this,onMouse); } //鼠标事件添加 private function onMouse(e:Event,index:int):void { //鼠标单击事件触发 if(e.type == Event.CLICK) {//如果点中的是checkBox组件 if((e.target) is CheckBox) { var tempObj:Object = arr[index];//记录当前条目所包含组件的数据信息(避免...
来源: Laya_社区 发布时间: 20170313
... var _oldY:Number; private function onMuseHandler(type:Event,index:int):void { trace("type:" + type.type + "ddd--" + _list.scrollBar.value + "---index:" + index); var curX:Number,curY:Number; if(type.type== "m...
来源: Laya_社区 发布时间: 20171204
...信 a13121527420 - 哇啦哇啦哇啦! 赞同来自: public function set index(value:int):void { _index = value; if (_bitmap && _sources) { this.graphics.clear(); var splitArr:Array = value.to...
来源: Laya_社区 发布时间: 20170601
...Handler(this,onRenderHandler); } private function onRenderHandler(cell:Box,index:int):void { var img:Image=cell.getChildByName("img")as Image; var data:Object=data[index] if(data.isSelect) { img.gray=true; } else { img.gray=false; } } private function onSlectHandler(index:int):void { my_list.setItem...
来源: Laya_社区 发布时间: 20170310
...g.png",txt:"索引:"+i}); } list.array=data; } private function onSelect(index:int):void { trace("你点击的当前索引是:"+index); } private function onRender(cell:Item,index:int):void { cell.setImg(cell.dataSource.src); cell.setLabel(cell.dataSource.txt); } } } import laya.ui.Image; import...
来源: Laya_社区 发布时间: 20170626
...0"); spr.mask = new Sprite(); Laya.stage.frameLoop(1, null, drawMask); var index:int = 0; function drawMask():void { index++; if(index > 72) index = index-72; var angle:int = index*5; spr.mask.graphics.drawPie(0,0,100,0,angle, "#ffffff"); } 2018-05-02 添加评论 免费帖 --> 分享 微博 QZON...
来源: Laya_社区 发布时间: 20180502
... /** * 播放动画。 * @param index 动画索引。 * @param playbackRate 播放速率。 * @param duration 播放时长(0为1次,Number.MAX_VALUE为循环播放)。 * @param playStart 播...
来源: Laya_社区 发布时间: 20170522