├── .gitignore ├── ColorUp ├── .gitignore ├── README.md ├── ReadmeImage │ └── release.png ├── assets │ ├── audio.meta │ ├── audio │ │ ├── bgm.wav │ │ ├── bgm.wav.meta │ │ ├── player_dead.mp3 │ │ ├── player_dead.mp3.meta │ │ ├── star_captured.wav │ │ └── star_captured.wav.meta │ ├── scene.meta │ ├── scene │ │ ├── Game.fire │ │ ├── Game.fire.meta │ │ ├── GameOver.fire │ │ └── GameOver.fire.meta │ ├── script.meta │ ├── script │ │ ├── circle.js │ │ ├── circle.js.meta │ │ ├── circleDouble.js │ │ ├── circleDouble.js.meta │ │ ├── cross.js │ │ ├── cross.js.meta │ │ ├── game.js │ │ ├── game.js.meta │ │ ├── gameOver.js │ │ ├── gameOver.js.meta │ │ ├── gameResult.js │ │ ├── gameResult.js.meta │ │ ├── giftCollector.js │ │ ├── giftCollector.js.meta │ │ ├── line.js │ │ ├── line.js.meta │ │ ├── lineSeries.js │ │ ├── lineSeries.js.meta │ │ ├── obstacleSet.js │ │ ├── obstacleSet.js.meta │ │ ├── palette.js │ │ ├── palette.js.meta │ │ ├── player.js │ │ ├── player.js.meta │ │ ├── protectiveCover.js │ │ ├── protectiveCover.js.meta │ │ ├── star.js │ │ └── star.js.meta │ ├── texture.meta │ └── texture │ │ ├── back.png │ │ ├── back.png.meta │ │ ├── circle.meta │ │ ├── circle │ │ ├── Arc90.prefab │ │ ├── Arc90.prefab.meta │ │ ├── Circle.prefab │ │ ├── Circle.prefab.meta │ │ ├── CircleDouble.prefab │ │ ├── CircleDouble.prefab.meta │ │ ├── arc90.png │ │ └── arc90.png.meta │ │ ├── cross.meta │ │ ├── cross │ │ ├── Cross.prefab │ │ ├── Cross.prefab.meta │ │ ├── CrossPart.prefab │ │ ├── CrossPart.prefab.meta │ │ ├── cross_part.png │ │ └── cross_part.png.meta │ │ ├── gameOver.meta │ │ ├── gameOver │ │ ├── friend_top_ranking_bg.png │ │ ├── friend_top_ranking_bg.png.meta │ │ ├── game_over_title.png │ │ ├── game_over_title.png.meta │ │ ├── play_again.png │ │ └── play_again.png.meta │ │ ├── game_bg.jpg │ │ ├── game_bg.jpg.meta │ │ ├── gift_collector_bg.png │ │ ├── gift_collector_bg.png.meta │ │ ├── line.meta │ │ ├── line │ │ ├── Line.prefab │ │ ├── Line.prefab.meta │ │ ├── LineSeries.prefab │ │ ├── LineSeries.prefab.meta │ │ ├── line.png │ │ └── line.png.meta │ │ ├── logo.png │ │ ├── logo.png.meta │ │ ├── operate_tip.png │ │ ├── operate_tip.png.meta │ │ ├── palette.meta │ │ ├── palette │ │ ├── Palette.prefab │ │ ├── Palette.prefab.meta │ │ ├── palette.png │ │ └── palette.png.meta │ │ ├── player.meta │ │ ├── player │ │ ├── dead.meta │ │ ├── dead │ │ │ ├── PlayerDead.prefab │ │ │ ├── PlayerDead.prefab.meta │ │ │ ├── player_dead.plist │ │ │ ├── player_dead.plist.meta │ │ │ ├── player_dead.png │ │ │ └── player_dead.png.meta │ │ ├── player.plist │ │ ├── player.plist.meta │ │ ├── player.png │ │ └── player.png.meta │ │ ├── protective.meta │ │ ├── protective │ │ ├── ProtectiveCover.prefab │ │ ├── ProtectiveCover.prefab.meta │ │ ├── protective_cover.png │ │ └── protective_cover.png.meta │ │ ├── star.meta │ │ └── star │ │ ├── Star.prefab │ │ ├── Star.prefab.meta │ │ ├── StarExplode.prefab │ │ ├── StarExplode.prefab.meta │ │ ├── star.png │ │ ├── star.png.meta │ │ ├── star_explode.plist │ │ ├── star_explode.plist.meta │ │ ├── star_explode.png │ │ └── star_explode.png.meta ├── build-templates │ └── wechatgame │ │ ├── cloudfunction │ │ ├── getUserInfo │ │ │ ├── index.js │ │ │ └── package.json │ │ └── uploadHighestScore │ │ │ ├── index.js │ │ │ └── package.json │ │ └── project.config.json ├── creator.d.ts ├── jsconfig.json ├── project.json └── settings │ ├── builder.json │ ├── project.json │ └── services.json ├── ColorUpWXOpen ├── .gitignore ├── README.md ├── ReadmeImage │ └── release.png ├── assets │ ├── scene.meta │ ├── scene │ │ ├── Empty.fire │ │ ├── Empty.fire.meta │ │ ├── FriendRanking.fire │ │ ├── FriendRanking.fire.meta │ │ ├── FriendTopRanking.fire │ │ └── FriendTopRanking.fire.meta │ ├── script.meta │ ├── script │ │ ├── enter.js │ │ ├── enter.js.meta │ │ ├── friendItem.js │ │ ├── friendItem.js.meta │ │ ├── friendRanking.js │ │ ├── friendRanking.js.meta │ │ ├── friendTopRanking.js │ │ └── friendTopRanking.js.meta │ ├── texture.meta │ └── texture │ │ ├── FriendRankingItem.prefab │ │ ├── FriendRankingItem.prefab.meta │ │ ├── FriendTopRankingItem.prefab │ │ ├── FriendTopRankingItem.prefab.meta │ │ ├── translucent.png │ │ └── translucent.png.meta ├── creator.d.ts ├── jsconfig.json ├── project.json └── settings │ ├── builder.json │ ├── project.json │ └── services.json ├── LICENSE ├── README.md └── ReadmeImage └── qrcode.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/.gitignore -------------------------------------------------------------------------------- /ColorUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/.gitignore -------------------------------------------------------------------------------- /ColorUp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/README.md -------------------------------------------------------------------------------- /ColorUp/ReadmeImage/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/ReadmeImage/release.png -------------------------------------------------------------------------------- /ColorUp/assets/audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/audio.meta -------------------------------------------------------------------------------- /ColorUp/assets/audio/bgm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/audio/bgm.wav -------------------------------------------------------------------------------- /ColorUp/assets/audio/bgm.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/audio/bgm.wav.meta -------------------------------------------------------------------------------- /ColorUp/assets/audio/player_dead.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/audio/player_dead.mp3 -------------------------------------------------------------------------------- /ColorUp/assets/audio/player_dead.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/audio/player_dead.mp3.meta -------------------------------------------------------------------------------- /ColorUp/assets/audio/star_captured.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/audio/star_captured.wav -------------------------------------------------------------------------------- /ColorUp/assets/audio/star_captured.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/audio/star_captured.wav.meta -------------------------------------------------------------------------------- /ColorUp/assets/scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/scene.meta -------------------------------------------------------------------------------- /ColorUp/assets/scene/Game.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/scene/Game.fire -------------------------------------------------------------------------------- /ColorUp/assets/scene/Game.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/scene/Game.fire.meta -------------------------------------------------------------------------------- /ColorUp/assets/scene/GameOver.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/scene/GameOver.fire -------------------------------------------------------------------------------- /ColorUp/assets/scene/GameOver.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/scene/GameOver.fire.meta -------------------------------------------------------------------------------- /ColorUp/assets/script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/circle.js -------------------------------------------------------------------------------- /ColorUp/assets/script/circle.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/circle.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/circleDouble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/circleDouble.js -------------------------------------------------------------------------------- /ColorUp/assets/script/circleDouble.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/circleDouble.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/cross.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/cross.js -------------------------------------------------------------------------------- /ColorUp/assets/script/cross.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/cross.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/game.js -------------------------------------------------------------------------------- /ColorUp/assets/script/game.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/game.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/gameOver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/gameOver.js -------------------------------------------------------------------------------- /ColorUp/assets/script/gameOver.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/gameOver.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/gameResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/gameResult.js -------------------------------------------------------------------------------- /ColorUp/assets/script/gameResult.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/gameResult.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/giftCollector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/giftCollector.js -------------------------------------------------------------------------------- /ColorUp/assets/script/giftCollector.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/giftCollector.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/line.js -------------------------------------------------------------------------------- /ColorUp/assets/script/line.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/line.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/lineSeries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/lineSeries.js -------------------------------------------------------------------------------- /ColorUp/assets/script/lineSeries.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/lineSeries.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/obstacleSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/obstacleSet.js -------------------------------------------------------------------------------- /ColorUp/assets/script/obstacleSet.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/obstacleSet.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/palette.js -------------------------------------------------------------------------------- /ColorUp/assets/script/palette.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/palette.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/player.js -------------------------------------------------------------------------------- /ColorUp/assets/script/player.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/player.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/protectiveCover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/protectiveCover.js -------------------------------------------------------------------------------- /ColorUp/assets/script/protectiveCover.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/protectiveCover.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/script/star.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/star.js -------------------------------------------------------------------------------- /ColorUp/assets/script/star.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/script/star.js.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/back.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/back.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/back.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle/Arc90.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle/Arc90.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle/Arc90.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle/Arc90.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle/Circle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle/Circle.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle/Circle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle/Circle.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle/CircleDouble.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle/CircleDouble.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle/CircleDouble.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle/CircleDouble.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle/arc90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle/arc90.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/circle/arc90.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/circle/arc90.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/cross.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/cross.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/cross/Cross.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/cross/Cross.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/cross/Cross.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/cross/Cross.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/cross/CrossPart.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/cross/CrossPart.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/cross/CrossPart.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/cross/CrossPart.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/cross/cross_part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/cross/cross_part.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/cross/cross_part.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/cross/cross_part.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/gameOver.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gameOver.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/gameOver/friend_top_ranking_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gameOver/friend_top_ranking_bg.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/gameOver/friend_top_ranking_bg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gameOver/friend_top_ranking_bg.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/gameOver/game_over_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gameOver/game_over_title.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/gameOver/game_over_title.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gameOver/game_over_title.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/gameOver/play_again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gameOver/play_again.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/gameOver/play_again.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gameOver/play_again.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/game_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/game_bg.jpg -------------------------------------------------------------------------------- /ColorUp/assets/texture/game_bg.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/game_bg.jpg.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/gift_collector_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gift_collector_bg.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/gift_collector_bg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/gift_collector_bg.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/line.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/line.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/line/Line.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/line/Line.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/line/Line.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/line/Line.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/line/LineSeries.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/line/LineSeries.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/line/LineSeries.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/line/LineSeries.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/line/line.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/line/line.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/line/line.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/logo.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/logo.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/operate_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/operate_tip.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/operate_tip.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/operate_tip.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/palette.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/palette.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/palette/Palette.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/palette/Palette.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/palette/Palette.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/palette/Palette.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/palette/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/palette/palette.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/palette/palette.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/palette/palette.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/player.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/dead.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/dead.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/dead/PlayerDead.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/dead/PlayerDead.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/dead/PlayerDead.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/dead/PlayerDead.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/dead/player_dead.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/dead/player_dead.plist -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/dead/player_dead.plist.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/dead/player_dead.plist.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/dead/player_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/dead/player_dead.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/dead/player_dead.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/dead/player_dead.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/player.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/player.plist -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/player.plist.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/player.plist.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/player.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/player/player.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/player/player.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/protective.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/protective.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/protective/ProtectiveCover.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/protective/ProtectiveCover.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/protective/ProtectiveCover.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/protective/ProtectiveCover.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/protective/protective_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/protective/protective_cover.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/protective/protective_cover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/protective/protective_cover.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/star.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/Star.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/Star.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/Star.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/Star.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/StarExplode.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/StarExplode.prefab -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/StarExplode.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/StarExplode.prefab.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/star.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/star.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/star.png.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/star_explode.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/star_explode.plist -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/star_explode.plist.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/star_explode.plist.meta -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/star_explode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/star_explode.png -------------------------------------------------------------------------------- /ColorUp/assets/texture/star/star_explode.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/assets/texture/star/star_explode.png.meta -------------------------------------------------------------------------------- /ColorUp/build-templates/wechatgame/cloudfunction/getUserInfo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/build-templates/wechatgame/cloudfunction/getUserInfo/index.js -------------------------------------------------------------------------------- /ColorUp/build-templates/wechatgame/cloudfunction/getUserInfo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/build-templates/wechatgame/cloudfunction/getUserInfo/package.json -------------------------------------------------------------------------------- /ColorUp/build-templates/wechatgame/cloudfunction/uploadHighestScore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/build-templates/wechatgame/cloudfunction/uploadHighestScore/index.js -------------------------------------------------------------------------------- /ColorUp/build-templates/wechatgame/cloudfunction/uploadHighestScore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/build-templates/wechatgame/cloudfunction/uploadHighestScore/package.json -------------------------------------------------------------------------------- /ColorUp/build-templates/wechatgame/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/build-templates/wechatgame/project.config.json -------------------------------------------------------------------------------- /ColorUp/creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/creator.d.ts -------------------------------------------------------------------------------- /ColorUp/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/jsconfig.json -------------------------------------------------------------------------------- /ColorUp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/project.json -------------------------------------------------------------------------------- /ColorUp/settings/builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/settings/builder.json -------------------------------------------------------------------------------- /ColorUp/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/settings/project.json -------------------------------------------------------------------------------- /ColorUp/settings/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUp/settings/services.json -------------------------------------------------------------------------------- /ColorUpWXOpen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/.gitignore -------------------------------------------------------------------------------- /ColorUpWXOpen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/README.md -------------------------------------------------------------------------------- /ColorUpWXOpen/ReadmeImage/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/ReadmeImage/release.png -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/scene.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/scene/Empty.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/scene/Empty.fire -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/scene/Empty.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/scene/Empty.fire.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/scene/FriendRanking.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/scene/FriendRanking.fire -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/scene/FriendRanking.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/scene/FriendRanking.fire.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/scene/FriendTopRanking.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/scene/FriendTopRanking.fire -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/scene/FriendTopRanking.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/scene/FriendTopRanking.fire.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script/enter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script/enter.js -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script/enter.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script/enter.js.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script/friendItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script/friendItem.js -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script/friendItem.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script/friendItem.js.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script/friendRanking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script/friendRanking.js -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script/friendRanking.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script/friendRanking.js.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script/friendTopRanking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script/friendTopRanking.js -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/script/friendTopRanking.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/script/friendTopRanking.js.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/texture.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/texture/FriendRankingItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/texture/FriendRankingItem.prefab -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/texture/FriendRankingItem.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/texture/FriendRankingItem.prefab.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/texture/FriendTopRankingItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/texture/FriendTopRankingItem.prefab -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/texture/FriendTopRankingItem.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/texture/FriendTopRankingItem.prefab.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/texture/translucent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/texture/translucent.png -------------------------------------------------------------------------------- /ColorUpWXOpen/assets/texture/translucent.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/assets/texture/translucent.png.meta -------------------------------------------------------------------------------- /ColorUpWXOpen/creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/creator.d.ts -------------------------------------------------------------------------------- /ColorUpWXOpen/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/jsconfig.json -------------------------------------------------------------------------------- /ColorUpWXOpen/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/project.json -------------------------------------------------------------------------------- /ColorUpWXOpen/settings/builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/settings/builder.json -------------------------------------------------------------------------------- /ColorUpWXOpen/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/settings/project.json -------------------------------------------------------------------------------- /ColorUpWXOpen/settings/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ColorUpWXOpen/settings/services.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeImage/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/ColorUp/HEAD/ReadmeImage/qrcode.jpg --------------------------------------------------------------------------------