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

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

751. laya.ui.UIComponent_API3.0 [ 69%]

...hitTestPrior mouseThrough name tag drawtocanvCtx Accessors _isHeightSet _isWidthSet active activeInHierarchy alpha anchorX anchorY blendMode bottom cacheAs centerX centerY components customRenderEnable dataSource destroyed disabled displayHeight displayWidth displayedInStage drawCallOptimize filters...

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

752. UI-ScrollBar [ 69%]

... HScrollBar(); Laya.stage.addChild(hs); hs.skin = "res/ui/hscroll.png"; hs.width = 300; hs.pos(50, 170); hs.min = 0; hs.max = 100; hs.changeHandler = new Handler(this, this.onChange); } placeVScroller() { const VScrollBar = Laya.VScrollBar, Handler = Laya.Handler; let vs = new VScrollBar(); Laya.sta...

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

753. 2.0UI的生命周期感觉有问题 [ 69%]

...没有发成功 斜角透视的感觉怎么弄出来呀?? Sprite中的width,height和size(width,height)感觉没作用啊 layabox2d例子,虽然出来效果,但是总感觉跟laya挂钩不上。 关于动画模板 除了官网的介绍有没有什么比较好的 实例 或者demo的...

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

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

...ight; if(hasLine) graphic.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()...

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

755. 特效LOADED监听不到 [ 69%]

...Demo() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; Laya.loader.load(AniConfPath, Handler.crea...

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

756. [LayaAir 2.0] 如何用代码为Spirte添加2d物理特性 [ 69%]

...= this._boll1.addComponent(laya.physics.BoxCollider); box.height = 60; box.width = 28; //添加刚体 this._boll1.addComponent(Laya.RigidBody); //创建挡板 this.createPanel(); } private createPanel():void { let panel:Laya.Sprite = new Laya.Sprite(); panel.graphics.drawRect(0,100,100,20,0xffffff);...

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

757. sprite的rotation设置的位置不一样,子sprite的方向也不一样 [ 69%]

... Laya.Sprite(); var s2 = new Laya.Sprite(); var s3 = new Laya.Sprite(); s1.width = 64; s1.height = 64; s1.pivot(32, 32); s1.rotation = 90; s2.addChild(s3); s1.addChild(s2);    var s1 = new Laya.Sprite(); var s2 = new Laya.Sprite(); var s3 = new Laya.Sprite(); s1.width = 64; s1.height = 64; s1.pivo...

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

758. laya.ui.Image [ 69%]

...d-only] 对象的显示高度(以像素为单位)。 Component displayWidth : Number[read-only] 对象的显示宽度(以像素为单位)。 Component filters : Array滤镜集合。可以设置多个滤镜组合。Sprite globalScaleX : Number[read-only] 获得相对于stage的全局X轴...

来源: laya_api 发布时间: 20170929

759. [LayaAir3]在3d相机设置视图矩形后 检测3d场景下的点击计算问题 [ 69%]

...3DUnderPoint  里判断点击区域得考虑设置视图矩形后viewport.width 变小的问题 见图二 附件 : --> 2024-06-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Fred 赞同来自: 您好,...

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

760. 请问:为什么适配模式导致帧率急速下降 [ 69%]

...方式,解决问题 (这样实现自适应,又不会因SCALE_FIXED_WIDTH适配模式性能问题了) //修改监听舞台变化 Laya.Stage.prototype["_changeCanvasSize"] = function(){    Laya.stage.designWidth=Laya.stage.height*Laya.Browser.width/Laya.Browser.height;    Laya.stage.setScr...

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