大约有 164 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
...:(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
....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
...恢复正常。 游戏参数: 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
...a获取的ImageData是空的。 htmlCanvas.context.getImageData(0,0, 1334, 750); 这个方法在网页里面可以获取到Uint8ClampedArray类型的图片数据。但是在Native下读取出来是undefind。求解释。不要告诉我在Native下是WebGLCanvas我已经试过了。在Native下就是...
来源: Laya_社区 发布时间: 20180120
.../初始化微信小游戏 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
...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
...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
...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
...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
... //初始化引擎 Laya.init(1334, 750); Laya.stage.alignH=Stage.ALIGN_MIDDLE; Laya.stage.alignV=Stage.ALIGN_CENTER; btn1 = new Button(null,"显示"); ...
来源: Laya_社区 发布时间: 20180425