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

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

1031. 是不BMFONT不支持多类型资源加载方式? [ 72%]

...", type: Laya.Loader.FONT }); Laya.loader.load(assets, Laya.Handler.create(this, onAssetsLoaded)); function onAssetsLoaded(){ var bitmapFont = new Laya.BitmapFont(); bitmapFont.loadFont("res/fontWord.fnt"); //必出错 }     只要使用 Laya.Loader.FONT 必出错  难道是要改成 Laya.Loade...

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

1032. hitArea怎么用 [ 72%]

...   container.hitArea = bg2Sprite;          container.on(Event.CLICK,this,deskClick); 请问下 我这段代码设置热区 为什么没反应 而且现在看HitArea这个类也没有 api里面没找到 都不知道怎么用了,http://ask.layabox.com/question/2676  这个方法无效 而且 ap...

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

1033. 物理引擎-Slingshot [ 72%]

...)(); function setup() { initMatter(); initWorld(); Laya.stage.on("resize", this, onResize); } function initMatter() { var gameWorld = new Sprite(); Laya.stage.addChild(gameWorld); // 初始化物理引擎 engine = Matter.Engine.create( { enableSleeping: true }); Matter.Engine.run(engine); var render...

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

1034. workerLoader问题 [ 72%]

...本:2.2.0beta1,ts_new 看代码 constructor(){ super();             this.worker = new Worker(WorkerLoader.workerPath); this.worker.onmessage = function(evt:any):void { //接收worker传过来的数据函数 (this as any as WorkerLoader).workerMessage(evt.data); } } 回调函数this指向有问...

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

1035. BlinnPhong材质详解(JavaScript-3D基础(JS)-模型材质详解) [ 72%]

...aya.Texture2D.load("res/threeDimen/texture/earth.png", Laya.Handler.create(this, function(texture) { //设置材质纹理 material.albedoTexture = texture; })); earth2.meshRenderer.material = material; ``` ![](img/4.png)(图4) ##### 法线贴图 **Normal maps(法线贴图)**是一个灰度图,可...

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

1036. 使用loadImage加载一个图片后的点击事件 [ 72%]

...age.addChild(ape); ape.loadImage(img,360, 300, 60, 60, Laya.Handler.create(this, function(){         ape.on(Laya.Event.CLICK, this, function(){         console.log(111)     }) }));使用这段代码加载了一个60x60大小的图片(下图中骑马的那个人物),并且在加载完...

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

1037. 鼠标事件:为什么没有设置穿透,也会发生穿透现象? [ 72%]

... bg = CreateObj.createSprite(McUrlMgr.LOAD_BG_Path);             this.addChild(bg);             bg.x = 0;             bg.y = 0;                          var bg2:Sprite = CreateObj.createSprite(McUrlMgr.LOAD_BG_Path);             bg2.x = 0;    ...

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

1038. 图集打包后使用Texture不显示啊 [ 72%]

...start.json", type: Loader.ATLAS}); Laya.loader.load(assets, Handler.create(this, this.onComplete)); } private onComplete(): void { } } new GameMain();   ================================================================================================ json文件和代码都贴上来了 2017-03-29 添...

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

1039. 怎样获取浏览器地址传过来的GET参数 [ 72%]

...omuser"))                 {                     this.input_jjrcode.text = gets.fromuser;                 }             } 2017-03-30 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 govenlive ...

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

1040. 求解clip的切片得到的单个width为0 [ 72%]

...0,正确的应该是55吧= =,但是得到的确是0。 代码如下: this.k = new Laya.Clip("nbdz/gameover/Clip_win.png",11, 1); this.singleNumberW = this.k.width; this.k.index = 2; console.log(this.singleNumberW+"======"+this.k.width); this.addChild(this.k);   是不是因为图片太大,c...

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