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

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

581. 位图字体预加载 [ 59%]

...       bitmapFont.loadFont("../../../../res/bitmapFont/test.fnt",new Handler(this,onFontLoaded, [bitmapFont]));         }         private function onFontLoaded(bitmapFont:BitmapFont):void         {             bitmapFont.setSpaceWidth(10);             Text.re...

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

582. scaleMode设为full时怎么pc浏览器跟平板上效果不一样? [ 59%]

... Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.loader.load("assets/bg.jpg", Handler.create(this, loadCompleteHandler)); } private function loadCompleteHandler():void { var bg:Image = new Image("assets/bg.jpg"); Laya.stage.addChild(bg); }这张图在三星平板上可以完整显示出来,为什么...

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

583. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 59%]

...var sp=new Laya.Sprite(); sp.loadImage("res/apes/monkey2.png",0,0,0,0,Laya.Handler.create(this,function() { console.log(sp.width,sp.height); })); Laya.stage.addChild(sp); ``` loadImage在加载完成的回调函数触发之后才可以正确获取宽高。 1. **直接调用size设置:** ```javascr...

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

584. 新版版2d粒子问题?同样的代码,LayaAir IDE 2.1.0版本正常,LayaAir IDE 2.2.0beta2版本报错 [ 59%]

...=> {             Laya.loader.load("HallAni/star.part", Laya.Handler.create(this, (settings) => {                 let Particle2D = Laya.Particle2D;                 // 创建 Particle2D 实例                 let partIns = new Particle2...

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

585. 混淆 JS 后不支持()=>{}的回调? [ 59%]

...声音?是api不支持 还是发生了改变 或者格式问题? Laya.Handler.create 回调 问题状态 最新活动: 2018-04-18 14:32 浏览: 678 关注: 2 人

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

586. 动画不显示 [ 59%]

...件。我把全部源码贴出来吧   package {     import laya.utils.Handler;     import laya.display.Text;     import laya.display.Animation;     import laya.webgl.WebGL;     import laya.media.Sound;     import laya.webgl.shapes.Ellipse;     import laya.display.Stage;    ...

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

587. 加载-销毁Texture使用的图片资源 [ 59%]

...vent; import laya.net.Loader; import laya.utils.Browser; import laya.utils.Handler; import laya.utils.Stat; import laya.webgl.WebGL; public class Loader_ClearTextureRes { private var spBg:Sprite; private var aniFly:Animation; private var btn:Sprite; private var txt:Text; private var isDestroyed:Bool...

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

588. 请问laya的List除了用selectBox,还有什么方式可以自定义列表项选中状态下的表现吗 [ 58%]

...生List之后,重写changeCellState方法来,并且同时配合renderHandler来实现?   2017-03-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 可以参考下:把img换成你...

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

589. 向量做矩阵变换的方法是什么 [ 58%]

...是不是哪里没用对?并不能替换是为什么?? 源代码中Handler中的setTo()方法 对象池的使用方法是不是先new一个类然后在存到对象池 分享:Sprite 转换成3D贴图(Texture2D)的方法,如果有更好的方法,请告诉我。 在js代码中,let 是...

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

590. Clip属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 58%]

... = Laya.Button; import Clip = Laya.Clip; import Image = Laya.Image; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_Clip { private buttonSkin: string = "res/ui/button-7.png"; private clipSkin: string = "res/ui/num0-9.png"; private bgSkin: string = "res/ui/coutDown.png"; pri...

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