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

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

721. 自己写了个label继承官方的label,出现了问题,求指导~ [ 62%]

...textFormat = textFormat; label.wordWrap = true; label.lWidth = 100; label.lHeight = 100; label.txt = "Hello"; label.lx = 100; label.ly = 100; Laya.stage.addChild(label); //---------------------------------这是用官方的api,无问题-------------------------------------------- // var label:laya...

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

722. 怎么实现一个Timer的loop的delay时间越来越短? [ 62%]

...同来自: public function LayaAirDemo() { Laya.init(Browser.width,Browser.height); Laya.stage.bgColor="#EEFFCC"; sp=new Sprite(); sp.graphics.drawRect(0,0,200,200,"#FF0000"); Laya.stage.addChild(sp); Laya.timer.loop(delay,this,onLoop); } private function onLoop():void { delay-=50; sp.x+=20; Laya.ti...

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

723. Laya.init(600,400,laya.webgl.WebGL);这里的600,400能否动态设置,比如手机上,获取显示区域的大小,传给引擎。 [ 62%]

... 提交 1 个回复 hj 赞同来自: Laya.init(Laya.stage.width,Laya.stage.height); 2018-09-18 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 george 相关问题 看了其他引擎才发现 LAYA 真的太太太太好用了!!!! ...

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

724. List属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 62%]

...eatY = 4; list.x = (Laya.stage.width - Item.WID) / 2; list.y = (Laya.stage.height - Item.HEI * list.repeatY) / 2; // 使用但隐藏滚动条 list.vScrollBarSkin = ""; list.selectEnable = true; list.selectHandler = new Handler(this, this.onSelect); list.renderHandler = new Handler(this, this.updateI...

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

725. laya.display.Input_API3.0 [ 62%]

...ISIBLE _passwordChar drawtocanvCtx isAppUseNewInput langPacks Accessors _isHeightSet _isWidthSet active activeInHierarchy align alpha anchorX anchorY bgColor blendMode bold borderColor cacheAs color components customRenderEnable destroyed displayHeight displayWidth displayedInStage drawCallOptimize ...

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

726. video在安卓手机上,怎么设置同层播放,还有怎么设置隐藏控制播放按钮 [ 62%]

...'); videoElement.setAttribute('width', '100%'); videoElement.setAttribute('height', '100%'); // videoElement.playbackRate = 2;//加速播放 // 设置画布上的对齐参照物 reference = new Sprite(); this.addChild(reference); reference.pos(0, 0); reference.size(GoldConsts.contextWidth, GoldConst...

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

727. 分享:销毁龙骨动画! [ 61%]

...ublic function ASDemo() { WebGL.enable(); Laya.init(Browser.width, Browser.height); Laya.stage.bgColor = "#ffffff"; Stat.show(); var DesBtn:Sprite = createButton("销毁动画"); DesBtn.x = 50; DesBtn.y = 50; Laya.stage.addChild(DesBtn); //创建一个Sprite充当音乐播放按钮 var addBtn:Sprite...

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

728. Resources already exist,is repeated loading 加载特效报重复加载 [ 61%]

... this.sp.x = Laya.stage.width / 2;         this.sp.y = Laya.stage.height / 2;     } } 打印的报错: 11111111111 TransformDemo.ts:73 Resources already exist,is repeated loading: D:/myLaya/myLaya/bin/res/threeDimen/particle/2d.lh laya.core.js:16639 [warn]Retry to load: null laya.core...

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

729. laya.ui.ScrollBar_API3.0 [ 61%]

...riggerDownDragLimit triggerUpDragLimit upButton drawtocanvCtx Accessors _isHeightSet _isWidthSet active activeInHierarchy alpha anchorX anchorY blendMode bottom cacheAs centerX centerY components customRenderEnable dataSource destroyed disabled displayHeight displayWidth displayedInStage drawCallOpt...

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

730. 屏幕适配API概述(ActionScript-2D基础篇(AS3)-屏幕适配) [ 61%]

...   设备像素分辨率:Laya.Browser.clientWidth,Laya.Browser.clientHeight;   设备物理分辨率:Laya.Browser.width,Laya.Browser.height;   像素比:Laya.Browser.pixelRatio;    默认从浏览器获得的clientWidth不是像素分辨率,而是经过缩放过的分辨率...

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