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

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

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

...ya.loader.load([{url: "res/atlas/comp.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); } private function onLoaded():void { //实例UI界面 Laya.stage.bgColor="#353535"; sp1=createSprite(50,50);//创建方块1 sp2=createSprite(250,50);//创建方块2 sp3=createSprite(450,50);//创建...

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

712. 无法触发浏览器文件上传框 [ 45%]

...structor() { Laya.init(200, 300); Laya.loader.load(this.skin, Laya.Handler.create(this, () => { this.btn = this.createBtn(this.skin); this.btn.on(Laya.Event.CLICK, this, this.onClick); })); } /** * 创建btn */ private createBtn(skin: string): Laya.Button { let button = new Laya.Button(skin, '上...

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

713. 滤镜的集中实现 [ 45%]

...L); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //原始位图 createImg(200,50); //红色滤镜 creteRedFilter(); //创建发光滤镜位图**/ createGlowFilter(); //创建阴影滤镜位图 createShadeFilter(); //创建糊滤滤镜位图 createBlurFilter();           /**创建位...

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

714. swf在layaairts里播放的问题,播放不了,swf在群文件star.swf [ 44%]

...r.load([{"url":"res/swf/star.swf","type":Laya.Loader.BUFFER}],Laya.Handler.create(this,this.onloadswf)); let loader:Laya.Loader = new Laya.Loader(); let context:Laya.Context = new Laya.Context();         } private onloadswf():void { // console.log("ssss"); // let mc:Laya.MovieClip = Laya.loa...

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

715. Cannot read property 'rayCast' of undefined [ 44%]

...ad("res/scene/LayaScene_webgl_sky/Conventional/webgl_sky.lh", Laya.Handler.create(this, this.onLoadFinish)); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); } onLoadFinish(layaMonkey){ this.layaMonkey=this.scene.addChild(layaMonkey); // Laya.timer.frameLoop(1, this, this.onFrameLoop); } ...

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

716. 在模型有刚体的情况下,怎么才能让模型只围绕一个轴进行旋转 [ 44%]

...prite3D.load("h5/LayaScene_car/Conventional/car.lh",Laya.Handler.create(this,(sp:Laya.Sprite3D)=> { this.car = sp.getChildAt(0).getChildAt(0) as Laya.Sprite3D; this.scene.addChild(this.car); this.rig = (this.car.getComponent(Laya.Rigidbody3D) as Laya.Rigidbody3D) })); 源 • 2019-01-11...

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

717. iOS真机运行报错--- 加载游戏失败,可能由于您的网络不稳定,请退出重进 [ 44%]

...eSweeper6[7091:2932001] Download [ ]:http://stand.alone.version/index.html Creating context 1024, 768, 22018-03-15 11:24:58.270942+0800 MineSweeper6[7091:2932001] curl_easy_perform failed, code=6 src=http://stand.alone.version/index.html 2018-03-15 11:24:58.271059+0800 MineSweeper6[7091:2932001] Dow...

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

718. radioGroup设置labels后,每个radio的icon皮肤无法显示了 [ 44%]

...件: Laya.loader.load("res/atlas/template/QuestionDialog.atlas", Handler.create(null)); 对应的场景代码里: var dialog = new QuestionDialogUI();          Laya.stage.addChild(dialog);          dialog.popup();          dialog.btn_question_dialog_next.on(Laya.Event.CLI...

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

719. 怎么对graphics画出来的图片进行鼠标点击拖动??? [ 44%]

... //这里是我注释掉的代码 //Laya.loader.load(this.ApePath, Handler.create(this, this.setup)); this.setup(); } private setup(): void { this.createApe(); this.showDragRegion(); } private createApe(): void { this.ape = new Sprite(); //this.ape.loadImage(this.ApePath); Laya.stage.addChild(this.a...

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

720. 【简单跑酷--JS版】---Lv.4 添加玩家 [ 44%]

....ATLAS }); //加载图集资源 Laya.loader.load(asset, laya.utils.Handler.create(this, onLoaded), laya.utils.Handler.create(this, onLoading, null, false)); 嗯 加载改好了 我们先来测试一下 图片是否能拿到 我们在onLoaded方法里面 写一点测试代码 如下   function onLoa...

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