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

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

361. 图集制作与使用详解(ActionScript-IDE篇(AS3)-使用IDE创作) [ 66%]

...集使用示例 Laya.loader.load("./res/atlas/test.atlas", Handler.create(this, onLoaded)); ``` `.json`是一种兼容第三方的图集配置方式,由于`.json`文件应用广泛,不仅仅用于图集,所以为了识别是否为图集配置信息,在加载`.json`文件的图集时,需要...

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

362. 滤镜-颜色滤镜 [ 66%]

...; Laya.stage.bgColor = "#232628"; Laya.loader.load(ApePath, Handler.create(this, setup)); })(); function setup() { normalizeApe(); makeRedApe(); grayingApe(); } function normalizeApe() { var originalApe = createApe(); apeTexture = Laya.loader.getRes(ApePath); originalApe.x = (Laya.stage.width - apeT...

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

363. 输入设备-贪吃蛇(重力感应) [ 66%]

...ode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; // 初始化蛇 this.initSnake(); // 监视加速器状态 Accelerator.instance.on(Event.CHANGE, this, this.monitorAccelerator); // 游戏循环 Laya.timer.frameLoop(1, this, this.animate); // 食物生产 Laya.timer.loop(3000, this, this.pr...

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

364. 问一下tween的一些参数怎么设置 [ 66%]

问一下tween的一些参数怎么设置 比如 Laya.Tween.from(this,{scaleX:0.5,scaleY:0.5},1000,Laya.Ease.elasticOut); 我可以修改elasticOut的回弹次数和回弹时间么? 2016-09-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...

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

365. 动画-新版骨骼动画 [ 66%]

...kinModel/Zombie/new/Zombie.lh")); zombie.once(Laya.Event.HIERARCHY_LOADED, this, function () { //获取Animator动画组件 zombieAnimator = zombie.getChildAt(0).getComponentByType(Laya.Animator); loadUI(); }); function loadUI() { var clipName = ["walk","attack","left_fall","right_fall","back_fall"]...

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

366. CheckBox属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 66%]

...,执行onLoad回调方法 Laya.loader.load([skin1,skin2], Handler.create(this, onLoaded)); } private function onLoaded():void { //创建一个CheckBox实例cb1 var cb1:CheckBox = new CheckBox(skin1); //添加到舞台上显示 Laya.stage.addChild(cb1); //设置checkbox的坐标位置 cb1.pos(300,2...

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

367. 加载图片显示为黑屏(附代码),为什么? [ 66%]

...e_ct); rule_ct.loadImage("rule_txt.png", 0, 0, 460, 0, Handler.create(this, function(){ panel.addChild(rule_ct); })); } } }    现象截图(设备是 iPhone6sPlus):   长图路径:长图片 生产地址(PC端浏览沒问题/手机端浏览则黑屏):H5 手机浏览二维码: ...

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

368. 输入设备-地图 [ 66%]

...createDom(); initMap(); createInfoText(); var successHandler = new Handler(this, updatePosition); var errorHandler = new Handler(this, onError); // 使用高精度位置 Geolocation.enableHighAccuracy = true; Geolocation.watchPosition(successHandler, errorHandler); // 绑定作用域 convertToBaiduC...

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

369. 使用Laya.loader.create加载3d资源,如果出错次数超过最大线程数将无法继续加载资源 [ 66%]

...Manager 则也无法时LoaderManager中的_loaderCount数值减小,如果this._loaderCount >=this.maxLoader,则无法再下载文件 附件 : --> 2017-06-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Mo...

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

370. 【laya2.0】请问drawToCanvas方法改了吗? [ 66%]

【laya2.0】请问drawToCanvas方法改了吗? var htmlCanvas=this.p6_work.drawToCanvas(575,1023,0,0); var canvas=htmlCanvas.getCanvas(); var base64=canvas.toDataURL("image/png"); 报错:Uncaught TypeError: Failed to execute 'bindTexture' on 'WebGLRenderingContext': parameter 2 is not of type ...

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