大约有 1,738 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0059 秒)
Laya_社区(1374) Laya2.0_文档(82) Laya3.0_api(68) Laya2.0_api(57) laya_api(53) Laya3.0_文档(45) Laya_示例(32) Laya2.0_示例(27)
... 要回复问题请先登录 发起人 tigerzxd 相关问题 两个对象new了一个相同的对象,调用第一个的一个方法,走进了第二方法里 请问LayaAir中如何使图片以圆形的方式显示? 请问laya有没有地图编辑器工具? 请问有没有方法能够获取“...
来源: Laya_社区 发布时间: 20160616
... Laya.stage.width / 2, Laya.stage.height / 2, "#ffff00"); var btn:Sprite = new Sprite(); btn.size(200, 100); btn.graphics.drawRect(0, 0, btn.width, btn.height, "#ff00ff"); Laya.stage.addChild(btn); btn.on(Event.MOUSE_DOWN, this, function():void { btn.filters = [new GlowFilter("#ff0f0f")]; } ); btn.o...
来源: Laya_社区 发布时间: 20181221
...(this,onLoaded)); function onLoaded(){ //实例化导出的UI类 var efc = new ui.TestPUI(); //添加到舞台 Laya.stage.addChild(efc); } ``` 运行后,按钮被按下时,动画效果如动图11所示: ![12](img/12.gif)(图11) ### 4、多个动效模板创建复杂动效 刚刚实现了按钮...
来源: Laya2.0_文档 发布时间: 20210715
...shRender.sharedMaterial as StandardMaterial; var transformUV:TransformUV = new TransformUV(); transformUV.offset= new Vector2(); 2017-06-09 3 3 分享 微博 QZONE 微信 cuixueying 赞同来自: 我们先看下,晚些回复! 2017-06-09 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个...
来源: Laya_社区 发布时间: 20170609
...什么? 自从layaflash起,就一直存在的bug Laya.Handler.create和new Laya.Handler有啥区别 LayaAir 3D 有提供 3D 物理引擎功能吗? 按官网上的文档 使用LayaNative运行LayaAir项目https://ldc.layabox.com/doc/?nav=zh-as-7-0-1。出现了问题 在初始化时候使用can...
来源: Laya_社区 发布时间: 20160126
...否完成的事件? protected onCreate(): Laya.View { this.RootPanel = new ui.test.gameLayerUI(); console.log(this.RootPanel.my_laya.width); // this.RootPanel.on(Laya.Event.RENDER,this,this.bindEvent); return this.RootPanel; }说明:这是一个框架下用来创建界面的create方法,该 ga...
来源: Laya_社区 发布时间: 20200227
...法) public function 加载图片的方法():void{ var s:sprite = new sprite(); s.skin = "图片路径"; laya.stage.addChild(s); } 2018-04-16 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 cyk123 相关问题 【屏幕适...
来源: Laya_社区 发布时间: 20180416
...有<style>标签,第二帧再刷会报错的问题 this.m_htmlInfo = new HTMLDivElement(); this.m_htmlInfo.innerHTML = htmlText; this.frameOnce(1, this, function(){ this.m_htmlInfo.innerHTML = htmlText; }) 2017-03-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20170314
...一下,最后回到原大小或原位置,应该用什么缓动模式 new Laya.Sprite();绘制图形以后,怎么删除释放资源? 请问如何让textinput组件输入密码的时候显示*号? List滑动条会引起单元格上的按钮点击后多次触发点击事件 3d项目-unity添...
来源: Laya_社区 发布时间: 20190222
...垂直对齐 Laya.stage.alignV = "middle"; //实例一个背景 let bg = new Image(); bg.skin = "res/bg.jpg"; Laya.stage.addChild(bg); //实例一个文本 this.txt = new Text(); this.txt.text = "点击我切换适配模式(noscale)"; this.txt.bold = true; this.txt.pos(0, 200); this.txt.fontSize = 3...
来源: Laya2.0_示例 发布时间: 20241119