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

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

431. 多个模块之间相互嵌套import,导致运行报错 [ 70%]

...mal.tsclass Animal implements EventEmiter { public sex: number = 0; public Create(): void {} public Attack(): void { this.emit('attack'); } } Manager.ts public CreateCat(): void { let self = this; let cat = new Cat(); cat.Create(); cat.on('attack', function () { self.Change(); }); this.animals.push(...

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

432. 请问:通过Laya.Geolocation来定位存在较大误差(超过1公里),该如何解决? [ 70%]

...ableHighAccuracy = true; Laya.Geolocation.getCurrentPosition( Laya.Handler.create(null, cb_onGeoPositionSuccess), Laya.Handler.create(null, cb_onGeoPositionFail)); } else { alert("您的浏览器不支持使用HTML5来获取地理位置服务"); } } // 回调函数:获取GPS坐标成功后 function ...

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

433. 材质动画的使用(JavaScript-3D基础(JS)-LayaAir3D之Animator动画) [ 70%]

...window下Animation打开动画编辑界面,快捷键Ctrl+6。 2、点击create按钮创建动画并取名,本例中取名使用的默认名字New Animation,保存后在资源管理器中会生成动画文件New Animation。 3、选择时间轴上时间,修改材质的漫反射颜色,重复...

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

434. Animation 的createFrames 使用已经加载的图集缓存动画失败 [ 69%]

Animation 的createFrames 使用已经加载的图集缓存动画失败 我load图集之后, 使用Animation的createFrames缓存动作, api里写着可以使用已经加载的图集动画,结果却又去下载了,地址当然不正确了,导致无法下载.代码大致如下: Laya.loader.load('pla...

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

435. 区块地图-等角地图 [ 69%]

...aya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; createMap(); Laya.stage.on("click", this, onStageClick); })(); function createMap() { tiledMap = new TiledMap(); tiledMap.createMap("../../res/tiledMap/isometric_grass_and_water.json", new Rectangle(0, 0, Laya.stage.width, La...

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

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

...复 cuixueying 赞同来自: 1、譬如我有一张图片 2、通过TextureCreate创建package {     import laya.display.Sprite;     import laya.resource.Texture;     import laya.utils.Handler;     public class CupPhone     {         public function CupPhone()         {  ...

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

437. 材质动画的使用(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 69%]

...window下Animation打开动画编辑界面,快捷键Ctrl+6。 2、点击create按钮创建动画并取名,本例中取名使用的默认名字New Animation,保存后在资源管理器中会生成动画文件New Animation。 3、选择时间轴上时间,修改材质的漫反射颜色,重复...

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

438. 不带格式后缀的图片无法成功加载 [ 69%]

...n.api/e285dd263aee2e8f7b302fa8d139de4c' Laya.loader.load(url, Laya.Handler.create(this, () => { let picTemp = Laya.Loader.getRes(url); console.log(picTemp.width) // undefined let nodee = new Laya.Sprite() nodee.texture = picTemp nodee.width = 500 nodee.height = 250 nodee.x = 100 nodee.y = 350 Lay...

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

439. laya.maths.Matrix_API3.0 [ 69%]

... setTo setTranslate skew toString transformPoint transformPointN translate create mul mul16 Constructors constructor new Matrix(a?: number, b?: number, c?: number, d?: number, tx?: number, ty?: number, nums?: number): Matrix Defined in laya/maths/Matrix.ts:30 使用指定参数创建新的 Matrix ...

来源: Laya3.0_api 发布时间: 20231115

440. UNITY导出的模型旋转不了 [ 69%]

... Laya.Stat.show(); Laya.Scene3D.load('/1/res/SampleScene.ls', Laya.Handler.create(null, function(scene1){ let scene = Laya.stage.addChild(scene1); Laya.Sprite3D.load("/1/res/SampleScene.lh", Laya.Handler.create(null, function(sp) { //let obj = sp; let obj = scene.addChild(sp); obj.transform.scale = ...

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