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

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

261. 3D模型旋转问题,鼠标移动之后,根据按下移动的X坐标差值判断左右旋转,但是会越转越快,请问是什么问题? [ 86%]

...(this.isDown){ if(this.lastMouseX - mX > 0) { vec = new Laya.Vector3(0,-1,0); } else { vec = new Laya.Vector3(0,1,0); } this.rotate(vec); } }   监听的鼠标移动事件 Laya.stage.on(Laya.Event.MOUSE_UP,this,this.mouseUp); Laya.stage.on(Laya.Event.MOUSE_DOWN,this,this.mouseDown); Laya.stage.o...

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

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

...Floor.js 开始编写代码 这里 我们想一下地板有哪些功能? 1、自身从右到左运动 超出左边边界 就移除存入对象池 2、地板上可以添加东西  (function(){ /** * 地板类 */ function Floor(){ Floor.__super.call(this); } //Floor 是一个显示对象 继承此 ...

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

263. UI-Clip [ 86%]

...ew Image(bgSkin); bg.size(224, 302); bg.pos(Laya.stage.width - bg.width >> 1, Laya.stage.height - bg.height >> 1); Laya.stage.addChild(bg); } function createTimerAnimation() { counter = new Clip(clipSkin, 10, 1); counter.autoPlay = true; counter.interval = 1000; counter.x = (Laya.stage.width - count...

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

264. HTMLDivElement下划线换行时,下划线颜色错误 [ 86%]

...ic.drawLine(startWord.x,lineY,lastWords.x+lastWords.width,lineY,this.color,1); var hitRec=HTMLHitRect.create(); hitRec.rec.setTo(startWord.x,lastWords.y,lastWords.x+lastWords.width-startWord.x,lastWords.height); hitRec.href=this.href; recList.push(hitRec); }graphic.drawLine()这里会用到this.colo...

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

265. layair 两点之间的距离api在哪里 [ 86%]

layair 两点之间的距离api在哪里 2018-08-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 阿耀 赞同来自: 陌离 纯数学问题,可以自己封装,laya并没有这样的api /** * * @param {坐...

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

266. 分享,扩展Laya.Text组件实现简单的富文本 [ 86%]

...展Laya.Text组件实现支持换色、加粗、下划线的文本类型 2018-04-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 6 个回复 he853066732 赞同来自: 176*****233 主要思路就是根据文本里面的关...

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

267. laya.display.Sprite [ 86%]

...Public Properties PropertyDefined By  alpha : Number透明度,值为0-1,默认值为1,表示不透明。更改alpha值会影响drawcall。Sprite  autoSize : Boolean = false 指定是否自动计算宽高数据。默认值为 false 。 Sprite宽高默认为0,并且不会随着绘制内...

来源: laya_api 发布时间: 20170929

268. Spine骨骼动画点击区域偏移 获取不到width height [ 86%]

... console.log(sprite.width,sprite.height));      } 附件 : --> ZG.zip 2016-11-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自:      spine动画实际上就相当于是一个sprite...

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

269. UI-Clip [ 86%]

...ew Image(bgSkin); bg.size(224, 302); bg.pos(Laya.stage.width - bg.width >> 1, Laya.stage.height - bg.height >> 1); Laya.stage.addChild(bg); } createTimerAnimation() { const Clip = Laya.Clip; this.counter = new Clip(clipSkin, 10, 1); Laya.stage.addChild(this.counter); this.counter.autoPlay = true; th...

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

270. drawPath的绘制问题 [ 86%]

...0,lineTo,32,448,moveTo,64,0,lineTo,64,448,moveTo,96,0,lineTo,96,448,moveTo,128,0,lineTo,128,448,moveTo,160,0,lineTo,160,448,moveTo,192,0,lineTo,192,448,moveTo,224,0,lineTo,224,448,moveTo,256,0,lineTo,256,448,moveTo,288,0,lineTo,288,448,moveTo,320,0,lineTo,320,448,moveTo,352,0,lineTo,352,448,moveTo,3...

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