(function(t,e,i){function n(i){var r=e[i];if(!r){var s=t[i];if(!s)return;var o={};r=e[i]={exports:o},s[0](function(t){return n(s[1][t]||t)},r,o)}return r.exports}for(var r=0;r<i.length;r++)n(i[r])})({1:[function(t){"use strict";t("../core/platform/CCClass");var e=t("../core/utils/misc");cc.Action=cc.Class({name:"cc.Action",ctor:function(){this.originalTarget=null,this.target=null,this.tag=cc.Action.TAG_INVALID},clone:function(){var t=new cc.Action;return t.originalTarget=null,t.target=null,t.tag=this.tag,t},isDone:function(){return!0},startWithTarget:function(t){this.originalTarget=t,this.target=t},stop:function(){this.target=null},step:function(){cc.logID(1006)},update:function(){cc.logID(1007)},getTarget:function(){return this.target},setTarget:function(t){this.target=t},getOriginalTarget:function(){return this.originalTarget},setOriginalTarget:function(t){this.originalTarget=t},getTag:function(){return this.tag},setTag:function(t){this.tag=t},retain:function(){},release:function(){}}),cc.Action.TAG_INVALID=-1,cc.FiniteTimeAction=cc.Class({name:"cc.FiniteTimeAction",extends:cc.Action,ctor:function(){this._duration=0},getDuration:function(){return this._duration*(this._timesForRepeat||1)},setDuration:function(t){this._duration=t},reverse:function(){return cc.logID(1008),null},clone:function(){return new cc.FiniteTimeAction}}),cc.Speed=cc.Class({name:"cc.Speed",extends:cc.Action,ctor:function(t,e){this._speed=0,this._innerAction=null,t&&this.initWithAction(t,e)},getSpeed:function(){return this._speed},setSpeed:function(t){this._speed=t},initWithAction:function(t,e){return t?(this._innerAction=t,this._speed=e,!0):(cc.errorID(1021),!1)},clone:function(){var t=new cc.Speed;return t.initWithAction(this._innerAction.clone(),this._speed),t},startWithTarget:function(t){cc.Action.prototype.startWithTarget.call(this,t),this._innerAction.startWithTarget(t)},stop:function(){this._innerAction.stop(),cc.Action.prototype.stop.call(this)},step:function(t){this._innerAction.step(t*this._speed)},isDone:function(){return this._innerAction.isDone()},reverse:function(){return new cc.Speed(this._innerAction.reverse(),this._speed)},setInnerAction:function(t){this._innerAction!==t&&(this._innerAction=t)},getInnerAction:function(){return this._innerAction}}),cc.speed=function(t,e){return new cc.Speed(t,e)},cc.Follow=cc.Class({name:"cc.Follow",extends:cc.Action,ctor:function(t,e){this._followedNode=null,this._boundarySet=!1,this._boundaryFullyCovered=!1,this._halfScreenSize=null,this._fullScreenSize=null,this.leftBoundary=0,this.rightBoundary=0,this.topBoundary=0,this.bottomBoundary=0,this._worldRect=cc.rect(0,0,0,0),t&&(e?this.initWithTarget(t,e):this.initWithTarget(t))},clone:function(){var t=new cc.Follow,e=this._worldRect,i=new cc.Rect(e.x,e.y,e.width,e.height);return t.initWithTarget(this._followedNode,i),t},isBoundarySet:function(){return this._boundarySet},setBoudarySet:function(t){this._boundarySet=t},initWithTarget:function(t,e){if(!t)return cc.errorID(1022),!1;e=e||cc.rect(0,0,0,0),this._followedNode=t,this._worldRect=e,this._boundarySet=!(0===e.width&&0===e.height),this._boundaryFullyCovered=!1;var i=cc.winSize;return this._fullScreenSize=cc.v2(i.width,i.height),this._halfScreenSize=this._fullScreenSize.mul(.5),this._boundarySet&&(this.leftBoundary=-(e.x+e.width-this._fullScreenSize.x),this.rightBoundary=-e.x,this.topBoundary=-e.y,this.bottomBoundary=-(e.y+e.height-this._fullScreenSize.y),this.rightBoundary<this.leftBoundary&&(this.rightBoundary=this.leftBoundary=(this.leftBoundary+this.rightBoundary)/2),this.topBoundary<this.bottomBoundary&&(this.topBoundary=this.bottomBoundary=(this.topBoundary+this.bottomBoundary)/2),this.topBoundary===this.bottomBoundary&&this.leftBoundary===this.rightBoundary&&(this._boundaryFullyCovered=!0)),!0},step:function(){var t=this.target.convertToWorldSpaceAR(cc.Vec2.ZERO),i=this._followedNode.convertToWorldSpaceAR(cc.Vec2.ZERO),n=t.sub(i),r=this.target.parent.convertToNodeSpaceAR(n.add(this._halfScreenSize));if(this._boundarySet){if(this._boundaryFullyCovered)return;this.target.setPosition(e.clampf(r.x,this.leftBoundary,this.rightBoundary),e.clampf(r.y,this.bottomBoundary,this.topBoundary))}else this.target.setPosition(r.x,r.y)},isDone:function(){return!this._followedNode.activeInHierarchy},stop:function(){this.target=null,cc.Action.prototype.stop.call(this)}}),cc.follow=function(t,e){return new cc.Follow(t,e)}},{"../core/platform/CCClass":182,"../core/utils/misc":256}],2:[function(){"use strict";function t(t,e,i,n,r,s){var o=s*s,a=o*s,c=(1-r)/2,l=c*(2*o-a-s),u=c*(-a+o)+(2*a-3*o)+1,h=c*(a-2*o+s)+-2*a+3*o,_=c*(a-o),f=t.x*l+e.x*u+i.x*h+n.x*_,d=t.y*l+e.y*u+i.y*h+n.y*_;return cc.v2(f,d)}function e(t,e){return t[Math.min(t.length-1,Math.max(e,0))]}function i(t){for(var e=[],i=t.length-1;i>=0;i--)e.push(cc.v2(t[i].x,t[i].y));return e}function n(t){for(var e=[],i=0;i<t.length;i++)e.push(cc.v2(t[i].x,t[i].y));return e}cc.CardinalSplineTo=cc.Class({name:"cc.CardinalSplineTo",extends:cc.ActionInterval,ctor:function(t,e,i){this._points=[],this._deltaT=0,this._tension=0,this._previousPosition=null,this._accumulatedDiff=null,void 0!==i&&cc.CardinalSplineTo.prototype.initWithDuration.call(this,t,e,i)},initWithDuration:function(t,e,i){return e&&0!==e.length?!!cc.ActionInterval.prototype.initWithDuration.call(this,t)&&(this.setPoints(e),this._tension=i,!0):(cc.errorID(1024),!1)},clone:function(){var t=new cc.CardinalSplineTo;return t.initWithDuration(this._duration,n(this._points),this._tension),t},startWithTarget:function(t){cc.ActionInterval.prototype.startWithTarget.call(this,t),this._deltaT=1/(this._points.length-1),this._previousPosition=cc.v2(this.target.x,this.target.y),this._accumulatedDiff=cc.v2(0,0)},update:function(i){var n,r;i=this._computeEaseTime(i);var s=this._points;if(1===i)n=s.length-1,r=1;else{var o=this._deltaT;r=(i-o*(n=0|i/o))/o}var a,c,l=t(e(s,n-1),e(s,n-0),e(s,n+1),e(s,n+2),this._tension,r);if(cc.macro.ENABLE_STACKABLE_ACTIONS&&(a=this.target.x-this._previousPosition.x,c=this.target.y-this._previousPosition.y,0!==a||0!==c)){var u=this._accumulatedDiff;a=u.x+a,c=u.y+c,u.x=a,u.y=c,l.x+=a,l.y+=c}this.updatePosition(l)},reverse:function(){var t=i(this._points);return cc.cardinalSplineTo(this._duration,t,this._tension)},updatePosition:function(t){this.target.setPosition(t),this._previousPosition=t},getPoints:function(){return this._points},setPoints:function(t){this._points=t}}),cc.cardinalSplineTo=function(t,e,i){return new cc.CardinalSplineTo(t,e,i)},cc.CardinalSplineBy=cc.Class({name:"cc.CardinalSplineBy",extends:cc.CardinalSplineTo,ctor:function(t,e,i){this._startPosition=cc.v2(0,0),void 0!==i&&this.initWithDuration(t,e,i)},startWithTarget:function(t){cc.CardinalSplineTo.prototype.startWithTarget.call(this,t),this._startPosition.x=t.x,this._startPosition.y=t.y},reverse:function(){for(var t,e=this._points.slice(),n=e[0],r=1;r<e.length;++r)t=e[r],e[r]=t.sub(n),n=t;var s=i(e);for(n=s[s.length-1],s.pop(),n.x=-n.x,n.y=-n.y,s.unshift(n),r=1;r<s.length;++r)(t=s[r]).x=-t.x,t.y=-t.y,t.x+=n.x,t.y+=n.y,s[r]=t,n=t;return cc.cardinalSplineBy(this._duration,s,this._tension)},updatePosition:function(t){var e=this._startPosition,i=t.x+e.x,n=t.y+e.y;this._previousPosition.x=i,this._previousPosition.y=n,this.target.setPosition(i,n)},clone:function(){var t=new cc.CardinalSplineBy;return t.initWithDuration(this._duration,n(this._points),this._tension),t}}),cc.cardinalSplineBy=function(t,e,i){return new cc.CardinalSplineBy(t,e,i)},cc.CatmullRomTo=cc.Class({name:"cc.CatmullRomTo",extends:cc.CardinalSplineTo,ctor:function(t,e){e&&this.initWithDuration(t,e)},initWithDuration:function(t,e){return cc.CardinalSplineTo.prototype.initWithDuration.call(this,t,e,.5)},clone:function(){var t=new cc.CatmullRomTo;return t.initWithDuration(this._duration,n(this._points)),t}}),cc.catmullRomTo=function(t,e){return new cc.CatmullRomTo(t,e)},cc.CatmullRomBy=cc.Class({name:"cc.CatmullRomBy",extends:cc.CardinalSplineBy,ctor:function(t,e){e&&this.initWithDuration(t,e
没有合适的资源?快使用搜索试试~ 我知道了~
微信小游戏合成大西瓜源码,开通流量主日赚几百
共88个文件
png:43个
json:34个
js:9个
1星 需积分: 5 9 下载量 197 浏览量
2023-05-17
11:28:16
上传
评论 1
收藏 2.95MB ZIP 举报
温馨提示
“合成大西瓜”是一款在微信小游戏平台上非常火爆的游戏,其玩法简单、上手容易,加上可玩性极强,因此广受玩家的欢迎。随着用户数量的增长,很多人开始了解到这个游戏的商业价值,而开通流量主成为了不少人的选择。 开通流量主后,用户可以将自己的游戏视频上传到微信小游戏平台上,并通过广告分成的方式获得收益。对于“合成大西瓜”这样的热门游戏,一些用户的收益甚至可以达到每日几百元的水平。 要想通过“合成大西瓜”赚取丰厚收益,除了需要有一定的游戏技巧之外,还需要有一定的推广能力和市场触觉。用户可以通过各种方式进行游戏宣传,比如通过社交媒体分享自己的游戏记录、写一篇博客或者发布一段视频等等。同时,也需要不断优化自己的推广方式,结合市场趋势不断调整自己的营销策略,才能在竞争激烈的游戏市场中获得更好的收益。 总之,“合成大西瓜”是一款非常受欢迎的小游戏,通过开通流量主用户可以获得相当可观的收益。不过,想要在这个市场中获得成功并不容易,需要有坚定的信念和不断尝试的精神。
资源推荐
资源详情
资源评论
收起资源包目录
微信游戏小程序源码-合成大西瓜小游戏(合成版)源码 附带流量主功能.zip (88个子文件)
微信游戏小程序源码-合成大西瓜小游戏(合成版)源码 附带流量主功能
project.private.config.json 595B
project.config.json 541B
synthesis_watermelon-main
project.private.config.json 376B
project.config.json 1KB
assets
resources
import
01
01d0e919-6717-429c-a87b-dde50923b4b6.d6b0b.json 118B
d4
d4610f0c-6c57-4d8d-a3f7-7bb13afce3bf.f57b9.json 188B
0b
0b81c1dcd.cc244.json 6KB
77
77f4c339-9b9f-42a0-b149-fe32b3d589d9.2ee48.json 117B
07
07154bfa0.d594a.json 1KB
6a
6a8aa780-c572-4b62-b102-12dc68a07095.96c97.json 184B
95
957ea66e-ddbc-4ca5-a25a-62a72322aad5.2eee4.json 199B
89
89156ec2-6626-45b0-ad1f-6b81b519873f.212d6.json 183B
b4
b4dfdf9f-58e8-462a-a466-1a79465c9832.7d83d.json 187B
08
0868a7b11.98c47.json 6KB
14
141573ef-2dc5-4af9-b7af-a4aded460254.c5f32.json 185B
06
06ce63882.6d71e.json 1KB
062f36470.6f57d.json 1KB
1c
1c950f06-ff4d-4a55-8d5d-9f93f09344b3.18ba1.json 193B
36
362ee62f-54d5-4f6e-a6c1-a51c7ea20236.7eae6.json 192B
native
01
01d0e919-6717-429c-a87b-dde50923b4b6.4fa45.mp3 583KB
d4
d43b257e-6d19-4815-a82b-3b9beb49c6c6.76103.png 36KB
a1
a1098c5a-7c50-4769-b16a-e34b8f509153.9427f.png 935B
1e
1e6d021f-6812-40bd-9df8-7a792d472160.f4249.png 5KB
0f
0f4a1bd2-cff2-4438-b7b0-8da608dd66de.30132.png 36KB
c1
c1083fe9-b80d-4034-a537-df122a9b1f48.79d8e.png 12KB
57
57b87fe6-a8b2-4782-98f4-815a2d2d394e.7f18d.png 93KB
40
40781d4f-9713-4589-b001-a3a41598709a.a8969.png 83KB
df
df443bb9-1ba1-47cf-a32c-72316f4d3486.9bcec.png 20KB
0b
0b907aac-bd81-4f95-92b5-58e21404477d.674c3.png 225KB
bd
bdff6a71-52ad-4be1-9c81-720438d61f64.aba62.png 36KB
77
77f4c339-9b9f-42a0-b149-fe32b3d589d9.77fbc.mp3 17KB
7f
7faca375-9052-478e-9c6c-adf95a3b855f.e26b1.png 36KB
6a
6adb5218-786b-408c-843d-4e179ef60fd8.2aa7b.png 138KB
76
76dfdaca-6e79-4d1b-8837-d5092ea47eb9.a7d90.png 36KB
48
48270496-0cca-4b58-8221-9ecef0b8dd71.79239.png 11KB
4f
4fa9c40d-4330-42d0-a377-01e3ba22c329.46364.png 5KB
f8
f82188c9-a61c-4443-908e-5e57048905c5.7d421.png 153KB
68
68c6db88-ee11-4bb0-abed-e68981e9dbba.ead3d.png 8KB
d8
d8696679-87a7-49b9-bb29-1643eca56026.43c0b.png 200KB
f2
f22e1d72-c7a1-4d22-8a53-a33c0d81c94e.5b16f.png 78KB
5f
5fc0f242-5a86-4344-82e6-58ba812699de.8c7d4.png 11KB
e2
e2b7152c-02ce-4d1d-83cf-71198f4aff76.8cb39.png 2KB
4d
4d904caa-66e7-4d1a-99be-4c120483e881.fbf85.png 8KB
6e
6e056173-d285-473c-b206-40a7fff5386e.6d3cf.png 2KB
0c
0ca04556-8577-4ac7-ab89-e39307cc5a0b.11a43.png 9KB
2b
2b98de7f-baea-4f7b-a876-132c5e7b97d5.78798.png 36KB
52
525a82fe-67eb-48f9-92c4-6e74b92ff5a1.874f7.png 36KB
ac
ac3410d3-2425-4729-921f-62448fbfe202.d5ab3.png 2KB
de
de40f6eb-605e-4556-8115-2b842d77293e.9fd78.png 113KB
a0
a0f59e96-6125-4b74-a49f-c6eef4ebba07.e8465.png 670B
98
98c60534-e4c5-4f45-8e47-c53ff8d38952.8599f.png 926B
d5
d517191e-6755-49af-b805-5fd4b3183638.795c1.png 19KB
02
029aa249-05a9-4e2b-ad05-bd9d57589952.bb891.png 19KB
75
75926e38-aa7d-434d-ae5f-206130b25f41.0cc5c.png 36KB
24
246aad12-e5c5-4a32-a0d8-d84aebd3bdc5.ea3c2.png 55KB
fa
fa4a5c3f-8c52-4860-9fde-59d7a1367323.00a1c.png 46KB
7e
7e3b9b48-6621-4682-affd-450b256f195d.8a3d2.png 120KB
7a
7a10072a-756a-4cb9-9230-793a589f487d.6d199.png 36KB
b8
b81d26ab-f88f-4963-9930-f1eca4cc1001.f4f64.png 36KB
b8735e89-192f-491a-a232-9a431307780e.2a20b.png 13KB
69
690c3e75-73e4-4868-86b5-da61c9986128.08b68.png 6KB
3b
3b21d04a-f1b9-4571-bff3-edc12b1bcb1c.981ca.png 10KB
config.4e034.json 6KB
index.js 867B
internal
import
07
07ce7530a.ad304.json 3KB
079499991.84d8b.json 15KB
6f
6f801092-0c37-4f30-89ef-c8d960825b36.85108.json 149B
28
2874f8dd-416c-4440-81b7-555975426e93.20630.json 4KB
0d
0d5255670.dc2b0.json 4KB
0d669730c.8ea40.json 1017B
ec
eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432.380a4.json 187B
08
08018726a.9e73d.json 6KB
0a
0a5cba09d.c0627.json 19KB
02
0275e94c-56a7-410f-bd1a-fc7483f7d14a.7871f.json 78B
native
02
0275e94c-56a7-410f-bd1a-fc7483f7d14a.cea68.png 82B
index.js 867B
config.39a48.json 1KB
main
import
fb
fbe382aa-f770-4a75-9336-53591ac17509.bf041.json 9KB
config.e8a76.json 1KB
index.js 71KB
src
settings.js 439B
main.js 2KB
game.js 470B
img
2F3E6B8A4BE936870852FDFCB94C4483.png 170KB
ccRequire.js 583B
game.json 206B
adapter-min.js 177KB
cocos
cocos2d-js-min.js 1.21MB
共 88 条
- 1
资源评论
- yjihjf2024-10-21#毫无价值 一修改appid就打不开了
Jones168
- 粉丝: 12
- 资源: 61
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功