大约有 4,338 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0093 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
...ing = "../../res/apes/monkey2.png"; private var apeTexture:Texture; public function Filters_Color() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scal...
来源: Laya2.0_示例 发布时间: 20241126
...on(Laya.Event.CLICK, this, this.onFullScreen, null); _proto.onFullScreen = function () { toggleFullscreen(); }; function launchIntoFullscreen(element) { var element = document.documentElement; if (element.requestFullscreen) { element.requestFullscreen(); } else if (element.mozRequestFullS...
来源: Laya_社区 发布时间: 20190715
...); imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, finished); function finished(evt:Event):void { var img:Bitmap = new Bitmap(evt.target.content.bitmapData); stage.addChild(img); img.x=100; img.y = 100; img.addEventListener(function() { trace("QQQQQQQQ") }) } 想给Img设置size 不过...
来源: Laya_社区 发布时间: 20170321
...e addChildren(... args):void 批量增加子节点 Node callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, method:Function):void 清理定时器。功能同Lay...
来源: laya_api 发布时间: 20170929
...解这个判断的具体含义。 下面贴上实例中的完整代码: (function() { var Sprite = Laya.Sprite; var Text = Laya.Text; var WebGL = Laya.WebGL; var flag; (function() { Laya.init(1136, 640, WebGL)...
来源: Laya_社区 发布时间: 20170510
...组件实例。 Node addInputChild(node:Node):NodeNode callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.time...
来源: Laya2.0_api 发布时间: 20190513
...nds Sprite { private var urlLoader:URLLoader; private var l:Loader; public function UrlImage() { super(); if(stage) { init(); } else { this.addEventListener(Event.ADDED_TO_STAGE,init); } } private function init(e:Event=null):void { urlLoader=new URLLoader(); urlLoader.dataFormat=URLLoaderDataFormat....
来源: Laya_社区 发布时间: 20151228
...e addChildren(... args):void 批量增加子节点 Node callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, method:Function):void 清理定时器。功能同Lay...
来源: laya_api 发布时间: 20170929
...衣服,并出现在舞台上 //鼠标移动时触发的mousemove事件 function mousemove(){ point.push({ x:Laya.stage.mouseX, y:Laya.stage.mouseY, time:Date.now(), });//给point集合添加一个object,带有当前的鼠标位置...
来源: Laya_社区 发布时间: 20171018
...utils.Handler; import laya.webgl.WebGL; public class UI_ScrollBar { public function UI_ScrollBar() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya....
来源: Laya2.0_示例 发布时间: 20241126