• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 2,727 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0072 秒)

991. laya.utils.Browser_API3.0 [ 79%]

...c clientHeight get clientHeight(): number set clientHeight(value: number): void Defined in laya/utils/Browser.ts:401 浏览器窗口可视高度。 通过分析浏览器信息获得。浏览器多个属性值优先级为:window.innerHeight(包含滚动条高度) > document.body.clientHeight(不...

来源: Laya3.0_api 发布时间: 20231115

992. 新人求助:onStart赋值为什么在onUpdate会输出一次为空 [ 79%]

...xtends Laya.Script{          lab:Laya.Label;      onAwake():void{             }     onStart():void{                this.lab=this.owner as Laya.Label;         }         onUpdate():void{         if(this.lab==null){         ...

来源: Laya_社区 发布时间: 20200602

993. 小游戏子域程序加载到图集后,取图集内资源报错。 [ 79%]

...源报错。 MsgMgr.instance.init(); Laya.timer.once(1000,this,function():void{ beginLoad(); }); private function beginLoad():void { Laya.loader.load("res/images/rank.json", Handler.create(this, onLoaded)); } private function onLoaded():void { trace("加载成功"); var c:Image = new Image("rank/cou...

来源: Laya_社区 发布时间: 20180830

994. 性能测试-卡通人物 [ 79%]

...this.createCharacters), null, Loader.ATLAS); } private createCharacters(): void { this.characterGroup = []; for (var i: number = 0; i = 0; --i) { this.animateCharactor(this.characterGroup[i]); } } private animateCharactor(charactor: Sprite): void { charactor.x += this.moveSpeed; charactor.rotation +...

来源: Laya2.0_示例 发布时间: 20241119

995. LayaFlash针对资源的加载是同步还是异步? [ 79%]

....net.URLRequest; public class Main extends Sprite { public function Main():void { if (stage) init(); else addEventListener(Event.ADDED_TO_STAGE, init); } private function init(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); this.stage.scaleMode = StageScaleMode.NO_SCALE; this...

来源: Laya_社区 发布时间: 20151123

996. 如何与服务端建立连接 [ 79%]

...法 成功失败。。 private function openHandler(event:Object = null):void{//正确建立连接; }private function receiveHandler(msg:Object = null):void{///接收到数据触发函数}private function closeHandler(e:Object= null):void{//关闭事件}private function errorHandler(e:Object = nu...

来源: Laya_社区 发布时间: 20180514

997. Android用java原生的切出事件没用 [ 79%]

...,下面给出大概的代码           @Override         public void onActivityStarted(Activity activity) {             //这是切入事件             ConchJNI.RunJS("xxx");         }        @Override         public void onActivityStopped(Activity activity) {   ...

来源: Laya_社区 发布时间: 20201226

998. UI-ColorPicker [ 79%]

...this, this.onColorPickerSkinLoaded)); } private onColorPickerSkinLoaded(): void { var colorPicker: ColorPicker = new ColorPicker(); colorPicker.selectedColor = "#ff0033"; colorPicker.skin = this.skin; colorPicker.pos(100, 100); colorPicker.changeHandler = new Handler(this, this.onChangeColor, [color...

来源: Laya_示例 发布时间: 20241119

999. laya.display.Stage [ 79%]

...ode 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node...

来源: laya_api 发布时间: 20170929

1000. 和原生Dom交互 · LayaAir3.0文档 · LAYABOX [ 79%]

...u8'); hls.attachMedia(video); hls.on(Hls.Events.MANIFEST_PARSED,function():void{ video.play(); }); } plyr.setup(video); } } new LayaUISample; 编译运行代码,发现网页已经可以播放视频了。开发者可能注意到这里我们初始化引擎的时候是这样的: Laya.init(0,0);//...

来源: Laya3.0_文档 发布时间: 20241014