大约有 919 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0047 秒)
Laya3.0_api(529) Laya_社区(122) Laya2.0_api(101) laya_api(89) Laya3.0_文档(36) Laya2.0_文档(26) Laya2.0_示例(10) Laya_示例(6)
....05; } /***进度条数据改变回调***/ private function onChange(value:Number):void { trace("进度:" + Math.floor(value * 100) + "%"); } } } ```
来源: Laya2.0_文档 发布时间: 20210715
...URL, id, data) { // private completeHandler(data: Object, URL: string, id: number): void { //加载完成返回的data是arraybuffer; //......这里处理我们加密的图片数据,假设我们的图片加密数据是在图片的前面写入了四个字节的数据 //......解密逻辑开始处...
来源: Laya_社区 发布时间: 20180629
...bVV(p6, p4)).concat(B2Math.SubVV(p5, p4)).join(","); } const dampingRatio: number = 0.5; const frequencyHz: number = 10.0; let distanceJoint1: DistanceJoint = new DistanceJoint(); distanceJoint1.otherBody = legBody2; distanceJoint1.selfAnchor = p2; distanceJoint1.otherAnchor = B2Math.SubVV(p5, p4); ...
来源: Laya2.0_示例 发布时间: 20241119
... Laya.timer.frameLoop(1,this,this.loop);事件响应 onkeyup(e){ for(let i:number = 0;i<this.keyList.length;i++){ if(this.keyList[i]==e.keyCode){ this.keyList.splice(i,1); break; } } } onkeydown(e){ if(this.keyList.indexOf(e.keyCode)<0){ this.keyList.push(e.keyCode); } } loop(){ if(this.sp.x!=...
来源: Laya_社区 发布时间: 20171125
... 角色行走时获取高度: var mheight:Number = terrainSprite.getHeight(x, z); //mheight即为当前角色所在位置高度 if (isNaN(mheight)) //非数字,则走到不走区域...
来源: Laya_社区 发布时间: 20170505
...; let name = str.substr(len, str.length - len - 1); console.log(name); let number = Math.floor(Math.random() * 9999); let name2; let lastIndex = name.lastIndexOf("_"); if(lastIndex == -1){ name2 = name + "_" + number; }else{ name2 = name.substr(0, lastIndex) + "_" + number; } let name2s = name2 + "(...
来源: Laya_社区 发布时间: 20190613
...建Image组件,作为Panel的子节点 let img: Laya.Image; for (var i: number = 0; i < 4; i++) { // 创建4个Image,水平排列 img = new Laya.Image("atlas/comp/image.png"); img.x = i * 512; panel.addChild(img); } } } 效果如下动图所示: (动图2-1) Copyright ©Layabox 2022 all ...
来源: Laya3.0_文档 发布时间: 20241014
...加缓动的函数 private function addTime(timeLine:TimeLine,sp:Sprite,yy:Number):void { timeLine=new TimeLine(); timeLine.to(sp, {y: yy}, 3000, Ease.linearIn); timeLine.once(Event.COMPLETE,this, complete,[sp,timeLine]); timeLine.play(0,false); } //清理缓动的函数 private function clearTime(t...
来源: Laya_社区 发布时间: 20161207
...s Main { private _roomId = 0; constructor(roomId?: number) { this._roomId = roomId; Laya.init(750, 1218, Laya.WebGL); Laya.Browser.document.title = 'GG游戏; if (Laya.Browser.onPC) { ...
来源: Laya_社区 发布时间: 20181213
...60); } /***滚动条位置变化回调***/ private function onChange(value:Number):void { promptText.text= "滚动条的位置: value=" + value; } } } ```
来源: Laya2.0_文档 发布时间: 20210715