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

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

911. sprite之bug [ 69%]

...e之bug http://www.gamework.cn/blog/post/qykings/sprite%E4%B9%8Bbug public function set scaleX(value:Number):void {  var style:Style = getStyle();    if(!style)  {  trace("----sprite--")  return;  }    if(!style._tf)  {  trace("----sprite--_tf is null--");  return;  }    if (style._tf...

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

912. Laya2自动同步cullingMask方案以及灯光裁剪补丁 [ 69%]

..._scene.lightCullingMask && this._scene.lightCullingMask instanceof Function){this._scene.lightCullingMask(scene,this);} 3、对想要开启灯光裁剪的场景调用 LightCullingMask.enableLightCullingMask(scene3d)即可 //注意 ExtCullingMask并不是针对对象进行,而是对摄相...

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

913. 关于as版的Animation.createFrames()不能工作? [ 69%]

...lass LayaUISample { protected var text:Text; protected var aaa:AAA; public function LayaUISample() { Laya.init(1540, 990); Laya.Stat.show(); Laya.loader.load("res/atlas/war.json", Laya.Handler.create(this, this.onLoaded), null, Laya.Loader.ATLAS); Laya.loader.on(Event.ERROR, this, onError); } protec...

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

914. for each" err,must add{} [ 69%]

...中需添加大括号包住for each作用域。 原生例子 : public function ForEachDemo() { var obj:Object = [ { key:1 }, { key:2 } ]; //转成成js时工具会在使用for each的地方添加相应的报错信息: //"for each" err,must add{} for each(var value:Object in obj) trace(value.ke...

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

915. 滤镜-颜色滤镜 [ 69%]

...ipt、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var ColorFilter = Laya.ColorFilter; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var ApePath = "../...

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

916. laya.utils.TimeLine_API3.0 [ 69%]

...为 false。 from from(target: any, props: any, duration: number, ease?: Function, offset?: number): TimeLine Defined in laya/utils/TimeLine.ts:95 从 props 属性,缓动到当前状态。 Parameters target: any target 目标对象(即将更改属性值的对象) props: any 要控制对象的属...

来源: Laya3.0_api 发布时间: 20231115

917. 分享:List相关(Item增删功能) [ 69%]

...istP:ListPageUI;//UI面板 private var arr:Array;//list数据数组 public function LayaUISample() { //初始化引擎 Laya.init(600, 800); Laya.stage.bgColor = "#ffcccc"; //加载界面需要的资源文件 Laya.loader.load([{url: "res/atlas/comp.json", type: Loader.ATLAS}], Handler.create(this, on...

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

918. laya.physics.PhysicsDebugDraw [ 69%]

...组件实例。 Node addInputChild(node:Node):NodeNode callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.time...

来源: Laya2.0_api 发布时间: 20190513

919. UI-Clip [ 69%]

...ipt、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Stage = Laya.Stage; var Button = Laya.Button; var Clip = Laya.Clip; var Image = Laya.Image; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var buttonSkin = "../../res/ui/button-7.png"; var clipSkin = ".....

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

920. UI-Image [ 69%]

...ort laya.ui.Image; import laya.webgl.WebGL; public class UI_Image { public function UI_Image() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stag...

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