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

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

461. 设置滤镜(ActionScript-LayaAir基础篇(AS3)-位图) [ 56%]

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

462. laya.physics.joint.JointBase [ 56%]

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

463. laya.ui.UIEvent [ 56%]

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

464. laya.d3.physics.shape.MeshColliderShape [ 55%]

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

465. UI-Clip [ 55%]

...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_示例 发布时间: 20241001

466. laya.d3.core.SkinnedMeshRenderer [ 55%]

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

467. laya里面子节点设置zOrder值时,放在函数中调用 [ 55%]

...19498011 • 2018-03-05 16:51 那我是不是要自己排序一下 setChildIndex(node:Node, index:int):Node 这个可以吗? oy2419498011 • 2018-03-05 17:08 那我怎样可以不让他 以zOrder最大的为第一个?

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

468. laya.d3.physics.shape.BoxColliderShape [ 55%]

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

469. 关于list滚动位置的问题 [ 54%]

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

470. Socket能连接到服务器,客户端发请求也能收到服务端的数据,但是服务端主动推送数据,客户端就是收不到数据? [ 54%]

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