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

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

511. 基于Cannon.js的物理系统(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 70%]

...itResult对象的succeeded属性中会存储本次射线检测是否成功 if(out.succeeded) { //获取射线检测到的精灵对象 var selectSprite3D = out.collider.owner; (selectSprite3D.meshRenderer.sharedMaterial as BlinnPhongMaterial).albedoColor = this.colorRed; if(this.oldSelectMesh) if(sel...

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

512. Animation创建和销毁的问题 [ 70%]

...down); } private function onKeydown(event:Event):void { var self:* = this; if(event.keyCode === Keyboard.SPACE) { //移除动画 if(testAnim1) { testAnim1.clear(); testAnim1.removeSelf(); testAnim1 = null; testAnim2.clear(); testAnim2.removeSelf(); testAnim2 = null; Loader.clearRes("res/fish_1/stand...

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

513. 分享:LayaAir实现曲线运动 [ 70%]

...e); } private function onFrame():void { // TODO Auto Generated method stub if (ball.x>540||ball.x<10) { xflag=! xflag; } if (xflag) { ball.x+=v; ball.y=200+d*Math.sin(v*ball.x*Math.PI/180); } else { ball.x-=v; ball.y=200+d*Math.sin(v*ball.x*Math.PI/180); } } } } CurveDemo.rar 2016-04-24 0 0 ...

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

514. Laya.Animator没有动画播放完事件 [ 70%]

...了laya.d3.js,  播放完什么都没做,只调用了script.onStateExit if ((!islooping && elapsedPlaybackTime >=clipDuration)){ playState._finish=true; playState._elapsedTime=clipDuration; playState._normalizedPlayTime=1.0; if (scripts){ for (var i=0,n=scripts.length;i < n;i++) scrip...

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

515. ”Laya.Browser.onIPad“在微信小游戏上不正确 [ 70%]

...iPhone上反而为true。查看了一下laya.wxmini.js中对应的代码:if (model.indexOf("iPhone") != -1) { Laya.Browser.onIPhone = true; Laya.Browser.onIOS = true; Laya.Browser.onIPad = true; Laya.Browser.onAndroid = false; } if (system.indexOf("Android") != -1 || system.indexOf("Adr") != -1) {...

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

516. Button和下面的3D物体重叠,点击button,3D物体会同时响应自己的鼠标脚本 [ 70%]

...回的对象是scene) Laya.stage.on(Laya.Event.CLICK,this,function(e) { if(e.target.name == "scene的名字") { this.isClick = true; //如果点击的是屏幕的空白处,那么让 isClick 为真 } else { this.isClick = false; //如果点击的不是空白处,是屏幕上别的UI,让 isClic...

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

517. soundManger支持的音频格式有哪些? [ 70%]

...一次判断是否为LayaPlayer运行环境的,伪代码如下所示:if(window.conch) { ...加载 "soundConfig-LayaPlayer.json" } else { ...加载 "soundConfig-json" } SoundManager.playSound(soundJson[0].url,1); .... SoundManager.playSound(soundJson[1].url,1); 2018-01-02 0 0 分享 微博 QZONE ...

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

518. Laya 2.7.1 PlatformClass 在哪里?这个类怎么没了?我需要引入什么类库么? [ 70%]

...ridge; static initNative() { AppConfig.os = window['conchConfig'].getOS(); if (AppConfig.os == "Conch-ios") { AppConfig.bridge = window['PlatformClass'].createClass("JSBridge");//创建脚步代理 } else if (AppConfig.os == "Conch-android") { //需要完整的类路径,注意与iOS的不同 AppCo...

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

519. 关于安卓APK打包问题 报错 [ 70%]

...信 huangweixuan 赞同来自:  $.Event = function(type, props) {     if (!isString(type)) props = type, type = props.type     var event = document.createEvent(specialEvents[type] || 'Events'), bubbles = true     if (props) for (var name in props) (name == 'bubbles') ? (bubbles = !!props[name...

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

520. 请问如何给所有按钮点击事件增加一个音效 [ 70%]

...      protected function onMouse(e:Event):void {             if (toggle === false && _selected) return;             if (e.type === Event.CLICK) {                 toggle && (selected = !_selected);                 _clickHandler && ...

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