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

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

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

...以查看官方示例([demo地址]())。 ```typescript var material = meshSprite3D.meshRenderer.material; //法线贴图 Laya.Texture2D.load(normalMapUrl[i], Laya.Handler.create(this, function(texture) { //设置发现贴图 material.normalTexture = texture; })); ``` ![](img/5.png)(图5) ##### 高...

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

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

... { "sg.png": { "frame": { "x": 0, "y": 0, "w": 300, "h": 300, "idx": 0 }, "spriteSourceSize": { "x": 0, "y": 0, "w": 300, "h": 300 }, "sourceSize": { "w": 300, "h": 300 }, "rotated": false, "trimed": true }, "sg2.png": { "frame": { "x": 302, "y": 0, "w": 290, "h": 300, "idx": 0 }, "spriteSourceSize"...

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

253. 如何实现类似AS3下的BitmapData.draw去截取区域图片? [ 75%]

...图片 2、通过TextureCreate创建package {     import laya.display.Sprite;     import laya.resource.Texture;     import laya.utils.Handler;     public class CupPhone     {         public function CupPhone()         {             Laya.init(550,400);        ...

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

254. BlinnPhong材质详解(TypeScript-3D基础(TS)-模型材质详解) [ 75%]

...以查看官方示例([demo地址]())。 ```typescript var material = meshSprite3D.meshRenderer.material as Laya.BlinnPhongMaterial; //法线贴图 Laya.Texture2D.load(normalMapUrl[i], Laya.Handler.create(this, function(texture) { //设置发现贴图 material.normalTexture = texture; })); ``` ![](i...

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

255. 我想移动容器来实现前进的动画,但是移动不了。这里的y有问题 但是又不知道改成什么 [ 75%]

...y有问题 但是又不知道改成什么 var MyMain=(function() {   var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL;   (function() { // 不支持WebGL时自动切换至Canvas Laya.init(400...

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

256. 资源分类问题,无法显示资源。 [ 75%]

...上存在某些骨骼动画无法播放,U3D和1.7.*都没问题 new Laya.Sprite();绘制图形以后,怎么删除释放资源? 编辑了图片 执行代码说加载不出来资源 这个是怎么回事? 将list里的scrollBar设置mouseWheelEnable=false后过一段时间设置mouseWheelEnabl...

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

257. 对象池的使用 [ 74%]

...tyPlugin 使用须知-版本更新-问题解答(最新版本:1.7.16) sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale TS项目使用matter.js库无智能提示 使用3D时候,Property 'getComponentByType' does not exist on type 'Node'. 微信小游戏:HTMLDivEle...

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

258. HTMLCanvas可以在APP上使用吗 [ 74%]

...答(最新版本:1.7.16) TS项目使用matter.js库无智能提示 sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale LayaAirIDE下如何使用mask? 关于近期iOS提交,因违反苹果3.1.1导致APP上架被拒的说明 微信小游戏如何使用ttf字体? ...

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

259. [LayaAirIDE 2.0]TextInput真机输入时显示蓝色字,求解 [ 74%]

... break; } } private _checkInput(input: Laya.TextInput) { let sp_icon: Laya.Sprite = new Laya.Sprite(); // 判定是否有两个子对象 if (input.numChildren == 2) { input.removeChildAt(1); } // 输入框为空则插入错误图标 if (input.text.trim().length == 0) { input.changeText(""); sp_icon....

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

260. 缓动-时间线 [ 74%]

...; Laya.stage.on(Event.KEY_DOWN, this, this.keyDown); } createApe() { const Sprite = Laya.Sprite; this.target = new Sprite(); Laya.stage.addChild(this.target); this.target.loadImage("res/apes/monkey2.png"); this.target.pivot(55, 72); this.target.pos(100,100); } createTimerLine() { const TimeLine = La...

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