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

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

91. List属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 78%]

....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

92. 请问 layaair2.0的js有没有api可以查询 例如Laya.Script [ 78%]

...击它们无法获知,我点的是哪个,代码 如下 export default class btn1 extends Laya.Script { constructor(){super();} onEnable(){} onClick(){ alert("id="+this.id); //这里有一个id,但是系统自动生成的,无法获知这个id代表哪个按钮被点(因为我有4个按钮...

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

93. as hello world 背景还是黑色 [ 78%]

...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

94. laya.d3.shader.SubShader_API3.0 [ 77%]

... 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

95. laya.d3.shader.GLSLCodeGenerator_API3.0 [ 77%]

...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

96. laya.d3.math.Vector2 [ 77%]

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

97. laya.d3.component.Animator [ 77%]

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

98. laya.display.Node [ 76%]

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

99. 分享:避免鼠标快速移动,mouseout和mouseover触发顺序不一致的问题! [ 76%]

...导致的,为了避免这个问题,可以参考以下方式 */ 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

100. 1.7版本要初始化后有些代码才能用了 [ 76%]

...= 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