大约有 28 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0058 秒)
...时,用mouseHandler;你可以使用,自定义数据结构来填充list.array,会相当方便;填充item时,不需要所有属性都跟你的数据结构匹配上,多余的属性即便未设置也不会引发异常;list外面嵌套plane的话,能解决很多问题;list数据结构更新...
来源: Laya_社区 发布时间: 20180407
... : BooleanSprite editable : Boolean 是否可编辑。 Input filters : Array滤镜集合。可以设置多个滤镜组合。Sprite focus : Boolean 表示焦点是否在此实例上。 Input font : String 文本的字体名称,以字符串形式表示。 默认值为:"Arial",可以通...
来源: Laya2.0_api 发布时间: 20190513
...,实现在laya.core.js的20644行,drawToCanvas返回的是pixels:Uint8Array,这东西怎么变成HTMLCanvas? 如果只能变成Texture,那么我需要存盘的问题仍然没有解决,而且我也没找到怎么把Sprite直接画到canvas上的方法 2017-05-23 0 0 分享 微博 QZONE...
来源: Laya_社区 发布时间: 20170523
...{ public function Main() { //初始化引擎 Laya.init(500,500); var skins:Array = [ "res/button-1.png" ]; Laya.loader.load(skins, Handler.create(this, onUIAssetsLoaded)); } public function onUIAssetsLoaded():void { var btn:Button = new Button("res/button-1.png"); Laya.stage.addChild(btn); //创建...
来源: Laya2.0_文档 发布时间: 20210715
...日志: a1: Handler {once: true, _id: 6, caller: null, args: Array[1]} a2: Handler {once: true, _id: 0, caller: null, method: null, args: null} b: Handler {once: true, _id: 7, caller: null, args: Array[1]} a3: Handler {once: true, _id: 7, caller: nul...
来源: Laya_社区 发布时间: 20161109
...rate of the AudioContext var frameCount = audioCtx.sampleRate * 2.0; var myArrayBuffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate); window.onclick = function() { // Fill the buffer with white noise; //just random values between -1.0 and 1.0 for (var channel = 0; channel < channels...
来源: Laya3.0_文档 发布时间: 20241014
...中通过图集的方式显示出来,示例代码如下: let resArr: Array<any> = [ { url: "resources/atlas/Atlas.atlas", type: Laya.Loader.ATLAS }, { url: "resources/atlas/Atlas_ui.atlas", type: Laya.Loader.ATLAS }, { url: "resources/atlas/Atlas_comp.atlas", type: Laya.Loader.ATLAS }]; La...
来源: Laya3.0_文档 发布时间: 20241014
...源。 批量预加载的示例代码如下: ```typescript var resource:Array = [ "xx.ls", "xx/xx.lh", "xx/xx.lmat", "xx/xx.png", "xx/xx.lm", "xx/xx.ltc", "xx/xx.lani", ]; //批量预加载 Laya.loader.create(resource, Laya.Handler.create(this, this.onLoaded)); onLoaded(): void { //加载完成后...
来源: Laya2.0_文档 发布时间: 20210714