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

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

191. 在加载多个资源的时候,加载进度异常 [ 54%]

...PP打开加载速度过慢,有黑屏,如何加入闪屏图片 new Laya.Sprite();绘制图形以后,怎么删除释放资源? Animation 的createFrames 使用已经加载的图集缓存动画失败 请问下loader如何强制加载一个文件,避免浏览器的缓存 问题状态 最新活...

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

192. laya.display.Animation_API3.0 [ 54%]

...: boolean = false Inherited from Text._ownGraphics Defined in laya/display/Sprite.ts:252 _scene _scene: Node Inherited from Node._scene Defined in laya/display/Node.ts:641 _skinBaseUrl _skinBaseUrl: string Inherited from Text._skinBaseUrl Defined in laya/display/Sprite.ts:276 如果节点需要加...

来源: Laya3.0_api 发布时间: 20231115

193. laya.display.Animation [ 54%]

...elaya.displayClasspublic class AnimationInheritanceAnimation AnimationBase Sprite Node EventDispatcher Object Animation 是Graphics动画类。实现了基于Graphics的动画创建、播放、控制接口。 本类使用了动画模版缓存池,它以一定的内存开销来节省CPU开销,当...

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

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

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

195. laya.d3.core.pixelline.PixelLineSprite3D_API3.0 [ 54%]

...ited Externals Only exported Menu Globals "laya/d3/core/pixelLine/PixelLineSprite3D" PixelLineSprite3D Class PixelLineSprite3D PixelLineSprite3D 类用于像素线渲染精灵。 Hierarchy RenderableSprite3D PixelLineSprite3D Index Constructors constructor Properties _extra _scene _url name tag LIGH...

来源: Laya3.0_api 发布时间: 20231115

196. laya.display.EffectAnimation [ 54%]

...ass EffectAnimationInheritanceEffectAnimation FrameAnimation AnimationBase Sprite Node EventDispatcher Object 动效模板。用于为指定目标对象添加动画效果。每个动效有唯一的目标对象,而同一个对象可以添加多个动效。 当一个动效开始播放时,其他动...

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

197. laya.display.Graphics [ 54%]

...方式存储,可以通过cmds属性访问所有命令流。Graphics是比Sprite更轻量级的对象,合理使用能提高应用性能(比如把大量的节点绘图改为一个节点的Graphics命令集合,能减少大量节点创建消耗)。 See alsolaya.display.Sprite.graphicsPublic Proper...

来源: laya_api 发布时间: 20170929

198. 扇形遮罩画不全画了一个很奇怪的形状但是矩形的就没问题。显示效果如下:版本号1.7.10 [ 54%]

...下面是processTimer类 package uiLogic.core {     import laya.display.Sprite;     import laya.maths.Size;     import laya.ui.Image;          public class ProcessTimer extends Sprite     {         public var img:Image;         public var maskSp:Sprite;         pu...

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

199. 这个GetType=null的问题有大神解答下吗 [ 53%]

...-版本更新-问题解答(最新版本:1.7.16) 关于遍历产生的sprite的点击事件,急,大神帮看哈 关于适配采用showAll后留白部分的颜色问题 IDE1.7.8 json图集加载问题 求指点3d射线碰撞和UI点击穿透的问题 救命!canvas定位后 点击区域偏...

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

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

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