大约有 9 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0027 秒)
...处理,不处理的话内容有可能超出我们舞台。 Laya.display.text 中所使用的API 参数: ![1](img/1.png) hidden:不显示超出文本域的字符。 visible:不进行任何裁切。 scroll:不显示文本域外的字符像素,并且支持scroll接口。 ```typescript package { i...
来源: Laya2.0_文档 发布时间: 20210715
...处理,不处理的话内容有可能超出我们舞台。 Laya.display.text 中所使用的API 参数: ![1](img/1.png) hidden:不显示超出文本域的字符。 visible:不进行任何裁切。 scroll:不显示文本域外的字符像素,并且支持scroll接口。 ```typescript module laya...
来源: Laya2.0_文档 发布时间: 20210715
...处理,不处理的话内容有可能超出我们舞台。 Laya.display.text 中所使用的API 参数: ![1](img/1.png) hidden:不显示超出文本域的字符。 visible:不进行任何裁切。 scroll:不显示文本域外的字符像素,并且支持scroll接口。 ```javascript (function()...
来源: Laya2.0_文档 发布时间: 20210714
... 下面演示获取旋转方位信息: ```typescript private var info:Text; public function Gyroscope_Sample() { Laya.init(550, 400); info = new Text(); info.fontSize = 50; info.color = "#FFFFFF"; info.size(Laya.stage.width, Laya.stage.height); Laya.stage.addChil...
来源: Laya2.0_文档 发布时间: 20210714
...方位信息: ```typescript class Gyroscope_Sample { private info: Laya.Text; constructor() { Laya.init(550, 400); this.info = new Laya.Text(); this.info.fontSize = 50; this.info.color = "#FFFFFF"; this.info.size(Laya.stage.width, Laya.stage.height); Laya.stage.addChild(this.info); Laya.Gyroscope....
来源: Laya2.0_文档 发布时间: 20210715
...转方位信息: ```typescript Laya.init(550, 400); this.info = new Laya.Text(); this.info.fontSize = 50; this.info.color = "#FFFFFF"; this.info.size(Laya.stage.width, Laya.stage.height); Laya.stage.addChild(this.info); Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, onDeviceorientation); ...
来源: Laya2.0_文档 发布时间: 20210714
..., 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