大约有 631 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
Laya3.0_api(176) Laya_社区(163) Laya2.0_api(99) laya_api(85) Laya2.0_文档(70) Laya3.0_文档(22) Laya2.0_示例(9) Laya_示例(7)
....layabox.com/api2/Chinese/index.html?version=2.9.0beta&type=2D&category=UI&class=laya.ui.List)。 ### 1.1 创建 List 组件 #### 1.编辑列表项。 列表项可以是 Box 对象或 View(页面) 或其它自定义页面对象。此处以Box 对象为例。 **a.**从资源面板里选...
来源: Laya2.0_文档 发布时间: 20210715
...击它们无法获知,我点的是哪个,代码 如下 export default class btn1 extends Laya.Script { constructor(){super();} onEnable(){} onClick(){ alert("id="+this.id); //这里有一个id,但是系统自动生成的,无法获知这个id代表哪个按钮被点(因为我有4个按钮...
来源: Laya_社区 发布时间: 20181029
...d 背景还是黑色 as hello world package { import laya.ui.Label; public class LayaSample { public function LayaSample() { //初始化引擎 Laya.init(1136, 640); Laya.stage.bgColor = "#ffffff"; var sp : Label = new Label("hello world"); //sp.fontSize = 55; sp.pos(100, 100) ; //sp.color = "#000000...
来源: Laya_社区 发布时间: 20170711
... Externals Only exported Menu Globals "laya/d3/shader/SubShader" SubShader Class SubShader SubShader 类用于创建SubShader。 Hierarchy SubShader Index Constructors constructor Properties IncludeUniformMap Methods _addShaderPass addShaderPass getFlag setFlag __init__ regIncludeBindUnifrom Object ...
来源: Laya3.0_api 发布时间: 20231102
...exported Menu Globals "laya/d3/shader/GLSLCodeGenerator" GLSLCodeGenerator Class GLSLCodeGenerator Hierarchy GLSLCodeGenerator Index Methods glslAttributeString glslUniformString Methods Static glslAttributeString glslAttributeString(attributeMap: {}): string Defined in laya/d3/shader/GLSLCodeGenera...
来源: Laya3.0_api 发布时间: 20231102
API DocumentationAll Packages | All Classes | Index | Frames No Frames Vector2Properties | Methods | Constants Packagelaya.d3.mathClasspublic class Vector2InheritanceVector2 ObjectImplements laya.d3.core.IClone Vector2 类用于创建二维向量。 Public Properties PropertyDefined By ...
来源: Laya2.0_api 发布时间: 20190513
API DocumentationAll Packages | All Classes | Index | Frames No Frames AnimatorProperties | Methods | Constants Packagelaya.d3.componentClasspublic class AnimatorInheritanceAnimator Component Object Animator 类用于创建动画组件。 Public Properties Hide Inherited Public Properties ...
来源: Laya2.0_api 发布时间: 20190513
API DocumentationAll Packages | All Classes | Index | Frames No Frames NodeProperties | Methods | Events Packagelaya.displayClasspublic class NodeInheritanceNode EventDispatcher ObjectSubclasses Sprite Node 类是可放在显示列表中的所有对象的基类。该显示列表管理 Laya...
来源: Laya2.0_api 发布时间: 20190513
...导致的,为了避免这个问题,可以参考以下方式 */ public class MouseOver_mouseOut { private var arr:Array;//用于存储处于over状态的显示对象 public function MouseOver_mouseOut() { Laya.init(600,400); Laya.stage.bgColor='#EEFFCC'; arr=; var sp1:Sprite=new Sprite(); sp1.aut...
来源: Laya_社区 发布时间: 20170502
...= new laya.display.Text(); // in this line is error , so you can't defined class before "Laya.init" Laya.init(800,600); //test.text = new laya.display.Text(); // in this line is right test.text.text = "dsafdsdsada"; test.text.color = "#ff0000"; Laya.stage.addChild(test.text); </script> 2017-03...
来源: Laya_社区 发布时间: 20170302