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

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

81. 多光源渲染(JavaScript-3D基础(JS)-LayaAir3D之灯光) [ 73%]

...load("res/threeDimen/scene/MultiLightScene/InventoryScene_Forest.ls", Laya.Handler.create(this, function (scene) { //添加到场景 Laya.stage.addChild(scene); var camera = scene.getChildByName("Main Camera"); camera.addComponent(CameraMoveScript); camera.transform.localPosition = new Laya.Vector3(...

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

82. 多摄像机窗口的使用(TypeScript-3D基础(TS)-LayaAir3D之Camera) [ 73%]

...ya.Sprite3D.load("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(null, function(sp) { //将模型加到场景上 var layaMonkey = scene.addChild(sp); })) ``` 编译运行上述代码,运行效果如图6。开发者们同时也可以测试,在单摄像机下时,DrawCall...

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

83. tiledMap 45度地图在移动地图时出现没及时渲染的黑块 [ 73%]

...g — JSON文件名字  viewRect:Rectangle — 视口区域  completeHandler:Handler — 地图创建完成的回调函数  viewRectPadding:Rectangle (default = null) — 视口扩充区域,把视口区域上、下、左、右扩充一下,防止视口移动时的穿帮  gridSize:Po...

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

84. 缓动动画(TypeScript-LayaAir基础篇(TS)-动画基础) [ 73%]

...java Laya.Tween.to(letterText, { y : 300 }, 1000, Laya.Ease.bounceIn, Laya.Handler.create(this,this.changeColor,[letterText]), i * 100); ``` 由于需要增加新的引用,这次贴出全部的示例代码。 TweenDemo.ts: ```typescript // 程序入口 class TweenDemo{ constructor() { //初始...

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

85. 请问laya的List除了用selectBox,还有什么方式可以自定义列表项选中状态下的表现吗 [ 72%]

...生List之后,重写changeCellState方法来,并且同时配合renderHandler来实现?   2017-03-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 可以参考下:把img换成你...

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

86. LAYA js 1.7.12 Tween 使用时回调时 core报错 [ 72%]

...js包集成中,使用完全一样的代码,提示 Uncaught TypeError: handler.run is not a function at Tween.__proto.complete (laya.core.js:9423) 9423 :handler && handler.run(); 你们自己试试吧。。为啥要。&&run() 2017-11-11 添加评论 免费帖 --> 分享 微...

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

87. 多摄像机窗口的使用(ActionScript-3D基础(AS3)-LayaAir3D之Camera) [ 72%]

...模型 Sprite3D.load("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Handler.create(null, function(sp:Sprite3D):void { //将模型加到场景上 var layaMonkey:Sprite3D = scene.addChild(sp) as Sprite3D; })) ``` 编译运行上述代码,运行效果如图6。开发者们同时也可以测试...

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

88. 多光源渲染(ActionScript-3D基础(AS3)-LayaAir3D之灯光) [ 72%]

...ne3D.load("res/threeDimen/scene/MultiLightScene/InventoryScene_Forest.ls", Handler.create(this, function (scene: Scene3D): void { //添加到场景 Laya.stage.addChild(scene); var camera: Camera = scene.getChildByName("Main Camera") as Camera; camera.addComponent(CameraMoveScript); camera.transform....

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

89. Timer Handler被覆盖 [ 72%]

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

90. tiledMap问题,getTileProperties获取地图属性不能获取到 [ 71%]

...iledMap; constructor(){ super(); Laya.loader.create(this.MAP_URL, new Laya.Handler(this, this.onComplete)) }  private onComplete(){ this.map = new Laya.TiledMap(); this.map.createMap(this.MAP_URL, new Laya.Rectangle(0,0,Laya.stage.width, Laya.stage.height), new Laya.Handler(this, this.onMap)) }  p...

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