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

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

111. ui组件list数据源的疑问 [ 52%]

...:(function() { //初始化引擎,设置游戏设计宽高。 Laya.init(750, 1334); //设置适配模式 // Laya.stage.scaleMode = "noborder"; var test=new TeUI(); var arr=; for(var i;i<6;i++){ arr.push({m_lable:"NO."+i}); } console.log(test.m_list) test.m_list.array=arr; Laya.stage.addChild(t...

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

112. DragonBone动画使用(TypeScript-LayaAir基础篇(TS)-动画基础) [ 52%]

....ts,代码编写如下: ```typescript //初始化舞台 Laya.init(1334,750,Laya.WebGL); //创建一个Skeleton对象 var skeleton:Laya.Skeleton = new Laya.Skeleton(); //添加到舞台 Laya.stage.addChild(skeleton); skeleton.pos(600,350); //通过加载直接创建动画 skeleton.load("res/Drago...

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

113. (有demo)2d和3d结合,正交相机下,ui节点显示错位,与预期不符,且舞台不刷新 [ 52%]

...恢复正常。 游戏参数: GameConfig{     static width:number=750;     static height:number=1334;     static scaleMode:string="showall";     static screenMode:string="vertical";     static alignV:string="middle";     static alignH:string="center"; } window.screenO...

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

114. Native下htmlCanvas.context.getImageData获取的ImageData是空的。 [ 52%]

...a获取的ImageData是空的。 htmlCanvas.context.getImageData(0,0, 1334, 750); 这个方法在网页里面可以获取到Uint8ClampedArray类型的图片数据。但是在Native下读取出来是undefind。求解释。不要告诉我在Native下是WebGLCanvas我已经试过了。在Native下就是...

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

115. 微信小游戏iphoneX适配 (noborder 模式) [ 52%]

.../初始化微信小游戏 Laya.MiniAdpter.init(); //程序入口 Laya.init(750, 1334, true); //适配模式 Laya.stage.scaleMode = 'noborder'; Laya.stage.alignH = 'center'; Laya.stage.alignV = 'middle'; var homeUI = new HomeUI(); Laya.stage.addChild(homeUI); 4、我这里采用的是noborder模式...

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

116. DragonBone动画使用(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 51%]

...mo { public function DragonBonesDemo() { //初始化舞台 Laya.init(1334, 750); //创建一个Skeleton对象 var skeleton:Skeleton = new Skeleton(); //添加到舞台 Laya.stage.addChild(skeleton); skeleton.pos(600,350); //通过加载直接创建动画 skeleton.load("res/DragonBones/rooster/Rooste...

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

117. animate 动画播放 怎么把攻击 开火 合起来播放 [ 51%]

...e = new Laya.TimeLine(); constructor() { //初始化舞台 Laya.init(1334, 750, Laya.WebGL); //创建动画实例 this.roleAni = new Laya.Animation(); //加载动画图集,加载成功后执行回调方法 this.roleAni.loadAtlas("res/atlas/imgs/role/wp116.atlas", Laya.Handler.create(this, this.onL...

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

118. 请问graphics.drawTexture(texture)中如何增加一个matrix,只显示图中的一个圆形区域 [ 50%]

...oad=function(){ if(miniMap.complete==true){ var img = circle_image(miniMap,750,1334); console.log(miniMap); var miniMap1 = new Laya.Image(); miniMap1.loadImage(img); Laya.stage.addChild(miniMap1); } } miniMap.src=url;     function circle_image(img, oldImgWidth, oldImgHeight) { var width, height, c...

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

119. Dialog 第一次打开总是出现在窗口右下角,这是为啥,再打开就正常剧中了? [ 48%]

...Color":"#000000","runtime":"script/view/dialogs/SettingDialog.js","height":750}, "nodeParent":-1, "maxID":4, "label":"Dialog", "isOpen":true, "isDirectory":true, "isAniNode":true, "hasChild":true, "compId":2, "child":[ { "x":15, "type":"Image", "searchKey":"Image", "props":{"y":98,"x":450,"skin":"as...

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

120. canvas下资源清理的问题 [ 48%]

...           //初始化引擎             Laya.init(1334, 750);                          Laya.stage.alignH=Stage.ALIGN_MIDDLE;             Laya.stage.alignV=Stage.ALIGN_CENTER;                          btn1 = new Button(null,"显示");  ...

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