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

大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0083 秒)

1581. 二进制文件打包后,读取不到zip包内的文件 [ 74%]

...}]         Laya.loader.load(loaditem, Laya.Handler.create(this, function (res) {             let item = 'res/layabox.png'             let getres = Laya.loader.getRes(item)             console.log('getres',getres) //这个返回undefined     ...

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

1582. Sprite-旋转缩放 [ 74%]

...dScale { private var ape:Sprite; private var scaleDelta:Number = 0; public function Sprite_RoateAndScale() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.sta...

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

1583. 深入理解LayaAir引擎架构和实现原理(三)引擎渲染主循环与AOP介入控制 [ 74%]

...ationFrame || win.oRequestAnimationFrame || win.msRequestAnimationFrame || function (fun: any): any { return win.setTimeout(fun, 1000 / 60); } initRender()为画布初始化函数,创建和保存了WebGL上下文环境。如需更改canvas的参数,如设置是否抗锯齿,请在初始化引...

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

1584. 引用的类库问题 [ 74%]

引用的类库问题 var ViewStack=(function(_super){ function ViewStack(){ this._items=null; this._selectedIndex=0; ViewStack.__super.call(this); this._setIndexHandler=Handler.create(this,this.setIndex,null,false); } __class(ViewStack,'laya.ui.ViewStack',_super); 1. ViewStack.__super.call(this); ...

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

1585. 滤镜-模糊滤镜 [ 74%]

...Blur { private const apePath:String = "../../res/apes/monkey2.png"; public function Filters_Blur() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scale...

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

1586. 位图字体预加载 [ 74%]

位图字体预加载 private function loadFont():void         {             var bitmapFont:BitmapFont = new BitmapFont();             bitmapFont.loadFont("../../../../res/bitmapFont/test.fnt",new Handler(this,onFontLoaded, [bitmapFont]));         }         priva...

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

1587. 射线检测-碰撞器混合 [ 74%]

... ]; Laya.loader.create(resource, Laya.Handler.create(this, onLoadFinish)); function onLoadFinish() { this.scene = Laya.stage.addChild(Laya.Scene.load("../../res/threeDimen/scene/ColliderScene/ColliderDemo.ls")); //初始化照相机 this.camera = this.scene.addChild(new Laya.Camera(0, 0.1, 100)); th...

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

1588. LayaNative中加载自己缓存的资源 [ 74%]

...功了,但是用Laya.loader.load 读取的时候始终读不了private function downloadFile(url:String,onComplete:Handler,onError:Handler=null):void{ if(window.conch) { var folder:String=window.conch.getCachePath()+"/download/"; if (!window.fs_exists(folder)) { window.fs_mkdir(folder); } var file...

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

1589. laya.physics.PhysicsDebugDraw_API3.0 [ 73%]

...s type: string Optional data: any Returns void callLater callLater(method: Function, args?: any[]): void Inherited from Node.callLater Defined in laya/display/Node.ts:621 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 see #runCallLater() Pa...

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

1590. 缓动动画(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 73%]

...看演示DEMO,链接:[https://layaair.ldc.layabox.com/demo/?Tween_EaseFunctionsDemo](https://layaair2.ldc2.layabox.com/demo2/?language=zh&category=2d&group=Tween&name=EaseFunctionsDemo) ### 2.缓动类的常用API介绍 #### 2.1 Tween缓动类的常用方法from()与to() 缓动类Tween提供了...

来源: Laya2.0_文档 发布时间: 20210715