大约有 1,385 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0063 秒)
Laya_社区(1080) Laya2.0_文档(80) Laya3.0_api(75) Laya_示例(42) Laya2.0_示例(40) Laya3.0_文档(27) Laya2.0_api(22) laya_api(19)
...](https://img-blog.csdnimg.cn/94 ... rmark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA5p6B5a6i5LiD,size_20,color_FFFFFF,t_70,g_se,x_16) - 2行代码解决 ![在这里插入图片描述](https://img-blog.csdnimg.cn/c4 ... rmark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA5p6B5a6i5LiD,size_20,color_FFF...
来源: Laya_社区 发布时间: 20220207
...nSelect_small(e) { Laya.big_switch = 0 Laya.maptype = "small" this.now_map.text = "当前地图:" + this.small_map.selectedLabel Laya.map_small_c = e } function onSelect_big(e) { if (e != 0) { if (Laya.keys > 0) { Laya.big_switch = 0 Laya.map_big = e Laya.maptype = "big" this.small_map.selected...
来源: Laya_社区 发布时间: 20180719
...> { this.showDialog("注册功能暂未开放") }); } showDialog(context: string) { // if (this.normalDialog) { // this.normalDialog.close(); // } this.normalDialog = new NormalDialog(context); this.normalDialog.popup(true, true); Laya.stage.addChild(this.normalDialog); } } // 弹...
来源: Laya_社区 发布时间: 20181216
...url: string, data?: any, method?: "get" | "post" | "head", responseType?: "text" | "json" | "xml" | "arraybuffer", headers?: string[]): void Defined in laya/net/HttpRequest.ts:46 发送 HTTP 请求。 Parameters url: string 请求的地址。大多数浏览器实施了一个同源安全策略,并...
来源: Laya3.0_api 发布时间: 20231115
为什么这个ui中给这个TextInput组件runtime属性绑定了一个类 绑定了这个类后, class TextInputEx extends Laya.TextInput constructor() { console.log("执行了"); super() ; } // 获取焦点 onFocus() : void { console.log("焦点进入"); // 是否缓存初始的文本提示字...
来源: Laya_社区 发布时间: 20181012
...aya3D 中如何解决3D模型上添加文本的问题,类似Unity中的3DText 2018-08-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 1种是准备有文字的贴图,贴上去, 2...
来源: Laya_社区 发布时间: 20180814
...h:Number = 1):DrawCurvesCmd 绘制一系列曲线。 Graphics drawImage(texture:Texture, x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0):DrawImageCmd 绘制单独图片 Graphics drawLine(fromX:Number, fromY:Number, toX:Number, toY:Number, lineColor:String, lineWidth:Number = 1...
来源: Laya2.0_api 发布时间: 20190513
...语句: <!--用于加解密--> <script type="text/javascript" src="thirdlibs/components/core-min.js"></script> <script type="text/javascript" src="thirdlibs/rollups/rc4.js"></script> <script type="text/javascript" src="thirdlibs/rollu...
来源: Laya_社区 发布时间: 20170116
...; musicButton.on(Event.CLICK, this, this.onPlayMusic); } createButton(labelText) { let w = 110, h = 40; const Sprite = Laya.Sprite; let btn = new Sprite(); Laya.stage.addChild(btn); btn.size(w, h); btn.graphics.drawRect(0, 0, w, h, "#FF7F50"); btn.graphics.fillText(labelText, w / 2, 8, "24px SimHei"...
来源: Laya2.0_示例 发布时间: 20241128
...a.stage.addChild(this); this.zOrder = 100; this.count = 4; this.countLabel.text = '' + this.count; Laya.timer.loop(1000, this, this.countdown); } Laya.class(countdownBar, "CountdownBar", CountdownUI); return countdownBar; }()); CountdownBar.prototype.countdown = function () { this.count--; if (this....
来源: Laya_社区 发布时间: 20171012