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

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

451. graphics绘制报错 [ 56%]

...const path = "./res/apes/monkey2.png"; Laya.loader.load(path, Laya.Handler.create(this, function() { let tex = Laya.loader.getRes(path); let sp = new Laya.Sprite(); Laya.stage.addChild(sp); sp.graphics.drawTriangles( tex, 100, 0, new Float32Array([0,0,1,0,1,1,0,1]), new Float32Array([0,0,1,0,1,1,0,1...

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

452. 设置相机的skyboxMaterial无效 [ 56%]

... //天空盒 Laya.BaseMaterial.load("res/skyBox/skyBox.lmat", Laya.Handler.create(null, function (mat) { camera.skyboxMaterial = mat; // Laya.timer.frameLoop(1, this, function () { // mat.rotation += 0.1; // }); })); skyBox.zip 2018-10-17 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回...

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

453. 加载一个txt文件 getRes出来类型为string 能转换成数组吗 [ 56%]

...为string 能转换成数组吗 Laya.loader.load("res/text.txt", Handler.create(this, onAssetLoaded1), null, Loader.TEXT); var pic1 = Loader.getRes("res/2D特效/text.txt"); console.log(typeof pic1); 输出的类型为string 2017-06-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...

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

454. 关于创建Sprite获取大小 [ 56%]

...果你要单个获取的话 window.Laya.loader.load(value.url, ls.Handler.create(this, function () { _this.graphics.clear() var texture = window.Laya.loader.getRes(value.url) _this.graphics.drawTexture(texture) _this.scaleX = _this.set_width / texture.sourceWidth _this.pivotX = _this.row_data.proper...

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

455. 预加载3D资源后,如何使用 [ 56%]

预加载3D资源后,如何使用 例如我用Laya.loader.create(["sphere/sphere.lh"], null, processHandler);方法已经加载了lh文件,然后在创建sprite3D的时候,如何使用呢?还是用Sprite3D.load()? 这样会不会加载两次? 2017-05-20 添加评论 免费帖 --> 分享 ...

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

456. 有没有会加载2D prefab的?找两天了没找到方法! [ 56%]

... BellyChen 赞同来自: 通过脚本文件参数传进去,然后调用create方法创建 2019-09-24 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 150*****573 相关问题 两个对象new了一个相同的对象,调用第一个的...

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

457. 加载lh模型后,添加Laya.SkinAnimations组件就报错 [ 56%]

...显示,请问有知道是什么原因的吗?~~~~~~~~~~~~~ Animation 的createFrames 使用已经加载的图集缓存动画失败 lh文件内meshSprite添加阴影属性无效 请问下loader如何强制加载一个文件,避免浏览器的缓存 为什么给Sprite容器添加点击事件没...

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

458. 分享:Sprite 转换成3D贴图(Texture2D)的方法,如果有更好的方法,请告诉我。 [ 56%]

...</script>2. 在 as 代码中加入如下函数: private static var createTextureCallBack:Function; public static function createTexture(s:Sprite,callback:Function,callbackThis:Object):void{ createTextureCallBack = callback; var htmlCanvas:HTMLCanvas = s.drawToCanvas(512,512,0,0); var realCan...

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

459. WXOpenDataViewer 微信开放数据域 是不是不能响应鼠标拖动事件呢? [ 56%]

... 里面 Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION); 和 Laya.AtlasInfoManager.enable("fileconfig.json", Laya.Handler.create(this, this.onConfigLoaded)); 都要删掉。 内涵tv何吓吓 • ...

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

460. 怎么使用ttf,版本2.0.2 [ 56%]

...个回复 Laya_Aaron 赞同来自: Laya.loader.load("abc.ttf",Laya.Handler.create(this, this.abc)); demo里没写预加载字体的代码, 先加载字体,然后再在回调方法里 初始化场景 abc():void{         GameConfig.startScene && Laya.Scene.open(GameConfig.startS...

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