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

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

371. 动画挂点(JavaScript-3D基础(JS)-LayaAir3D之Animator动画) [ 76%]

...SceneMonkey/Conventional/SceneMonkey.ls",Laya.Handler.create(this,function(res){ Laya.stage.addChild(res); //用于挂点的精灵 var box = new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1,1,1)); var material = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/layabox.png", Laya.Handler.c...

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

372. 动画-SWF动画 [ 75%]

...; } createMovieClip() { const MovieClip = Laya.MovieClip; const SWFPath = "res/swf/dragon.swf"; let MCWidth = 318, MCHeight = 406; let mc = new MovieClip(); Laya.stage.addChild(mc); mc.x = (Laya.stage.width - MCWidth) / 2; mc.y = (Laya.stage.height - MCHeight) / 2; mc.load(SWFPath); } } new Animatio...

来源: Laya2.0_示例 发布时间: 20241118

373. 这是图文混排谷歌浏览器查看正常打包后的APP文字消失表情变大 [ 75%]

...情变大 class CAffiche { private textfiled:Laya.HTMLDivElement; public Reset():void { gRoomView.chatBox.innerHTML = ""; gRoomView.chatBox.height = 1; } public SysSay(txt:string):void { this.AddChat(0, "法官", txt); } public PlayerSay(msg:any):void { this.AddChat(msg['from_client_seatsno'], msg['...

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

374. 打包之后TEXT可以显示但是 加载其他资源时白屏 [ 75%]

....stage.screenMode = "horizontal";  var asset = []; asset.push({ url: ["../res/image/bg.png"], type: Laya.Loader.IMAGE }); Laya.loader.load(asset,Laya.Handler.create(this,graphicsImg)); function graphicsImg(){ var s = new laya.display.Sprite(); s.graphics.drawTexture(Laya.loader.getRes("../res/image...

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

375. 骨骼动画进阶(JavaScript-2D进阶篇(JS)-动画进阶) [ 75%]

...t.on(Laya.Event.ERROR,this,onError); //加载动画文件 templet.loadAni("res/spine/goblins/goblins.sk"); function onError() { console.log("parse error"); } function parseComplete() { //创建第一个动画 var skeleton0; //从动画模板创建动画播放对象 skeleton0=templet.buildArmature(0)...

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

376. 粒子系统-燃烧大地 [ 75%]

...e, false); var particleSprite3D = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/particle/ETF_Burning_Ground.lh"));class Particle_BurningGround { constructor() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat....

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

377. 粒子系统-永恒之光 [ 75%]

...e, false); var particleSprite3D = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/particle/ETF_Eternal_Light.lh"));class Particle_EternalLight { constructor() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.sh...

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

378. 动画挂点(ActionScript-3D基础(AS3)-LayaAir3D之Animator动画) [ 75%]

...cene_SceneMonkey/Conventional/SceneMonkey.ls",Handler.create(this,function(res:Scene3D):void{ Laya.stage.addChild(res); //用于挂点的精灵 var box: MeshSprite3D = new MeshSprite3D(PrimitiveMesh.createBox(1,1,1)); var material: BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.load("res/l...

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

379. drawToTexture 绘制函数不工作呢 [ 75%]

...QZONE 微信 宁远 赞同来自:         let tex = Laya.loader.getRes("res/atlas/test.png");         let img = new Laya.Sprite();         img.size(100,100);         img.x = 400;         img.y = 0;         img.graphics.drawTexture(tex,0,0,100,100);  ...

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

380. 微信小游戏分包实战(JavaScript-小游戏适配文档-微信小游戏) [ 75%]

...age({ name: 'stage1', // name 可以填 name 或者 root success: function(res) { // 分包加载成功后通过 success 回调 }, fail: function(res) { // 分包加载失败通过 fail 回调 } }) ``` 加载成功的同时,wx.loadSubpackage 会返回一个 [LoadSubpackageTask](https://developers....

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