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

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

261. laya.ui.Button [ 52%]

...vents Packagelaya.uiClasspublic class ButtonInheritanceButton UIComponent Sprite Node EventDispatcher ObjectImplements ISelectSubclasses CheckBox, Radio Button 组件用来表示常用的多态按钮。 Button 组件可显示文本标签、图标或同时显示两者。 可以是单态,两态和...

来源: Laya2.0_api 发布时间: 20190513

262. list组件在微信小游戏的上屏中点击定位不准 [ 52%]

...ment的使用 微信小游戏如何使用ttf字体? 关于遍历产生的sprite的点击事件,急,大神帮看哈 救命!canvas定位后 点击区域偏移,求大大们解答 问题状态 最新活动: 2019-12-06 14:41 浏览: 1259 关注: 5 人 Sornets • 2018-04-24 15:16 谢谢,我...

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

263. 请大家帮助优化一下这个抛物线的代码 [ 51%]

... https://my.oschina.net/u/659068/blog/1564002  class Ball extends Laya.Sprite{ private static cached:boolean = false; private body:Laya.Sprite; constructor(){ super(); this.init(); } public init():void{ if(!Ball.cached){ Ball.cached = true; this.body = new Laya.Sprite(); this.body.loadImage("war/b...

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

264. 使用官方文档中qrcode生成二维码的代码,打包APP后无效 [ 51%]

...aya.stage.once("click", this, this.clickHandler); this.qrcodeSp = new Laya.Sprite(); Laya.stage.addChild(this.qrcodeSp); } private clickHandler(): void { var url: string = this.qrcode._oDrawing._elImage.src;//获取,注意这里是异步的,开发者可以加个延时在获取。 this.qrcodeSp.l...

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

265. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 51%]

...。 1. 使用getBounds/ getGraphicBounds。 ```javascript var sp=new Laya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调...

来源: Laya2.0_文档 发布时间: 20210715

266. drawTexture 画出来的数据会有以前的数据 [ 50%]

drawTexture 画出来的数据会有以前的数据 private var iconSpr:Sprite; private var htmlCanvas:HTMLCanvas; private var texture:Texture; private var xNum:int = 0; private var yNum:int = 0; private var img:Image; public function TestView() { img = new Image("comp/lhjicon_5.png"); img.x = 640;...

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

267. 模型的功能介绍(JavaScript-3D基础(JS)-LayaAir3D之模型和网格) [ 49%]

...景模型.ls,基本都是由多个物体模型与材质构成,外层是Sprite3D容器,内部才是真正的模型MeshSprite3D或SkinnedMeshSprite3D。并且还可能会有多个层次嵌套。 #### 获取子对象模型网格 在编写游戏逻辑时,有的模型需要被修改,或者是...

来源: Laya2.0_文档 发布时间: 20210714

268. 模型的功能介绍(TypeScript-3D基础(TS)-LayaAir3D之模型和网格) [ 49%]

...景模型.ls,基本都是由多个物体模型与材质构成,外层是Sprite3D容器,内部才是真正的模型MeshSprite3D或SkinnedMeshSprite3D。并且还可能会有多个层次嵌套。 #### 获取子对象模型网格 在编写游戏逻辑时,有的模型需要被修改,或者是...

来源: Laya2.0_文档 发布时间: 20210715

269. 使用3DUI · LayaAir3.0文档 · LAYABOX [ 49%]

...I的分类二、IDE中使用UI3D组件2.1 创建一个2D的Prefab2.2 创建Sprite3D,添加UI3D组件2.3 添加2D Prefab资源2.4 更改UI3D属性2.5 调整UI3D位置2.6 脚本控制UI3D使用3DUI 一、概述 2D UI都是纯粹的2D图片按层次显示,不会出现三维立体效果,所以都...

来源: Laya3.0_文档 发布时间: 20241014

270. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 49%]

...。 1. 使用getBounds/ getGraphicBounds。 ```typescript var sp=new Laya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调...

来源: Laya2.0_文档 发布时间: 20210714