大约有 558 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0037 秒)
Laya2.0_api(241) laya_api(189) Laya_社区(61) Laya3.0_api(32) Laya2.0_文档(20) Laya_示例(8) Laya2.0_示例(6) Laya3.0_文档(1)
...[laya.filters.ColorFilter ](https://layaair2.ldc2.layabox.com/api2/Chinese/index.html?version=2.9.0beta&type=2D&category=Filter&class=laya.filters.ColorFilter) 查看API说明。 ### 1.2 设置颜色滤镜 如果要给一个位图设置颜色滤镜,需要先设置一个颜色矩阵,然后用Colo...
来源: Laya2.0_文档 发布时间: 20210715
API DocumentationAll Packages | All Classes | Index | Frames No Frames JointBaseProperties | Methods Packagelaya.physics.jointClasspublic class JointBaseInheritanceJointBase Component ObjectSubclasses DistanceJoint, GearJoint, MotorJoint, MouseJoint, PrismaticJoint, PulleyJoint, RevoluteJoi...
来源: Laya2.0_api 发布时间: 20190513
API DocumentationAll Packages | All Classes | Index | Frames No Frames UIEventProperties | Methods | Constants Packagelaya.uiClasspublic class UIEventInheritanceUIEvent Event Object UIEvent 类用来定义UI组件类的事件类型。 Public Properties Hide Inherited Public Properties Show...
来源: laya_api 发布时间: 20170929
API DocumentationAll Packages | All Classes | Index | Frames No Frames MeshColliderShapeProperties | Methods Packagelaya.d3.physics.shapeClasspublic class MeshColliderShapeInheritanceMeshColliderShape ColliderShape Object MeshColliderShape 类用于创建网格碰撞器。 Public Properties...
来源: Laya2.0_api 发布时间: 20190513
...nds() { const Clip = Laya.Clip; let clip = new Clip(clipSkin, 10, 1); clip.index = clip.clipX - 1; clip.pos(this.counter.x + 60, this.counter.y); Laya.stage.addChild(clip); } createController() { const Button = Laya.Button; this.controller = new Button(buttonSkin, "暂停"); this.controller.labelBol...
来源: Laya2.0_示例 发布时间: 20241125
API DocumentationAll Packages | All Classes | Index | Frames No Frames SkinnedMeshRendererProperties | Methods Packagelaya.d3.coreClasspublic class SkinnedMeshRendererInheritanceSkinnedMeshRenderer MeshRenderer BaseRender EventDispatcher Object SkinMeshRenderer 类用于蒙皮渲染器。 P...
来源: Laya2.0_api 发布时间: 20190513
...19498011 • 2018-03-05 16:51 那我是不是要自己排序一下 setChildIndex(node:Node, index:int):Node 这个可以吗? oy2419498011 • 2018-03-05 17:08 那我怎样可以不让他 以zOrder最大的为第一个?
来源: Laya_社区 发布时间: 20180305
API DocumentationAll Packages | All Classes | Index | Frames No Frames BoxColliderShapeProperties | Methods Packagelaya.d3.physics.shapeClasspublic class BoxColliderShapeInheritanceBoxColliderShape ColliderShape Object BoxColliderShape 类用于创建盒子形状碰撞器。 Public Properti...
来源: Laya2.0_api 发布时间: 20190513
...stage.addChild(mDemoUi); ... private function onChange():void{ trace("list index= "+mDemoUi.m_list.scrollBar.value); mDemoUi.valueLab.text="滚动条位置value= "+mDemoUi.m_list.scrollBar.value; } 如上所示,给list组件创建了21个item,但是value始终是0到405,求解 如何获取list组...
来源: Laya_社区 发布时间: 20171016
....connectByUrl(url); } public function Add(handler:IHandler):void { if(list.indexOf(handler) < 0){ list.push(handler); } } public function Remove(handler:IHandler):void { var index:int=list.indexOf(handler); if(index>=0){ list.splice(index,1); } } public function GetHandler(key:String):IHandler...
来源: Laya_社区 发布时间: 20170724