admin 管理员组文章数量: 1184232
头条录屏相关功能
//=============================================================================================//=============================================================================================//初始化录屏功能iniTape(){//录屏的保存路径this.tapePath =null;this.tapeStartTime =0;this.tapeMaxTime =90;this.recorder = tt.getGameRecorderManager();},//手动触发录屏onTapeButtonClick(){//开始后大于3秒才能关闭let nowTime =newDate().getTime();let tapeTime = nowTime -this.tapeStartTime;if(tapeTime <3000){
cc.log("录屏时间小于3秒");}else{this.stopTape();};},//录屏时间控制tapeTimeControl(){let timeCount =0;letcallback=function(){
timeCount++;//超过了最大时长或者录制状态为未开启if(timeCount >=this.tapeMaxTime){this.unschedule(callback);
timeCount =0;this.stopTape();};};this.schedule(callback,1);},//开始游戏录屏startTape(){//记录一个时间戳this.tapeStartTime =newDate().getTime();if(typeof(tt)!="undefined"){this.recorder.onStart(res =>{
console.log("录屏开始");this.tapeTimeControl();});this.recorder.start({
duration:this.tapeMaxTime,});};},//结束游戏录屏stopTape(){if(typeof(tt)!="undefined"){this.recorder.onStop(res =>{
console.log(res.videoPath,"录屏结束");// do something;this.tapePath = res.videoPath;});this.recorder.stop();};},//录屏分享tapeShare(){if(typeof(tt)!=="undefined"){if(this.game_rules_js.tapePath ==null){return;};//获取分享导语
tt.shareAppMessage({
channel:'video',//指定为视频分享
title:'标题',
extra:{
videoPath:this.game_rules_js.tapePath,// 设置视频路径
videoTopics:["话题1","话题2"]},
success:()=>{//分享回调
console.log('录屏分享成功');//分享奖励,仅一次this.tapeShareSucces();},
fail:()=>{
console.log('录屏分享失败',this.tapePath);this.tapeShareFail();}});};},//录屏分享成功
tapeShareSucces:function(){//do something},//录屏分享失败
tapeShareFail:function(){//do something;},//=============================================================================================//=============================================================================================版权声明:本文标题:头条小游戏不再默默无闻!轻松实现一键录屏,分享你的游戏时刻 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.roclinux.cn/b/1770557754a3535014.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论