大约有 1,451 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0050 秒)
...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
...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
...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
...了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
...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
...回的对象是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
...一次判断是否为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
...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
...信 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
... protected function onMouse(e:Event):void { if (toggle === false && _selected) return; if (e.type === Event.CLICK) { toggle && (selected = !_selected); _clickHandler && ...
来源: Laya_社区 发布时间: 20170926