大约有 87 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0053 秒)
..., function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子是在worker中进行加载文件,加...
来源: Laya2.0_文档 发布时间: 20210715
..., function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子是在worker中进行加载文件,加...
来源: Laya2.0_文档 发布时间: 20210715
..., function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子是在worker中进行加载文件,...
来源: Laya2.0_文档 发布时间: 20210715
...ive2 打包android平台 报错 btCollisionObject undefined 请问如何让textinput组件输入密码的时候显示*号? List组件 repeat(x/y)设置问题 寻路导航示例中添加Laya.PathFind组件报异常 自定义官方组件报错,有无官方例子下载? laya有RichText的组件...
来源: Laya_社区 发布时间: 20170227
...PlayCompleteNotify; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Environment; import android.os.Handler; import android.os.Looper; import android.os.Message; import android.util.Log; import org.json.JSONException; import org.json.JSONO...
来源: Laya_社区 发布时间: 20170722
...透视效果,位置信息等。 在2.1节中的Prefab2D中,添加一个Text节点,命名为“value”,并将ProgressBar重命名为“bar”,接着勾选value、bar的定义变量选项。保存场景后,就像处理2D UI的操作一样,在根节点上添加Runtime类,添加逻辑...
来源: Laya3.0_文档 发布时间: 20241014
...Protected All Inherited Externals Only exported Menu Globals "laya/display/Text" Text Class Text Text 类用于创建显示对象以显示文本。 注意:如果运行时系统找不到设定的字体,则用系统默认的字体渲染文字,从而导致显示异常。(通常电脑上显示正...
来源: Laya3.0_api 发布时间: 20231115
...与用户点击输入时的文本的位置有少许的偏差。 Hierarchy Text Input Index Constructors constructor Properties _extra _onPostLayout _ownGraphics _parseEscapeChars _scene _skinBaseUrl _url autoSize hitTestPrior ignoreLang mouseThrough name tag ELLIPSIS HIDDEN RightToLeft SCROLL SHRINK...
来源: Laya3.0_api 发布时间: 20231115
...ndler; WebGL = Laya.WebGL; Animation = Laya.Animation; Label = Laya.Label; Text = Laya.Text; Point = Laya.Point; Tween = Laya.Tween; TextArea = Laya.TextArea; class UI_RefreshList { constructor() { this.baseBox = null; this.refreshLoading = null; this.loadingAni = null; this.loadingLabel = null; thi...
来源: Laya2.0_示例 发布时间: 20241124
...set="UTF-8"> <title>Test WebSocket</title> <script type="text/javascript"> //显示信息 var log = function(s) { if (document.readyState !== "complete") { log.buffer.push(s); } else { document.getElementById("output").textContent += (s + "\n"...
来源: Laya_社区 发布时间: 20170724