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

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

821. List修改datasource数据的时候出现部分数据不能被修改 [ 65%]

... function (cell, index) { if(index <0 || index >= dataSource.length) return; var data = dataSource[index]; var chBox = cell.getChildByName('chBox'); var img = cell.getChildByName('img'); if(!data.type) { chBox.skin = "../laya/assets/ui/boxBg.png"; img.skin = "../laya/assets/ui/num" + (index + ...

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

822. 请问graphics.drawTexture(texture)中如何增加一个matrix,只显示图中的一个圆形区域 [ 65%]

...应的提示 console.log('您的浏览器版本过低,暂不支持。'); return false; } canvas.width = width; canvas.height = height; contex = canvas.getContext("2d"); circle = { x: width / 2, y: height / 2, r: width / 2 }; contex.clearRect(0, 0, width, height); contex.save(); contex.beginPath();...

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

823. LAYABOX游戏实时语音之APP版本 [ 65%]

... = mStoragePath + "/"; audioPath += UUID.randomUUID().toString() + ".wav"; return audioPath; } public boolean onTouch(final String type){ switch(type){ case "d": mPTTStartTime = System.currentTimeMillis(); startRecordAudio(); return true; case "u": mAudioDownloaded = false; long endTime = System.cur...

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

824. MovieClip报错 [ 65%]

...data=Loader.getRes(_url); if (!data) { event(Event.ERROR,"file not find"); return; } //保护修改-----start------------------ var atlasData:Object = Loader.getAtlas(_atlasPath); if(!atlasData) { event(Event.ERROR,"file not find"); return; } //保护修改-----end------------------ this.basePath =_...

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

825. 【简单跑酷--JS版】---Lv.5 玩家踩地板 [ 65%]

... } //获取当前地板上面的所有物品 _proto.getItems = function(){ return ; } _proto.onLoop = function(){ //让地板的速度和移动比背景快一点 this.x -= 5 * 1.2; //判断是否除了边界 如果出了 就通知生成新的floor 这里增加一个变量来判断当前是否已经...

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

826. 2.3.0发布微信小游戏,自动缓存:查找不到资源问题的Bug [ 65%]

...   if (MiniAdpter.isZiYu) {    thisLoader._loadImage(url, false);    return;    }    if (MiniFileMgr.isLocalNativeFile(url)) {    thisLoader._loadImage(url, false);    return;    }    if (!MiniFileMgr.isLocalNativeFile(url) && !MiniFileMgr.getFileInfo(Laya.URL.formatURL(url...

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

827. 请问UI之间的场景切换要怎么写 [ 65%]

...es/sound/sign_bgm.mp3',0); } _proto.onWxSign = function(e){ onWxSign1(); } return sg_sign; })(ui.sg_signUI); var sg_index = (function(_super){ function sg_index(){ sg_index.super(this); this.indexDz.on(Laya.Event.CLICK,this,this.onIndexDz); this.reset(); } Laya.class(sg_index,"sg_index",_super); var...

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

828. 如何在游戏入口处获取对象的子对象 [ 65%]

...Index(0);//获取通行层 console.log(this.pass); } console.log(this.map) return loadMap; })(Sprite);**游戏主入口** var Main = (function (){ (function Main(){ Laya.init(448,448); var map1 = new loadMap(); map1.init(); map1.showMap("3"); map1.getLayer(); console.log(map1.num); console.log(map1)...

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

829. 自定义组件时,设置组件子节点的image的skin时,路径为layaIde的路径而非项目路径 [ 65%]

...oyChild); _proMask = null; _progress = null; } /** * 进度条皮肤。 * @return */ public function get hProgressSkin():String { return _progress.skin; } public function set hProgressSkin(value:String):void { console.log("设置progress皮肤: " + value); _progress.skin = value; } } }如题,自...

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

830. 横竖屏设置 · LayaAir3.0文档 · LAYABOX [ 65%]

...ensor: 10, }; var nOri = (function (name) { try { var n = nameToVal[name]; return n || 0; } catch (e) { return 0; } })(s); conchConfig.setScreenOrientation(nOri); ; } 开发者可以在开发工具中,通过代码更改横竖屏的设置: 如果是直接打包的项目,则需要重新在LayaAi...

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