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

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

501. List 组件做的手风琴Demo [ 46%]

...ld(list);         list.array =this.arr;         list.renderHandler =new Laya.Handler(this,this.updateItem);         this.listArr.push(list); //------------------------------------------------------------------------------ updateItem(cell:Item,index:number){          ...

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

502. 位图字体的制作与使(TypeScript-LayaAir基础篇(TS)-文本) [ 46%]

...pFont = new Laya.BitmapFont(); bitmapFont.loadFont("res/vvv.fnt", new Laya.Handler(this, this.onFontLoaded, [bitmapFont])); } /** * 位图字体加载完成后的回调方法 * @param bitmapFont 实例后的位图字体对象 */ onFontLoaded(bitmapFont: Laya.BitmapFont): void { //如果采系统...

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

503. 3d显示对象克隆体超出舞台不再显示的bug2.1.0.btea1 [ 45%]

....Vector3(1, -1, 0)); Laya.Sprite3D.load("h5/LayaMonkey/LayaMonkey.lh",Laya.Handler.create(this,this.ok)); } ok(sp:Laya.Sprite3D):void{ //得到原始Sprite3D this.sp = sp; this.scene3d.addChild(sp); //克隆Sprite3D this.sp2 = Laya.Sprite3D.instantiate(this.sp,null,false); //错开点位置 this.sp2...

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

504. 我浏览在线文档 关于共享材质和自身材质的代码 貌似没有什么不同? [ 45%]

... Laya.loader.create("LayaScene_01/Assets/model/loveScene_jianzhu.lm",Laya.Handler.create(this,this.onCreateComplete)); //预加载完成后回调 private onCreateComplete():void { //创建预加载的模型网格 var mesh:Laya.Mesh = Laya.loader.getRes("LayaScene_01/Assets/model/loveScene_jianzhu.lm...

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

505. discard property,please use transform's property instead [ 45%]

... "res/plane.lh",             "res/LayaMonkey.lh"         ], Laya.Handler.create(this, onComplete));         var _quaternion = new Laya.Quaternion();         Laya.timer.frameLoop(1, null, function () {             Laya.Quaternion.createFromYawPitchRoll(0.025, 0, 0, _quaternion...

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

506. 3D模型旋转定位问题 [ 45%]

...是使Laya.loader.create("model/build/warehouse1/warehouse1.lh", Laya.Handler.create(this, onComplete)); function onComplete() { //仓库原型 warehouse1 = Laya.Sprite3D.load("model/build/warehouse1/warehouse1.lh"); scene.addChild(warehouse1); warehouse1.transform.rotate(new Laya.Vector3(0, 90, ...

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

507. 和原生Dom交互 · LayaAir3.0文档 · LAYABOX [ 45%]

...x.com/"; this.qrcode.makeCode(url); Laya.stage.once("click",this,this.clickHandler); this.qrcodeSp = new Laya.Sprite(); Laya.stage.addChild(this.qrcodeSp); 编译运行上面的代码,然后点击舞台可以看到,二维码已经显示到了舞台上,可以手机扫下,发现手机已经...

来源: Laya3.0_文档 发布时间: 20241014

508. laya3D导入动画材质在安卓手机和电脑上显示正常,在苹果手机显示异常 [ 44%]

...ck/Conventional/puzzleB.lh" ]; Laya.loader.create(this.resource, Laya.Handler.create(this, this.onLoadFinish)); } private onLoadFinish() { //初始化场景 this.scene = new Laya.Scene3D(); Laya.stage.addChild(this.scene); this.scene.ambientColor = new Laya.Vector3(0.5, 0.5, 0.5); //初始化...

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

509. 动效模板(JavaScript-LayaAir基础篇(JS)-动画基础) [ 43%]

...UI界面添加到舞台上 Laya.loader.load("./res/atlas/comp.atlas",Laya.Handler.create(this,onLoaded)); function onLoaded(){ //实例化导出的UI类 var efc = new ui.TestPUI(); //添加到舞台 Laya.stage.addChild(efc); } ``` 运行后,按钮被按下时,动画效果如动图11所示: ![1...

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

510. 二进制图片(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 43%]

...ar xhr = new Laya.HttpRequest(); xhr.once(Laya.Event.COMPLETE,this,completeHandler); xhr.once(Laya.Event.ERROR,this,errorHandler); xhr.send("res/monkey2.png","","get","arraybuffer"); function completeHandler(data){ //加载完成返回的data是arraybuffer; //.......这里处理我们加密的图...

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