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

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

161. 微信关系链:LayaAir引擎针对开发数据域使用图集支持介绍 [ 62%]

...edresize"; private static var _i:MsgMgr = null; public function MsgMgr() { super(); } public static function get instance():MsgMgr { return _i ||= new MsgMgr(); } /**初始化消息监听**/ public function init():void { //接收主域透传的数据 if(MiniAdpter.isZiYu && MiniAdpter.isPosM...

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

162. socket.sent [ 62%]

...i.v1UI{ public socket: Laya.Socket; public byte: Laya.Byte; constructor(){ super(); this.btn1.on(Laya.Event.CLICK,this,this.Btn1On); } Btn1On():void{ // socket.connect(“192.168.0.1.133”,8899); console.log("kjk"); this.socket.send("hello world");//这是发送字符串的形式。 //报错TypeE...

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

163. 3Ddemo加载Unity导出场景报错resou._removeReference is not a function [ 62%]

... export default class GameUI extends ui.test.TestSceneUI { constructor() { super();          //加载3D场景 //var scene: Laya.Scene3D = Laya.stage.addChild(new Laya.Scene3D()) as Laya.Scene3D; Laya.Scene3D.load("res/LayaScene_terrain/Conventional/terrain.ls",Laya.Handler.create(this,functi...

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

164. Laya3.0 工程内的bundle.js文件存在某个类 导出微信工程后bundle.js又将该类裁剪了 [ 62%]

...TFrmLogin extends TGenFrmLogin {      onConstruct(): void {         super.onConstruct();     }  } 附件 : --> 2023-05-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 layabox小高 赞同来自: 您好...

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

165. 性能测试-卡通人物2 [ 62%]

... Laya.Animation; // Class Character function Character(images) { Character.super(this); Character.WIDTH = 110; Character.HEIGHT = 110; var bloodBar; var animation; var nameLabel; Character.prototype.createAnimation = function(images) { animation = new Animation(); animation.loadImages(images); anima...

来源: Laya_示例 发布时间: 20241117

166. 创建[HTMLDivElement]时遇到错误(手动实例一次本组件可定位错误) [ 61%]

...torUI.HtmlText');这句话改成__class(HtmlText,'laya.editorUI.HtmlText',_super);就没问题了

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

167. List组件拖动浏览时item会出现重叠的现象 [ 61%]

...; // private _img: Image = null; private _lb:Label = null; constructor() { super(); this._lb = new Label(); this._lb.size(ListDataSourceItem.WID, ListDataSourceItem.HEI); this.addChild(this._lb); // this._img = new Image(); // this._img.size(ListDataSourceItem.WID, ListDataSourceItem.HEI); // this.a...

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

168. 背景音乐播放内存问题 [ 61%]

...ound[url]; this.audioBuffer = null; this.data = null; this.__toPlays = []; super.dispose(); }   如果不添加最后4行代码的话,每次切换回来内存就都会上涨了,现在是只有第一次上涨,之后就不会了 2018-02-05 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自:...

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

169. 性能测试-卡通人物2 [ 61%]

...tring(); } } } class Character extends Laya.Sprite { constructor(images) { super(); this.speed = 5; this.bloodBar; this.animation; this.nameLabel; this.createAnimation(images); this.createBloodBar(); this.createNameLabel(); } createAnimation(images) { const Animation = Laya.Animation; this.animation...

来源: Laya2.0_示例 发布时间: 20241117

170. Image.loadImage 方法加载问题 [ 61%]

...aya.Image;   private btnEnter:Laya.Button;   constructor()   {    super();    this.initUI();   }   private initUI () : void   {    this.bg = new Laya.Image();    this.btnEnter = new Laya.Button();    this.btnEnter.skin = "gamebutton/button_window_public_space_enter.png"; ...

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