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

大约有 1,309 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0068 秒)

481. UI-ProgressBar [ 63%]

...value = 0; progressBar.value += 0.05; } function onChange(value) { console.log("进度:" + Math.floor(value * 100) + "%"); } })();module laya { import Stage = Laya.Stage; import ProgressBar = Laya.ProgressBar; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_ProgressBar { ...

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

482. 龙骨动画的监听回调,有时能回调,有时不能回调 [ 63%]

...mation/ddz_figures_landlord.sk"); }    private onError(): void { console.log("error"); }  private parseComplete(): void { console.error("地主加载完成"); this.isFinish = true; }  public getArmature():Laya.Skeleton{ if(!this.isFinish){ return null; } let armature = null; if(this.mArmatureUnU...

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

483. 动画混合问题,Avatar动画混合报错. [ 63%]

...imator = this.sprite.getComponent(Laya.Animator) as Laya.Animator; console.log("11"); }  public RoleMove(dir:Laya.Vector3) { let norDir:Laya.Vector3 = Laya.Vector3.ZERO; Laya.Vector3.normalize(dir,norDir); console.log(norDir); //this.sprite.transform.translate(norDir,false); // let position = Laya....

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

484. UI-ComboBox [ 63%]

...his, this.onSelect, [comboBox]); return comboBox; } onSelect(cb) { console.log("选中了: " + cb.selectedLabel); } } new UI_ComboBox();module laya { import Stage = Laya.Stage; import ComboBox = Laya.ComboBox; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_ComboBox { pri...

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

485. Spine适配版(JavaScript-LayaAir基础篇(JS)-动画基础) [ 63%]

....STOPPED, this, this.play) this.play(); } private onError(): void{ console.log("parse error"); } private play(): void { console.log("1111111111"); if(++this.index >= this.skeleton.getAnimNum()) { this.index = 0 } this.skeleton.play(this.index, false, true) } } new SpineBinary; ``` 具体效果大家...

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

486. UI模式下Dialog标签嵌套RadioGroup会导致编辑器卡死 [ 63%]

UI模式下Dialog标签嵌套RadioGroup会导致编辑器卡死 <Dialog width="725" sceneColor="#000000" height="500" editorInfo="compId=1"> <Image y="46" x="0" width="687" skin="setting/gd2_n.png" sizeGrid="30,30,30,30" height="402" editorInfo="compId=4"> <Image y="0" x="241.5" skin...

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

487. typeScript Java互调问题 [ 63%]

...c void back() {             // activity.finish();             Log.d("mytest ","通过js调用的Java方法");             Toast.makeText(activity, "通过js调用的Java方法", Toast.LENGTH_SHORT).show();         }     }   ...................... —————————...

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

488. Laya3d球星添加了刚体,但是碰撞无法触发onTriggerEnter的问题,120元有偿悬赏解答 [ 63%]

...gerEnter,onTriggerStay,onTriggerExit 方法,并且在方法内有console.log输出,player设置了点击z方向向前移动   2、GameManager.ts:40-41行获取被碰撞体、72-94行管理被碰撞体和给每个被碰撞体添加了刚体,同时 isTrigger =true,isKinematic=true,绑定了...

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

489. 1.70beta Dialog增加动画后第二次执行popup不显示弹窗 [ 63%]

1.70beta Dialog增加动画后第二次执行popup不显示弹窗 只有半透明遮罩出现,弹窗的实体不出现,1.60版本正常 2017-03-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 5 个回复 cuixueying 赞...

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

490. 命令行发布 · LayaAir3.0文档 · LAYABOX [ 63%]

...Env.regClass() class Script { static speak(arg1: any, arg2: any) { console.log(arg1); console.log(arg2); } } 然后打开终端,输入命令LayaAirIDE --project=C:\Users\ASUS\Desktop\LayaProject --script=Script.speak --script-args="say \"hello world\""后,如图2-2所示,可以看到进行了...

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