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

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

561. 如何清理预加载的图集资源??? [ 61%]

...集资源??? 通过 Laya.loader.load("res/atlas/公告.json", Laya.Handler.create(null, onLoad), null, Laya.Loader.ATLAS); 这样加载的图集资源怎么清除掉??? 2018-01-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...

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

562. sprite.loadImage神奇的事情。 [ 61%]

...is.player_head.loadImage(playerInfo.head_url,0,0,playerHeadWH,playerHeadWH,Handler.create(this,function(){ alert('load done'); }) 在微信iphone 6plus里,死活不进这个回调。 在PC浏览器里调试没有任何问题。 已经确认图片地址没有任何问题 2017-05-22 添加评论 免...

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

563. Laya.Tween.to [ 61%]

...een.to(this.arrowImg, {"rotation": destination}, 4000, Laya.Ease.cubicOut, Handler.create(this, ()=> { })); 如何控制Laya.Ease.cubicOut的速度 2018-05-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 w111...

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

564. 3D网格添加刚体后设置欧拉角出现位置错误 [ 61%]

...         Laya.Texture2D.load("res/threeDimen/Physics/rocks.jpg", Laya.Handler.create(this, function (tex) {             this.mat1.albedoTexture = tex;         }));         //平面加载         let plane = this.scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createPlan...

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

565. /*[COMPILER OPTIONS:ForcedCompile]*/ 和/*[COMPILER OPTIONS:Normal]*/ 的区别是什么? 该标签放在包头和类头上面区别又是什么? [ 61%]

...? 真机调试报错:LayaPlayer不支持的标签</SCRIPT> Laya.Handler.create和new Laya.Handler有啥区别 Dialog和View用destroy和Laya.stage.removeChild有什么区别? GradientDataNumber warning是什么 2.10.0版本中代码编译器模式下为什么会自动打开Visual Studio Co...

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

566. 材质动画的使用(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 61%]

....load("res/threeDimen/scene/materialScene/Conventional/layaScene.ls", Laya.Handler.create(this, function(scene) { Laya.stage.addChild(scene); var camera = scene.getChildByName("Main Camera") as Laya.Camera; camera.addComponent(CameraMoveScript); })); ```

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

567. runTime使用(ActionScript-IDE篇(AS3)-组件化开发相关) [ 61%]

...a.net.AtlasInfoManager; import laya.net.ResourceVersion; import laya.utils.Handler; import laya.utils.Stat; import laya.utils.Utils; import laya.d3.core.particleShuriKen.module.StartFrame; import laya.display.Sprite; import ui.BGPageUI; import ui.MonkeyPageUI; public class Main { public function Mai...

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

568. TiledMap.getLayerObject [ 61%]

...ctangle(0,0,320,160); tMap.createMap("res/TileMap/Test.json",viewRect,Laya.Handler.create(this,onCreateMap)); var point =0; function onCreateMap(){ this.role = tMap.getLayerObject("role","player"); console.log(this.role.x,this.role.y); }       附件 : --> 2017-11-24 添加评论 免费帖 --> ...

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

569. 图片使用pivotX参数后,再对图片添加遮罩会出现效果不对。 [ 61%]

...   var Stage = Laya.Stage;     var Browser = Laya.Browser;     var Handler = Laya.Handler;     var WebGL = Laya.WebGL;     var maskSp;     var bg2;     (function()     {         // 不支持WebGL时自动切换至Canvas         Laya.init(1136, 640, WebGL);     ...

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

570. tiledMap问题,getTileProperties获取地图属性不能获取到 [ 61%]

...iledMap; constructor(){ super(); Laya.loader.create(this.MAP_URL, new Laya.Handler(this, this.onComplete)) }  private onComplete(){ this.map = new Laya.TiledMap(); this.map.createMap(this.MAP_URL, new Laya.Rectangle(0,0,Laya.stage.width, Laya.stage.height), new Laya.Handler(this, this.onMap)) }  p...

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