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

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

271. 设置cacheAs = bitmap时, drawCanvas 的一个bug [ 79%]

...: HTMLCanvas, x: number, y: number, width: number, height: number): void { if (!canvas) return; var src: Context = canvas.context as Context; var submit: ISubmit; if (src._targets) { //生成渲染结果到src._targets上 /* this._submits[this._submits._length++] = SubmitCanvas.create(src, 0, null);...

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

272. 深入理解LayaAir引擎架构和实现原理(三)引擎渲染主循环与AOP介入控制 [ 79%]

...ame = true; try { var layaGame = Laya; } catch (e) { isLayaGame = false; } if (isLayaGame) { // laya 暂停状态 window.layaStatePause = false; // laya 需要单步次数 window.layaStepCount = 0; let rawRequestAnimationFrame = window.requestAnimationFrame; let renderRec = null; function loopCheck(...

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

273. 动画多层混合(ActionScript-3D基础(AS3)-LayaAir3D之Animator动画) [ 79%]

...换动作的按钮监听事件中播放动作 switch (blendType) { case 0: if (motionCross) { //在当前动画状态和目标动画状态之间进行融合过渡播放 //第三个参数为layerIndex 层索引使用混合模式,混合了0层和1层的动画 animator.crossFade(motions[motionIndex],...

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

274. LAYABOX游戏实时语音之APP版本 [ 79%]

...目的构建与SDK的导入都完成了,现在开始敲代码 AndroidManifest.xml<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.layabox.game" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion...

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

275. 微信小游戏最小化以后,引擎库里面_parseLines报错 [ 79%]

...化期间创建,则_parseLines必挂,, _parseLines函数li里面的 if (Render.isConchApp){                 measureResult=/*__JS__ */window.conchTextCanvas.measureText(this._testWord);                 }else {                 measureResult=Browser...

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

276. 3D粒子特效初始化卡顿 [ 79%]

...EFFECT_PATH_3D+url; var itemComplete:Sprite3D = Laya.loader.getRes(_path); if(itemComplete == null || itemComplete.loaded == false){ var groupName:String = null; if(isGroup == true){ groupName = url; } Laya.loader.create(_path, Handler.create(this,OnComplete,null),null,null,null,1,true,groupName); }...

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

277. zip更新模式缓存是怎么读取的?? [ 79%]

...ll); return false; }, //完成回调 (curlret:number,httpret:number)=>{ if(curlret!=0 || httpret<200||httpret>=300){ onEvent('downloadError'); //throw 'download error'; }else{ onEvent('downloadOK'); //let md5 = calcmd5(fs_readFileSync(localfile)); //console.log('md5='+md5); let zip = new Zi...

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

278. Laya多点触控是有开关吗 为什么多点触控没有任何反应 [ 79%]

...     let touchCount = this.scene.input.touchCount();         if (1 === touchCount){             //判断是否为两指触控,撤去一根手指后引发的touchCount===1             if(this.isTwoTouch){                 return;         ...

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

279. 为什么说没有​ playByFrame方法 [ 79%]

为什么说没有​ playByFrame方法 var anifish = fish.addComponent(Laya.SkinAnimations); anifish.templet = Laya.AnimationTemplet.load("fish/denglongyu/denglongyu.lsani"); anifish.player.playByFrame(0,1.0,2147483647,0,30,30);//游动 // anifish.player.playByFrame(0,1.0,2147483647,40,72,30);//...

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

280. 屏幕适配-屏幕适配 [ 79%]

...ction onBoyClick(e) { //点击后小人会放大缩小 var boy = e.target; if (boy.scaleX === 1) { boy.scale(1.2, 1.2); } else { boy.scale(1, 1); } } function onTxtClick(e) { //点击后切换适配模式 e.stopPropagation(); index++; if (index >= modes.length) index = 0; Laya.stage.scaleMode = mode...

来源: Laya_示例 发布时间: 20241119