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

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

11. List选中项下滚会变 [ 83%]

...tView = (function(_super){ function ServerListView(){ ServerListView.super(this); this.selectedIndex = -1; var data = ; //设置服务器列表项信息 for(var i=0;i<100;i++){ data = {select:{label:"服务器"+(i+1),selected:false}, flag:{text:(i==0)?"(推荐)":""}}; } this.sList.dataSource = da...

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

12. 显示与切换图片(JavaScript-LayaAir基础篇(JS)-位图) [ 81%]

...bgColor = "#232628"; Laya.loader.load([texture1, texture2], Handler.create(this, onAssetsLoaded)); })(); function onAssetsLoaded() { ape = new Sprite(); Laya.stage.addChild(ape); ape.pivot(55, 72); ape.pos(200, 200); // 显示默认纹理 switchTexture(); ape.on("click", this, switchTexture); } func...

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

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

...域的点击事件,触发后执行switchImg切换图片 img.on("click",this,switchImg); //将图片添加到舞台 Laya.stage.addChild(img); } private function switchImg(e:*=null):void { //清空图片 img.graphics.clear(); //获得要切换的图片资源路径 var imgUrl:String = (flag = !flag)?...

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

14. Sprite loadImage 的时候出现多张图片同时显示 [ 79%]

Sprite loadImage 的时候出现多张图片同时显示 this.img.graphics.clear(); var imgUrl = (this.flag = !this.flag)? this.imgUrl1 :this.imgUrl2; this.img.loadImage(imgUrl,100,50); 简单的点击sprite切换图片,结果会出现两张图片同时显示的情况 附件 : --> 2018-04-04 添...

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

15. laya.d3.js报错 [ 74%]

...flags is not a function             bt.RayResultCallback_set_m_flags(this._btAllHitsRayResultCallback, flag);     附件 : --> 2022-03-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Yan 赞同来...

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

16. 请问这是原因? [ 74%]

...cs = graphics2; Laya.stage.addChild(sprite2); Laya.stage.on(Event.MOUSE_UP,this,mouseUP); } public var flagCircle:Graphics = new Graphics(); public var flag:Sprite = new Sprite(); //让直线在圆内旋转 public function mouseUP():void{ var point:Point = sprite.globalToLocal(new Point(Laya.stage.m...

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

17. 截屏无法实现 [ 72%]

截屏无法实现 View gameView = mPlugin.game_plugin_get_view(); this.setContentView(gameView); 这个gameView应该就是游戏显示视图,但获取出来是空的,屏幕保存成文件全是黑的 现在不知道用什么方法进行截屏了 2017-04-23 添加评论 免费帖 --> 分享 ...

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

18. socket大型项目回调 [ 71%]

... = console.log; console.warn = console.log; console.error = console.log; } this._message = new Message(); this._package = new Package(); this.socket = null; this.callbacks = {}; this.handlers = {}; // Map from request id to route this.routeMap = {}; this.heartbeatInterval = 0; this.heartbeatTimeout ...

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

19. typeScript Java互调问题 [ 69%]

...rams.FLAG_FULLSCREEN);                  mProxy = new RuntimeProxy(this);         mPlugin = new GameEngine(this);         mPlugin.game_plugin_set_runtime_proxy(mProxy);         mPlugin.game_plugin_set_option("localize","false");         mPlugin.game_plugin_set_option("gameUrl...

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

20. 使用3D摄像机 · LayaAir3.0文档 · LAYABOX [ 69%]

...* 此方法为虚方法,使用时重写覆盖即可 */ onAwake(): void { this.curpos = new Laya.Vector3(); } /** * 第一次执行update之前执行,只会执行一次 * 此方法为虚方法,使用时重写覆盖即可 */ onStart(): void { this.camera = this.owner as Laya.Camera; if (this.tar...

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