大约有 575 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0059 秒)
Laya_社区(167) Laya3.0_api(81) Laya_示例(80) Laya2.0_api(78) laya_api(73) Laya2.0_示例(52) Laya2.0_文档(41) Laya3.0_文档(3)
...dInfo-4429() at Function/http://adobe.com/AS3/2006/builtin::call() at laya.display::Graphics/_renderOne() at laya.renders::RenderSprite/_graphics() at laya.display::Sprite/render() at laya.renders::RenderSprite/_childs() at Function/http://adobe.com/AS3/2006/builtin::call() at laya.renders::RenderSp...
来源: Laya_社区 发布时间: 20200217
...Width components cullingMask depthTextureFormat depthTextureMode destroyed displayedInStage enableBlitDepth enableBuiltInRenderTexture enableHDR farPlane fieldOfView fxaa hideFlags id is3D layer maxlocalYDistance msaa nearPlane normalizedViewport numChildren opaquePass orthographic orthographicVerti...
来源: Laya3.0_api 发布时间: 20231115
...示与切换图片 ### 1.1 loadImage API概述 在API文档中搜索laya.display.Sprite,可以找到loadImage()方法,如图1所示,我们先熟悉一下该方法的参数。 ![图1](img/1.png) (图1) ### 1.2 用loadImage加载显示图片的示例 创建一个Main.as入口类,并设置为...
来源: Laya2.0_文档 发布时间: 20210715
...Color components cullingMask depthTextureFormat depthTextureMode destroyed displayedInStage enableBlitDepth enableBuiltInRenderTexture enableHDR farPlane fieldOfView fxaa hideFlags id is3D layer maxlocalYDistance msaa nearPlane normalizedViewport numChildren opaquePass orthographic orthographicVerti...
来源: Laya3.0_api 发布时间: 20231115
...遮罩显示。 > ## 一、遮罩API介绍 遮罩属性位于[laya.display.Sprite](https://layaair2.ldc2.layabox.com/api2/Chinese/index.html?version=2.9.0beta&type=Core&category=display&class=laya.display.Sprite) API内(),该属性的说明如图1所示: ![1](img/1.jpg)(图1) ## ...
来源: Laya2.0_文档 发布时间: 20210714
...对应类。报错 public static var _classMap:Object = {'Sprite': 'laya.display.Sprite', 'Text': 'laya.display.Text','animation': 'laya.display.Animation', 'Animation': 'laya.display.Animation', 'Skeleton': 'laya.ani.bone.Skeleton', 'Particle2D': 'laya.particle.Particle2D', 'div': 'laya.html.dom.HT...
来源: Laya_社区 发布时间: 20180312
...oor 是一个显示对象 继承此 Sprite Laya.class(Floor, "Floor", laya.display.Sprite); var _proto = Floor.prototype; /** * type int 1->地板默认宽度 other->随机宽度 */ _proto.init = function(type){ this.maxRight = 0; //如果不开启autoSize 父容器的宽度和高度无法获...
来源: Laya_社区 发布时间: 20160801
...根据指定的路径数据绘制出图案均可使用LayaAir引擎中laya.display.Graphics类的“drawpoly();”方法实现。该方法的详细说明如下图所示: ![blob.png](img/1.png) (图1) ### 一、绘制三角形 下面我们用LayaAir引擎先绘制一个三角形,示...
来源: Laya2.0_文档 发布时间: 20210714
...有派发成功,下面是testDemo LayaSample类: package { import laya.display.Sprite; public class LayaSample extends Sprite{ public static var event:String = "event"; public function LayaSample() { super(); //初始化引擎 Laya.init(1136, 640); var re:Revent = new Revent(); var de:DisEvent =...
来源: Laya_社区 发布时间: 20170604
laya.display.Text对象的event事件监听无效? DEMO地址 http://jsbin.com/naxucicovo/edit?html,output 找到原因了 txt.text = '123'; //会调用EVENT.CHANGE事件 // txt.changeText('change text'); //不会调用event.change事件 事件绑定必须写成 txt.on(Laya.Event.CHANGE, th...
来源: Laya_社区 发布时间: 20170804