• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 919 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0047 秒)

881. ProgressBar属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 49%]

....05; } /***进度条数据改变回调***/ private function onChange(value:Number):void { trace("进度:" + Math.floor(value * 100) + "%"); } } } ```

来源: Laya2.0_文档 发布时间: 20210715

882. httpRequest send返回Request failed Status:0 [ 48%]

...URL, id, data) { // private completeHandler(data: Object, URL: string, id: number): void { //加载完成返回的data是arraybuffer; //......这里处理我们加密的图片数据,假设我们的图片加密数据是在图片的前面写入了四个字节的数据 //......解密逻辑开始处...

来源: Laya_社区 发布时间: 20180629

883. 2D物理-仿生机器人 [ 48%]

...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

884. 使用方向键 控制精灵在格子中移动 [ 47%]

... 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

885. 3D中如何限制角色的行走区域? [ 46%]

...       角色行走时获取高度:               var mheight:Number = terrainSprite.getHeight(x, z);               //mheight即为当前角色所在位置高度                        if (isNaN(mheight))                  //非数字,则走到不走区域...

来源: Laya_社区 发布时间: 20170505

886. 微信小游戏提审后,提示说代码侵权 [ 46%]

...; 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

887. 面板容器组件 · LayaAir3.0文档 · LAYABOX [ 46%]

...建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

888. 发现TimeLine的一些问题,像是BUG [ 45%]

...加缓动的函数 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

889. SCALE_FIXED_WIDTH适配屏幕的问题 [ 44%]

...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

890. VScrollBar属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 44%]

...60); } /***滚动条位置变化回调***/ private function onChange(value:Number):void { promptText.text= "滚动条的位置: value=" + value; } } } ```

来源: Laya2.0_文档 发布时间: 20210715