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

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

61. 求解:能通过改变Sprite的宽高,让Sprite里的Child缩放吗?【附图】 [ 78%]

...: 3 人 cuixueying • 2017-04-07 16:38 第6个参数不是function,是handler,用new HandlerHandler.create的方式去写!

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

62. 路径显示会添加DrawCall,每增加一条路径都会添加,有什么办法降DrawCall [ 78%]

....Rectangle; import laya.ui.Dialog; import laya.ui.Image; import laya.utils.Handler; import ui.TestDialogUI; import ui.TestViewUI; public class TestView extends TestViewUI { private var PATH_LEN:Number = 120.0; private var speed:Number = 15; private var _path:Sprite = new Sprite(); private var _path2...

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

63. Timer Handler被覆盖 [ 78%]

Timer Handler被覆盖   class Timer   _getHandler(caller, method) { var cid = caller ? caller.$_GID || (caller.$_GID = ILaya.Utils.getGID()) : 0; var mid = method.$_TID || (method.$_TID = (Timer._mid++) * 100000); return this._map[cid + mid]; }   当游戏玩的功能多时间长了,随着cal...

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

64. tiledmap有时尺寸不正确 [ 78%]

...neLoadState.eLoadNull; // 地图创建完成回调函数 private _mCompleteHandler:Handler = null; private _mTest:number = 0; constructor(){ } /** * 创建地图,并显示当前场景 * @param conf 地图的配置信息 */ public create(conf:LevelConf, handler:Handler):void{ this._mLevelConf = con...

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

65. 显示与切换图片(ActionScript-LayaAir基础篇(AS3)-位图) [ 78%]

...ya.net.LoaderManager中的load()方法getRes()方法,以及laya.utils.Handler中的create()方法,各方法的参数图3、图4、图5、图6所示: ![图3](img/3.png) (图3) ![图4](img/4.png) (图4) ![图2](img/5.png) (图5) ![图2](img/6.png) (图6) ### 2.2 用drawTexture 加载显示图...

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

66. 分享:改变图片皮肤,保持图片原样宽高显示 [ 78%]

...ackage { import laya.events.Event; import laya.ui.Image; import laya.utils.Handler; public class LayaAirDemo { private var image:Image; public function LayaAirDemo() { Laya.init(800,600); Laya.loader.load(["bg.jpg","logo.png"],Handler.create(this,onLoaded)); } private function onLoaded():void { imag...

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

67. 图集动画没有显示 [ 78%]

...r AniConfPath = 'res/atlas/cloud.json'; Laya.loader.load(AniConfPath, Laya.Handler.create(this, this.createAnimation), null, Laya.loader.ATLAS); function createAnimation() { var ani = new Laya.Animation(); ani.loadAtlas(AniConfPath); ani.interval = 30; ani.index = 1; ani.play(); Laya.stage.addChild(...

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

68. 设置遮罩(TypeScript-LayaAir基础篇(TS)-位图) [ 78%]

...回调方法绘制图片并添加到舞台 Laya.loader.load(this.Res,Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{ this.img = new Laya.Sprite(); //获取图片资源,绘制到画布 this.img.graphics.drawTexture(Laya.loader.getRes(this.Res),150,50); //添加到舞台 L...

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

69. 缓动 · LayaAir3.0文档 · LAYABOX [ 78%]

...props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀速运动。 * @param complete 结束回调函数。 * @para...

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

70. PBRStandardMaterial材质详解(TypeScript-3D基础(TS)-模型材质详解) [ 78%]

.../Assets/PBR Barrel/Materials/Textures/Barrel_AlbedoTransparency.png', Laya.Handler.create(this, function(texture) { mat.albedoTexture = texture; })); //法线贴图 Laya.Texture2D.load('res/threeDimen/scene/PBRMaterialScene/Assets/PBR Barrel/Materials/Textures/Barrel_Normal.png', Laya.Handler.create...

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