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

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

441. 骨骼动画-藤蔓 [ 72%]

...; } function completeHandler() { play(); } function play() { mCurrIndex++; if (mCurrIndex >= mArmature.getAnimNum()) { mCurrIndex = 0; } mArmature.play(mCurrIndex,false); } })();module laya { import Skeleton = Laya.Skeleton; import Templet = Laya.Templet; import Event = Laya.Event; import Browser = ...

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

442. 【简单跑酷--JS版】---Lv.3 添加地板 [ 72%]

... 32 * 20 拼起来的 this.y = 32 * 6 + 32 * parseInt(8 * Math.random()); if(this.bg == null){ //贴图纹理 this.bgTexture = Laya.loader.getRes("res/floor.png"); this.bg = new laya.display.Sprite(); this.bg.graphics.clear(); //将当前的坐标向上移动32 方便后面处理人物的位置 this...

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

443. 预制体添加刚体后,和其它刚体碰撞后不能修改角度和位置 [ 72%]

...act)     {         var n=this.owner.rotation;         if(other.label === "heng"){             console.log("角度"+this.owner.rotation);             this.owner.rotation=180-n;             console.log("角度"+this.owner.rotation);      ...

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

444. 更改innerHTML字体大小失败 [ 72%]

...ML的代码,并且内容已经正确显示了,除了字体大小没改 if(bagVo.group == GroupType.FollowerEquip || bagVo.group == GroupType.Equip){ for(var i:int=0;i<len;i++){ vo=bagVo.attr[i]; if(vo.attValue==0) continue; attrStr+="<font size='99999' color='#b031d5'>"+AttrNameCode.toN...

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

445. 摄像机捕捉目标(ActionScript-3D基础(AS3)-LayaAir3D之Camera) [ 72%]

...事件 changeActionButton.on(Event.CLICK, this, function():void{ index++; if (index % 3 === 1 ){ //摄像机捕捉模型目标 camera.transform.lookAt(box.transform.position, _up); } else if (index % 3 === 2){ //摄像机捕捉模型目标 camera.transform.lookAt(cylinder.transform.position, _up); }...

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

446. Node.prototype.removeChildren移除计数有问题 [ 72%]

...版本都存在: removeChildren(beginIndex = 0, endIndex = 0x7fffffff) { if (this._children && this._children.length > 0) { var childs = this._children; if (beginIndex === 0 && endIndex >= childs.length - 1) { var arr = childs; this._children = Node.ARRAY_EMPTY; } else { arr ...

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

447. 请教玩一玩横屏问题 [ 72%]

...竖屏             canvasDegree = 0;             if (rotation) {                 if (_screenMode === SCREEN_HORIZONTAL) {                     mat.rotate(Math.PI / 2);                     mat.translate(screenHeight / pixe...

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

448. 屏幕适配要怎么做?能否详细点呢 [ 72%]

...提供相应的接口供开发者直接调用。    目前我们有提供Iflash.setSize方法让开发者发布固定机型尺寸,比如960*640类似。     如果setSize方法不设置,就会实现全屏显示,但是这样有可能会导致显示拉伸。      如果想要获取浏览...

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

449. 摄像机捕捉目标(JavaScript-3D基础(JS)-LayaAir3D之Camera) [ 72%]

...is.changeActionButton.on(Laya.Event.CLICK, this, function(){ this.index++; if (this.index % 3 === 1 ){ //摄像机捕捉模型目标 this.camera.transform.lookAt(this.box.transform.position, this._up); } else if (this.index % 3 === 2){ //摄像机捕捉模型目标 this.camera.transform.lookAt(this....

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

450. 摄像机捕捉目标(TypeScript-3D基础(TS)-LayaAir3D之Camera) [ 72%]

...is.changeActionButton.on(Laya.Event.CLICK, this, function(){ this.index++; if (this.index % 3 === 1 ){ //摄像机捕捉模型目标 this.camera.transform.lookAt(this.box.transform.position, this._up); } else if (this.index % 3 === 2){ //摄像机捕捉模型目标 this.camera.transform.lookAt(this....

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