大约有 2,727 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0066 秒)
Laya_社区(1131) Laya3.0_api(543) Laya2.0_api(297) laya_api(221) Laya2.0_文档(201) Laya_示例(139) Laya2.0_示例(109) Laya3.0_文档(86)
...tic function createTexture(s:Sprite,callback:Function,callbackThis:Object):void{ createTextureCallBack = callback; var htmlCanvas:HTMLCanvas = s.drawToCanvas(512,512,0,0); var realCanvas:* = htmlCanvas.getCanvas(); var img:* = Browser.window.convertCanvasToImage(realCanvas,createTextureOnImgReady,ca...
来源: Laya_社区 发布时间: 20170718
...bindList=[]; } /** * 绑定 * @param source */ bind(source:BindSource):void{ let index:number=this.__bindList.indexOf(source); if(index<0){ this.__bindList.push(source); } this.addChild(source); this.timer.frameLoop(1,this,this.__updateBinds); } unbind(source:BindSource):void{ let index:n...
来源: Laya_社区 发布时间: 20190805
...); Laya.stage.on("click", this, this.onStageClick); } private createMap(): void { this.tiledMap = new TiledMap(); this.tiledMap.createMap("../../res/tiledMap/isometric_grass_and_water.json", new Rectangle(0, 0, Laya.stage.width, Laya.stage.height), Handler.create(this, this.mapLoaded), null, new Poi...
来源: Laya_示例 发布时间: 20241119
...绘制图形后,mouse_over触发scale显示有问题 private _initView():void { if(this._objectInfo.templateInfo.type == "hole") { this._body = new Sprite(); this._body.graphics.drawCircle(0, 0, this._objectInfo.templateInfo.width, "#ff0000"); this._body.width = this._objectInfo.templateInfo.width...
来源: Laya_社区 发布时间: 20180308
...ed)); } /***加载资源完成***/ private function onSkinLoaded(e:*=null):void { //显示背景图 showBg(); //创建计数器 createCounter(); //显示总数 showTotal(); //创建控制按钮 createController(); } /***显示背景***/ private function showBg():void { //实例化背景图 var bg:Im...
来源: Laya2.0_文档 发布时间: 20210714
...a中代码:export default class Test { public static onClick():void{ alert("123456"); } public static onClick1():void{ } } 原生中代码:ConchJNI.RunJS("Test.onClick()"); 原生中报错:ReferenceError: Test is not defined 附件 : --> TE...
来源: Laya_社区 发布时间: 20190313
...根本无从下手,调用的bitmapFont.loadFont这类函数返回值是void,也不知道是资源没加载,还是路径错误,还是数据错误。。。还有这个Text.registerBitmapFont也是一样,返回void,这类api如果都是void返回,一旦出现问题,真不知道如何排...
来源: Laya_社区 发布时间: 20181107
...流畅度。 Public Methods MethodDefined By clearBySign(sign:String):void[static] 清除对象池的对象。 Pool getItem(sign:String):*[static] 根据传入的对象类型标识字符,获取对象池中已存储的此类型的一个对象,如果对象池中无此类型的对象,则...
来源: laya_api 发布时间: 20170929
...s:10 Methods addCondition addCondition(condition: AnimatorStateCondition): void Defined in laya/components/AnimatorTransition2D.ts:30 增加一个条件 Parameters condition: AnimatorStateCondition Returns void check check(normalizeTime: number, paramsMap: Record<string, Animation2DParm>, isRe...
来源: Laya3.0_api 发布时间: 20231115
...er.ATLAS}], Handler.create(this, onLoaded)); } private function onLoaded():void { //实例UI界面 Laya.stage.bgColor="#353535"; sp1=createSprite(50,50);//创建方块1 sp2=createSprite(250,50);//创建方块2 sp3=createSprite(450,50);//创建方块3 addTime(timeLine1,sp1,200);//sp1添加缓动,...
来源: Laya_社区 发布时间: 20161207