大约有 164 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0041 秒)
...ext,x,y){ var childs=this._childs; this._childs=this._showGridList; _super.prototype.render.call(this,context,x,y); this._childs=childs; }2.core中Sprite的zorder的set方法中 有一行代码有疑似bug,麻烦官方帮忙确认 /**z排序,更改此值,则会按照值的大小对同一容器...
来源: Laya_社区 发布时间: 20180412
...upportWebGLPlusAnimation) { avatar.prototype._cloneDatasToAnimator = avatar.prototype._cloneDatasToAnimatorNative; /*__JS__ */FloatKeyframe = window.conchFloatKeyframe; /*__JS__ */Vector3Keyframe ...
来源: Laya_社区 发布时间: 20190629
...; } CLASS$(MainSceneUI,'ui.MainSceneUI',_super); var __proto__=MainSceneUI.prototype; __proto__.createChildren=function(){ _super.prototype.createChildren.call(this); this.loadScene("MainScene"); } return MainSceneUI; })(Scene); 自动生成了这一段代码
来源: Laya_社区 发布时间: 20171213
...rt class PatchManager{} (function(){ let _proto:any; _proto = Laya.Scene.prototype; _proto.createView = function(view:Object){ if (view && !this._viewCreated) { this._viewCreated = true; Laya.SceneUtils.createByData(this, view); } this.onInit(); this.onShow(); Laya.timer.frameLoop(1, t...
来源: Laya_社区 发布时间: 20190222
...layaair/game/browser/ExportJavaFunction,methodName:captureScreen Offline.prototype.setSave=function(){ if( Laya.Browser.window.conch ) { var content=Laya.Browser.context; var width=800; var height=500; Laya.Browser.window.conch.captureScreen(function(content,width,height){ Laya.Browser.window.conc...
来源: Laya_社区 发布时间: 20180227
...ayer Laya.class(Player,"Player", laya.display.Sprite); var _proto = Player.prototype; //是否缓存了 Player.cached = false; _proto.init = function(){ //动画缓存起来 if(!Player.cached){ Player.cached = true; //根据不同的动画 来创建动画模板 laya.display.Animation.createFrames(['...
来源: Laya_社区 发布时间: 20160801
... // this.phasorSpriter3D = new Laya.PhasorSpriter3D(); } MousePickingScene.prototype.lateRender = function (state) { MousePickingScene.__super.prototype.lateRender.call(state); //从屏幕空间生成射线 this.point.elements[0] = Laya.stage.mouseX; this.point.elements[1] = Laya.stage.mouseY; this....
来源: Laya_社区 发布时间: 20170323
...ingContext2D = function () { }; MiniAdpter.window.CanvasRenderingContext2D.prototype = MiniAdpter.window.wx.createCanvas().getContext('2d').__proto__; MiniAdpter.window.document.body.appendChild = function () { }; MiniAdpter.EnvConfig.pixelRatioInt = 0; Laya.Browser["_pixelRatio"] = MiniAd...
来源: Laya_社区 发布时间: 20200103
...class(KYModule,"ky.module.KYModule",laya.events.EventDispatcher); KYModule.prototype.injectSource = function(json){ console.log("123"); } return KYModule; }());我如何再继承我写的这个KYModule? 我按常规js方式继承,IDE调试,都出现异常 2018-04-27 添加评论 免费帖 --> ...
来源: Laya_社区 发布时间: 20180427
... texture纹理对象 vb顶点数组 ib顶点索引数组 */ myShaderSprite.prototype.init = function(texture,width_Size,height_Size,vb,ib){ this.vBuffer = Laya.VertexBuffer2D.create(); this.iBuffer = Laya.IndexBuffer2D.create(); this.ibData = new Uint16Array(); if(vb) { vbArray = vb; } else{ vbArray...
来源: Laya_社区 发布时间: 20180619