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

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

771. 为什么说没有​ playByFrame方法 [ 77%]

...){ anifish.player.playByFrame(0,1.0,0,40,72,30); anifish.on(Event.COMPLETE,this,complete) function complete(){ alert(1) } Monica • 2017-09-27 14:22 @haiboannacom:Event前边加个Laya.看看 haiboannacom • 2017-09-27 14:25 @Monica:第三条鱼我加了这个了。也不行。anifish2那个。那...

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

772. 我看到这段话后,我 [ 77%]

...    __getset(0,__proto,'dataSource',function(){         return this._dataSource;         },function(value){         this._dataSource=value;         for (var prop in this._dataSource){             if (this.hasOwnProperty(prop)&& !((typeof (this[...

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

773. 如何实现3d遮罩效果? [ 77%]

...a1.addComponent(CameraMoveScript); } private function loadUI():void { var _this:D3Base_TargetTexture = this; Laya.loader.load(["../../../../res/threeDimen/ui/button.png"], Handler.create(null, function():void { var btn:Button = new Button(); btn.skin = "../../../../res/threeDimen/ui/b...

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

774. 子弹添加了colliderShape后onUpdate移动,destroy会报错“Cannot read property 'getWorldTransform' of null” [ 77%]

...rty 'getWorldTransform' of null” 发射时生成子弹: onFire() { if (this.isFire) { Laya.Mesh.load("fly2/fly3-bullet.lm", Laya.Handler.create(this, function (m) { let bullet = new Laya.MeshSprite3D(m); this.Sn.addChild(bullet); bullet.addComponent(BulletScript); var bulletCollider = bullet.add...

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

775. TextInput 在panle里滚动后输入位置错乱,求解 [ 77%]

...多少? 2018-06-25 0 6 分享 微博 QZONE 微信 水晶 赞同来自: this.input.on(Laya.Event.FOCUS,this,()=>{ this.board.scrollPane.touchEffect = false; }) this.input.on(Laya.Event.BLUR,this,()=>{ this.board.scrollPane.touchEffect = true; }) 2019-03-18 0 0 分享 微博 QZONE 微信 为...

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

776. 树状列表组件 · LayaAir3.0文档 · LAYABOX [ 77%]

...签 treeData += "</data>"; //把字符串解析为xml对象并返回 this.tree.xml = new Laya.XML(treeData); } } 这里给Tree列表赋的值,是写死的模拟数据。其中,拼接模拟数据,最多只能是二层结构,不支持层级很深的结构。 上述代码中,<dir>...

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

777. LayaBox HelloWorld实战 [ 77%]

...oWorld extends Laya.Scene { constructor() { super(); HelloWorld.instance = this; } onBtnShowClick(){ var dialog = new Laya.Dialog(); dialog.width=300; dialog.height=600; //var bg = new Laya.Image('comp/img_bg.png'); //dialog.addChild(bg); var button = new Laya.Button('comp/button.png'); button.label...

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

778. discard property,please use transform's property instead [ 77%]

...,             "res/LayaMonkey.lh"         ], Laya.Handler.create(this, onComplete));         var _quaternion = new Laya.Quaternion();         Laya.timer.frameLoop(1, null, function () {             Laya.Quaternion.createFromYawPitchRoll(0.025, 0, 0, _quaternion);         ...

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

779. 销毁有声音的spine动画,skeleton中的_onAniSoundStoped有时会报undefined错误 [ 77%]

...unction(force){         var _channel;         for (var len=this._soundChannelArr.length,i=0;i < len;i++){             _channel=this._soundChannelArr;             if (_channel.isStopped || force){                 !_channel.isStopped &&amp...

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

780. 描边Shader,使用了两个Pass [ 77%]

...Pass(outline_vs, outline_ps) outlineShader.addShaderPass(base_vs, base_ps) this.setShaderName("OutlineShader") this.getRenderState(0).cull = 1 } set diffuseTexture (value) { this._shaderValues.setTexture(OutlineMaterial.DIFFUSETEXTURE, value) } }   附件 : --> shaderBasic.zip 2018-09-25 添加评...

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