大约有 510 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0051 秒)
Laya_社区(449) Laya2.0_示例(10) Laya2.0_文档(10) Laya_示例(10) Laya3.0_api(9) Laya2.0_api(9) laya_api(7) Laya3.0_文档(6)
...yName("camera") as Laya.Camera; } onUpdate(){ var touchCount = this._scene.input.touchCount(); if (1 === touchCount){ //判断是否为两指触控,撤去一根手指后引发的touchCount===1 if(this.isTwoTouch){ ...
来源: Laya_社区 发布时间: 20190605
...老版本微信的问题。 陆仁毅 • 2019-09-25 12:01 可以用scene.input.multiTouchEnabled = false;关了3d的多点触碰试试 Kerry • 2019-09-25 12:06 @陆仁毅:微信版本没有关闭3d多点触控,回头我去测试一下 ,但是在vivo上 scene.input.multiTouchEnabled = false,...
来源: Laya_社区 发布时间: 20190925
安卓手机调取键盘时页面没有上移 input填写信息调取键盘时,在ios上正常,页面会上移,在安卓手机页面并没有上移。 附件 : --> 2017-11-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...
来源: Laya_社区 发布时间: 20171106
...容相关的链接 提交 1 个回复 1567600631用户 赞同来自: 监听input事件 2024-02-29 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 林桦生 相关问题 2.0一不小心删了bin目录下的某个场景json文件。。竟...
来源: Laya_社区 发布时间: 20240228
[LayaAir3]TextInput节点的子节点Sprite为什么在getChildAt中是1的索引而不是0 在最新的Layaair3中,在TextInput下的子节点Sprite,在TextInput的脚本中,访问getChildAt(0)是Input,而不是Sprite,而Spirit是getChildAt(1) 附件 : --> LayaProject6.zip 2025-03-24 ...
来源: Laya_社区 发布时间: 20250324
...lace is not a function TypeError: text.replace is not a function at Input.__proto.parseLines (file:///D:/LayaAirIDE/resources/app/out/vs/layaEditor/h5/laya.js:60001:19) at Input.__proto.typeset (file:///D:/LayaAirIDE/resources/app/out/vs/layaEditor/h5/laya.js:59934:9) at TimerHa...
来源: Laya_社区 发布时间: 20191108
...cumentationAll Packages | All Classes | Index | Frames No Frames TextInputProperties | Methods | Events Packagelaya.uiClasspublic class TextInputInheritanceTextInput Label Component Sprite Node EventDispatcher ObjectSubclasses TextArea TextInput 类用于创建显示对象以显示和输入...
来源: laya_api 发布时间: 20170929
... tmpColors.join(","); } } } /** * 输入框样式赋值 * @param {Laya.TextInput} input * @param {ITextFormat} styleObj */ assignTextInputFontStyle(input: Laya.TextInput, style: string | ITextFormat): void { let styleObj: ITextFormat; if (typeof style === "string") { styleObj = this.getStyleById(sty...
来源: Laya_社区 发布时间: 20171226
...部有个黑色块的问题 在执行到laya.core.js中第16443行代码的input.focus()后就会出现黑色块,在重新点击之后黑色块会消失,有点影响体验,但input.focus()我暂时没找到定义,在注释之后不会出现黑色块,但web的输入框选中要点击两次...
来源: Laya_社区 发布时间: 20230111
原生js实现复制到剪贴板功能在浏览器中不可用 var oInput = document.createElement('input'); oInput.value = "复制的内容"; document.body.appendChild(oInput); oInput.select(); // 选择对象 document.execCommand("Copy"); // 执行浏览器复制命令用原生js实现复制功...
来源: Laya_社区 发布时间: 20180428