├── .creator ├── asset-template │ └── typescript │ │ └── Custom Script Template Help Documentation.url └── default-meta.json ├── .gitignore ├── assets ├── fonts.meta ├── fonts │ ├── Marker Felt.ttf │ └── Marker Felt.ttf.meta ├── game.scene ├── game.scene.meta ├── res.meta ├── res │ ├── audio.meta │ ├── audio │ │ ├── music.meta │ │ ├── music │ │ │ ├── bgm.mp3 │ │ │ └── bgm.mp3.meta │ │ ├── sound.meta │ │ └── sound │ │ │ ├── bullet1.mp3 │ │ │ ├── bullet1.mp3.meta │ │ │ ├── bullet2.mp3 │ │ │ ├── bullet2.mp3.meta │ │ │ ├── bullet3.mp3 │ │ │ ├── bullet3.mp3.meta │ │ │ ├── button.mp3 │ │ │ ├── button.mp3.meta │ │ │ ├── changeBullet.mp3 │ │ │ ├── changeBullet.mp3.meta │ │ │ ├── enemy1.mp3 │ │ │ ├── enemy1.mp3.meta │ │ │ ├── enemy2.mp3 │ │ │ ├── enemy2.mp3.meta │ │ │ ├── player.mp3 │ │ │ ├── player.mp3.meta │ │ │ ├── start.mp3 │ │ │ └── start.mp3.meta │ ├── effect.meta │ ├── effect │ │ ├── bullet.meta │ │ ├── bullet │ │ │ ├── bullet01.png │ │ │ ├── bullet01.png.meta │ │ │ ├── bullet01.prefab │ │ │ ├── bullet01.prefab.meta │ │ │ ├── bullet02.png │ │ │ ├── bullet02.png.meta │ │ │ ├── bullet02.prefab │ │ │ ├── bullet02.prefab.meta │ │ │ ├── bullet03.png │ │ │ ├── bullet03.png.meta │ │ │ ├── bullet03.prefab │ │ │ ├── bullet03.prefab.meta │ │ │ ├── bullet04.png │ │ │ ├── bullet04.png.meta │ │ │ ├── bullet04.prefab │ │ │ ├── bullet04.prefab.meta │ │ │ ├── bullet05.png │ │ │ ├── bullet05.png.meta │ │ │ ├── bullet05.prefab │ │ │ └── bullet05.prefab.meta │ │ ├── cloud.meta │ │ ├── cloud │ │ │ ├── effectsTextures136.png │ │ │ ├── effectsTextures136.png.meta │ │ │ ├── smoke3.png │ │ │ └── smoke3.png.meta │ │ ├── explode.meta │ │ ├── explode │ │ │ ├── flarecore04.png │ │ │ ├── flarecore04.png.meta │ │ │ ├── fxcloudwhite2.png │ │ │ ├── fxcloudwhite2.png.meta │ │ │ ├── genericexplosionbigsheet.png │ │ │ ├── genericexplosionbigsheet.png.meta │ │ │ ├── glowparticlesgenericsheet.png │ │ │ ├── glowparticlesgenericsheet.png.meta │ │ │ ├── path.png │ │ │ └── path.png.meta │ │ ├── tailFlame.meta │ │ ├── tailFlame │ │ │ ├── flame01.png │ │ │ └── flame01.png.meta │ │ ├── uiAni.meta │ │ └── uiAni │ │ │ ├── fightBoxSettlement.png │ │ │ ├── fightBoxSettlement.png.meta │ │ │ ├── glow01.png │ │ │ └── glow01.png.meta │ ├── model.meta │ ├── model │ │ ├── ball.meta │ │ ├── ball │ │ │ ├── ball.FBX │ │ │ ├── ball.FBX.meta │ │ │ ├── ball.jpg │ │ │ └── ball.jpg.meta │ │ ├── fightIconBullet.meta │ │ ├── fightIconBullet │ │ │ ├── BulletH.prefab │ │ │ ├── BulletH.prefab.meta │ │ │ ├── BulletM.prefab │ │ │ ├── BulletM.prefab.meta │ │ │ ├── BulletS.prefab │ │ │ ├── BulletS.prefab.meta │ │ │ ├── airdrop.png │ │ │ ├── airdrop.png.meta │ │ │ ├── fightIconBullet01.png │ │ │ ├── fightIconBullet01.png.meta │ │ │ ├── fightIconBullet02.png │ │ │ ├── fightIconBullet02.png.meta │ │ │ ├── fightIconBullet03.png │ │ │ └── fightIconBullet03.png.meta │ │ ├── stone.meta │ │ └── stone │ │ │ ├── coreWind.mtl │ │ │ ├── coreWind.mtl.meta │ │ │ ├── coreWind.png │ │ │ ├── coreWind.png.meta │ │ │ ├── effectsTextures16451.mtl │ │ │ ├── effectsTextures16451.mtl.meta │ │ │ ├── effectsTextures16451.png │ │ │ ├── effectsTextures16451.png.meta │ │ │ ├── lightning001.png │ │ │ ├── lightning001.png.meta │ │ │ ├── lightningClamp012.png │ │ │ ├── lightningClamp012.png.meta │ │ │ ├── lightningblue.mtl │ │ │ ├── lightningblue.mtl.meta │ │ │ ├── lightningblue.png │ │ │ ├── lightningblue.png.meta │ │ │ ├── stone.FBX │ │ │ ├── stone.FBX.meta │ │ │ ├── stone.jpg │ │ │ ├── stone.jpg.meta │ │ │ ├── stone.mtl │ │ │ ├── stone.mtl.meta │ │ │ ├── stone.prefab │ │ │ ├── stone.prefab.meta │ │ │ ├── stoneAni.anim │ │ │ └── stoneAni.anim.meta │ ├── particle package.meta │ ├── particle package │ │ ├── ball.zip │ │ ├── ball.zip.meta │ │ ├── cloudStars.zip │ │ ├── cloudStars.zip.meta │ │ ├── explode.zip │ │ ├── explode.zip.meta │ │ ├── explodeSmall.zip │ │ ├── explodeSmall.zip.meta │ │ ├── stone.zip │ │ ├── stone.zip.meta │ │ ├── tailFlame.zip │ │ └── tailFlame.zip.meta │ ├── texture.meta │ └── texture │ │ ├── background.png │ │ ├── background.png.meta │ │ ├── blood.meta │ │ ├── blood │ │ ├── bg.png │ │ ├── bg.png.meta │ │ ├── value.png │ │ └── value.png.meta │ │ ├── buttonBorder.png │ │ ├── buttonBorder.png.meta │ │ ├── enemy.meta │ │ ├── enemy │ │ ├── enemy1.png │ │ ├── enemy1.png.meta │ │ ├── enemy1.prefab │ │ ├── enemy1.prefab.meta │ │ ├── enemy1Down.anim │ │ ├── enemy1Down.anim.meta │ │ ├── enemy1Down.meta │ │ ├── enemy1Down │ │ │ ├── enemy1.png │ │ │ ├── enemy1.png.meta │ │ │ ├── enemy1_down1.png │ │ │ ├── enemy1_down1.png.meta │ │ │ ├── enemy1_down2.png │ │ │ ├── enemy1_down2.png.meta │ │ │ ├── enemy1_down3.png │ │ │ ├── enemy1_down3.png.meta │ │ │ ├── enemy1_down4.png │ │ │ └── enemy1_down4.png.meta │ │ ├── enemy2.png │ │ ├── enemy2.png.meta │ │ ├── enemy2.prefab │ │ ├── enemy2.prefab.meta │ │ ├── enemy2Down.anim │ │ ├── enemy2Down.anim.meta │ │ ├── enemy2Down.meta │ │ ├── enemy2Down │ │ │ ├── enemy2_down1.png │ │ │ ├── enemy2_down1.png.meta │ │ │ ├── enemy2_down2.png │ │ │ ├── enemy2_down2.png.meta │ │ │ ├── enemy2_down3.png │ │ │ ├── enemy2_down3.png.meta │ │ │ ├── enemy2_down4.png │ │ │ └── enemy2_down4.png.meta │ │ ├── enemy3.png │ │ ├── enemy3.png.meta │ │ ├── enemy3.prefab │ │ └── enemy3.prefab.meta │ │ ├── hero.meta │ │ ├── hero │ │ ├── down.meta │ │ ├── down │ │ │ ├── hero_blowup_n1.png │ │ │ ├── hero_blowup_n1.png.meta │ │ │ ├── hero_blowup_n2.png │ │ │ ├── hero_blowup_n2.png.meta │ │ │ ├── hero_blowup_n3.png │ │ │ ├── hero_blowup_n3.png.meta │ │ │ ├── hero_blowup_n4.png │ │ │ ├── hero_blowup_n4.png.meta │ │ │ ├── playerDown.anim │ │ │ └── playerDown.anim.meta │ │ ├── fly.meta │ │ └── fly │ │ │ ├── engineAnimation.anim │ │ │ ├── engineAnimation.anim.meta │ │ │ ├── hero1.png │ │ │ ├── hero1.png.meta │ │ │ ├── hero2.png │ │ │ └── hero2.png.meta │ │ ├── start.meta │ │ ├── start │ │ ├── loading.meta │ │ ├── loading │ │ │ ├── game_loading1.png │ │ │ ├── game_loading1.png.meta │ │ │ ├── game_loading2.png │ │ │ ├── game_loading2.png.meta │ │ │ ├── game_loading3.png │ │ │ ├── game_loading3.png.meta │ │ │ ├── startLoading.anim │ │ │ └── startLoading.anim.meta │ │ ├── title.png │ │ └── title.png.meta │ │ ├── ui.meta │ │ └── ui │ │ ├── game_pause_nor.png │ │ ├── game_pause_nor.png.meta │ │ ├── game_resume_nor.png │ │ └── game_resume_nor.png.meta ├── script.meta ├── script │ ├── MovingSceneBg.ts │ ├── MovingSceneBg.ts.meta │ ├── bullet.meta │ ├── bullet │ │ ├── Bullet.ts │ │ ├── Bullet.ts.meta │ │ ├── BulletProp.ts │ │ └── BulletProp.ts.meta │ ├── framework.meta │ ├── framework │ │ ├── AudioManager.ts │ │ ├── AudioManager.ts.meta │ │ ├── Constant.ts │ │ ├── Constant.ts.meta │ │ ├── GameManager.ts │ │ ├── GameManager.ts.meta │ │ ├── PoolManager.ts │ │ ├── PoolManager.ts.meta │ │ ├── Start.ts │ │ └── Start.ts.meta │ ├── plane.meta │ ├── plane │ │ ├── EnemyPlane.ts │ │ ├── EnemyPlane.ts.meta │ │ ├── SelfPlane.ts │ │ └── SelfPlane.ts.meta │ ├── ui.meta │ └── ui │ │ ├── UIMain.ts │ │ └── UIMain.ts.meta ├── start.scene └── start.scene.meta ├── package.json ├── settings └── v2 │ └── packages │ ├── builder.json │ ├── cocos-service.json │ ├── device.json │ ├── engine.json │ ├── information.json │ ├── program.json │ └── project.json └── tsconfig.json /.creator/asset-template/typescript/Custom Script Template Help Documentation.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/.creator/asset-template/typescript/Custom Script Template Help Documentation.url -------------------------------------------------------------------------------- /.creator/default-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/.creator/default-meta.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/.gitignore -------------------------------------------------------------------------------- /assets/fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/fonts.meta -------------------------------------------------------------------------------- /assets/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /assets/fonts/Marker Felt.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/fonts/Marker Felt.ttf.meta -------------------------------------------------------------------------------- /assets/game.scene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/game.scene -------------------------------------------------------------------------------- /assets/game.scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/game.scene.meta -------------------------------------------------------------------------------- /assets/res.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res.meta -------------------------------------------------------------------------------- /assets/res/audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio.meta -------------------------------------------------------------------------------- /assets/res/audio/music.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/music.meta -------------------------------------------------------------------------------- /assets/res/audio/music/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/music/bgm.mp3 -------------------------------------------------------------------------------- /assets/res/audio/music/bgm.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/music/bgm.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/bullet1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/bullet1.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/bullet1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/bullet1.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/bullet2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/bullet2.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/bullet2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/bullet2.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/bullet3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/bullet3.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/bullet3.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/bullet3.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/button.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/button.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/button.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/button.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/changeBullet.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/changeBullet.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/changeBullet.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/changeBullet.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/enemy1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/enemy1.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/enemy1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/enemy1.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/enemy2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/enemy2.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/enemy2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/enemy2.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/player.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/player.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/player.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/player.mp3.meta -------------------------------------------------------------------------------- /assets/res/audio/sound/start.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/start.mp3 -------------------------------------------------------------------------------- /assets/res/audio/sound/start.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/audio/sound/start.mp3.meta -------------------------------------------------------------------------------- /assets/res/effect.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet01.png -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet01.png.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet01.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet01.prefab -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet01.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet01.prefab.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet02.png -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet02.png.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet02.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet02.prefab -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet02.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet02.prefab.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet03.png -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet03.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet03.png.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet03.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet03.prefab -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet03.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet03.prefab.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet04.png -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet04.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet04.png.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet04.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet04.prefab -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet04.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet04.prefab.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet05.png -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet05.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet05.png.meta -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet05.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet05.prefab -------------------------------------------------------------------------------- /assets/res/effect/bullet/bullet05.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/bullet/bullet05.prefab.meta -------------------------------------------------------------------------------- /assets/res/effect/cloud.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/cloud.meta -------------------------------------------------------------------------------- /assets/res/effect/cloud/effectsTextures136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/cloud/effectsTextures136.png -------------------------------------------------------------------------------- /assets/res/effect/cloud/effectsTextures136.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/cloud/effectsTextures136.png.meta -------------------------------------------------------------------------------- /assets/res/effect/cloud/smoke3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/cloud/smoke3.png -------------------------------------------------------------------------------- /assets/res/effect/cloud/smoke3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/cloud/smoke3.png.meta -------------------------------------------------------------------------------- /assets/res/effect/explode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode.meta -------------------------------------------------------------------------------- /assets/res/effect/explode/flarecore04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/flarecore04.png -------------------------------------------------------------------------------- /assets/res/effect/explode/flarecore04.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/flarecore04.png.meta -------------------------------------------------------------------------------- /assets/res/effect/explode/fxcloudwhite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/fxcloudwhite2.png -------------------------------------------------------------------------------- /assets/res/effect/explode/fxcloudwhite2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/fxcloudwhite2.png.meta -------------------------------------------------------------------------------- /assets/res/effect/explode/genericexplosionbigsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/genericexplosionbigsheet.png -------------------------------------------------------------------------------- /assets/res/effect/explode/genericexplosionbigsheet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/genericexplosionbigsheet.png.meta -------------------------------------------------------------------------------- /assets/res/effect/explode/glowparticlesgenericsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/glowparticlesgenericsheet.png -------------------------------------------------------------------------------- /assets/res/effect/explode/glowparticlesgenericsheet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/glowparticlesgenericsheet.png.meta -------------------------------------------------------------------------------- /assets/res/effect/explode/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/path.png -------------------------------------------------------------------------------- /assets/res/effect/explode/path.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/explode/path.png.meta -------------------------------------------------------------------------------- /assets/res/effect/tailFlame.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/tailFlame.meta -------------------------------------------------------------------------------- /assets/res/effect/tailFlame/flame01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/tailFlame/flame01.png -------------------------------------------------------------------------------- /assets/res/effect/tailFlame/flame01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/tailFlame/flame01.png.meta -------------------------------------------------------------------------------- /assets/res/effect/uiAni.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/uiAni.meta -------------------------------------------------------------------------------- /assets/res/effect/uiAni/fightBoxSettlement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/uiAni/fightBoxSettlement.png -------------------------------------------------------------------------------- /assets/res/effect/uiAni/fightBoxSettlement.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/uiAni/fightBoxSettlement.png.meta -------------------------------------------------------------------------------- /assets/res/effect/uiAni/glow01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/uiAni/glow01.png -------------------------------------------------------------------------------- /assets/res/effect/uiAni/glow01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/effect/uiAni/glow01.png.meta -------------------------------------------------------------------------------- /assets/res/model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model.meta -------------------------------------------------------------------------------- /assets/res/model/ball.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/ball.meta -------------------------------------------------------------------------------- /assets/res/model/ball/ball.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/ball/ball.FBX -------------------------------------------------------------------------------- /assets/res/model/ball/ball.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/ball/ball.FBX.meta -------------------------------------------------------------------------------- /assets/res/model/ball/ball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/ball/ball.jpg -------------------------------------------------------------------------------- /assets/res/model/ball/ball.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/ball/ball.jpg.meta -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet.meta -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/BulletH.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/BulletH.prefab -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/BulletH.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/BulletH.prefab.meta -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/BulletM.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/BulletM.prefab -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/BulletM.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/BulletM.prefab.meta -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/BulletS.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/BulletS.prefab -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/BulletS.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/BulletS.prefab.meta -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/airdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/airdrop.png -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/airdrop.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/airdrop.png.meta -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/fightIconBullet01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/fightIconBullet01.png -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/fightIconBullet01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/fightIconBullet01.png.meta -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/fightIconBullet02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/fightIconBullet02.png -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/fightIconBullet02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/fightIconBullet02.png.meta -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/fightIconBullet03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/fightIconBullet03.png -------------------------------------------------------------------------------- /assets/res/model/fightIconBullet/fightIconBullet03.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/fightIconBullet/fightIconBullet03.png.meta -------------------------------------------------------------------------------- /assets/res/model/stone.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone.meta -------------------------------------------------------------------------------- /assets/res/model/stone/coreWind.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/coreWind.mtl -------------------------------------------------------------------------------- /assets/res/model/stone/coreWind.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/coreWind.mtl.meta -------------------------------------------------------------------------------- /assets/res/model/stone/coreWind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/coreWind.png -------------------------------------------------------------------------------- /assets/res/model/stone/coreWind.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/coreWind.png.meta -------------------------------------------------------------------------------- /assets/res/model/stone/effectsTextures16451.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/effectsTextures16451.mtl -------------------------------------------------------------------------------- /assets/res/model/stone/effectsTextures16451.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/effectsTextures16451.mtl.meta -------------------------------------------------------------------------------- /assets/res/model/stone/effectsTextures16451.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/effectsTextures16451.png -------------------------------------------------------------------------------- /assets/res/model/stone/effectsTextures16451.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/effectsTextures16451.png.meta -------------------------------------------------------------------------------- /assets/res/model/stone/lightning001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/lightning001.png -------------------------------------------------------------------------------- /assets/res/model/stone/lightning001.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/lightning001.png.meta -------------------------------------------------------------------------------- /assets/res/model/stone/lightningClamp012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/lightningClamp012.png -------------------------------------------------------------------------------- /assets/res/model/stone/lightningClamp012.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/lightningClamp012.png.meta -------------------------------------------------------------------------------- /assets/res/model/stone/lightningblue.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/lightningblue.mtl -------------------------------------------------------------------------------- /assets/res/model/stone/lightningblue.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/lightningblue.mtl.meta -------------------------------------------------------------------------------- /assets/res/model/stone/lightningblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/lightningblue.png -------------------------------------------------------------------------------- /assets/res/model/stone/lightningblue.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/lightningblue.png.meta -------------------------------------------------------------------------------- /assets/res/model/stone/stone.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stone.FBX -------------------------------------------------------------------------------- /assets/res/model/stone/stone.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stone.FBX.meta -------------------------------------------------------------------------------- /assets/res/model/stone/stone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stone.jpg -------------------------------------------------------------------------------- /assets/res/model/stone/stone.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stone.jpg.meta -------------------------------------------------------------------------------- /assets/res/model/stone/stone.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stone.mtl -------------------------------------------------------------------------------- /assets/res/model/stone/stone.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stone.mtl.meta -------------------------------------------------------------------------------- /assets/res/model/stone/stone.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stone.prefab -------------------------------------------------------------------------------- /assets/res/model/stone/stone.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stone.prefab.meta -------------------------------------------------------------------------------- /assets/res/model/stone/stoneAni.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stoneAni.anim -------------------------------------------------------------------------------- /assets/res/model/stone/stoneAni.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/model/stone/stoneAni.anim.meta -------------------------------------------------------------------------------- /assets/res/particle package.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package.meta -------------------------------------------------------------------------------- /assets/res/particle package/ball.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/ball.zip -------------------------------------------------------------------------------- /assets/res/particle package/ball.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/ball.zip.meta -------------------------------------------------------------------------------- /assets/res/particle package/cloudStars.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/cloudStars.zip -------------------------------------------------------------------------------- /assets/res/particle package/cloudStars.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/cloudStars.zip.meta -------------------------------------------------------------------------------- /assets/res/particle package/explode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/explode.zip -------------------------------------------------------------------------------- /assets/res/particle package/explode.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/explode.zip.meta -------------------------------------------------------------------------------- /assets/res/particle package/explodeSmall.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/explodeSmall.zip -------------------------------------------------------------------------------- /assets/res/particle package/explodeSmall.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/explodeSmall.zip.meta -------------------------------------------------------------------------------- /assets/res/particle package/stone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/stone.zip -------------------------------------------------------------------------------- /assets/res/particle package/stone.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/stone.zip.meta -------------------------------------------------------------------------------- /assets/res/particle package/tailFlame.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/tailFlame.zip -------------------------------------------------------------------------------- /assets/res/particle package/tailFlame.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/particle package/tailFlame.zip.meta -------------------------------------------------------------------------------- /assets/res/texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture.meta -------------------------------------------------------------------------------- /assets/res/texture/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/background.png -------------------------------------------------------------------------------- /assets/res/texture/background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/background.png.meta -------------------------------------------------------------------------------- /assets/res/texture/blood.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/blood.meta -------------------------------------------------------------------------------- /assets/res/texture/blood/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/blood/bg.png -------------------------------------------------------------------------------- /assets/res/texture/blood/bg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/blood/bg.png.meta -------------------------------------------------------------------------------- /assets/res/texture/blood/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/blood/value.png -------------------------------------------------------------------------------- /assets/res/texture/blood/value.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/blood/value.png.meta -------------------------------------------------------------------------------- /assets/res/texture/buttonBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/buttonBorder.png -------------------------------------------------------------------------------- /assets/res/texture/buttonBorder.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/buttonBorder.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1.prefab -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1.prefab.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down.anim -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down.anim.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1_down1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1_down1.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1_down1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1_down1.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1_down2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1_down2.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1_down2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1_down2.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1_down3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1_down3.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1_down3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1_down3.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1_down4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1_down4.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy1Down/enemy1_down4.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy1Down/enemy1_down4.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2.prefab -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2.prefab.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down.anim -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down.anim.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down/enemy2_down1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down/enemy2_down1.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down/enemy2_down1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down/enemy2_down1.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down/enemy2_down2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down/enemy2_down2.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down/enemy2_down2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down/enemy2_down2.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down/enemy2_down3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down/enemy2_down3.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down/enemy2_down3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down/enemy2_down3.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down/enemy2_down4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down/enemy2_down4.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy2Down/enemy2_down4.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy2Down/enemy2_down4.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy3.png -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy3.png.meta -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy3.prefab -------------------------------------------------------------------------------- /assets/res/texture/enemy/enemy3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/enemy/enemy3.prefab.meta -------------------------------------------------------------------------------- /assets/res/texture/hero.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/down.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/down/hero_blowup_n1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/hero_blowup_n1.png -------------------------------------------------------------------------------- /assets/res/texture/hero/down/hero_blowup_n1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/hero_blowup_n1.png.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/down/hero_blowup_n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/hero_blowup_n2.png -------------------------------------------------------------------------------- /assets/res/texture/hero/down/hero_blowup_n2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/hero_blowup_n2.png.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/down/hero_blowup_n3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/hero_blowup_n3.png -------------------------------------------------------------------------------- /assets/res/texture/hero/down/hero_blowup_n3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/hero_blowup_n3.png.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/down/hero_blowup_n4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/hero_blowup_n4.png -------------------------------------------------------------------------------- /assets/res/texture/hero/down/hero_blowup_n4.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/hero_blowup_n4.png.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/down/playerDown.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/playerDown.anim -------------------------------------------------------------------------------- /assets/res/texture/hero/down/playerDown.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/down/playerDown.anim.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/fly.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/fly.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/fly/engineAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/fly/engineAnimation.anim -------------------------------------------------------------------------------- /assets/res/texture/hero/fly/engineAnimation.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/fly/engineAnimation.anim.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/fly/hero1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/fly/hero1.png -------------------------------------------------------------------------------- /assets/res/texture/hero/fly/hero1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/fly/hero1.png.meta -------------------------------------------------------------------------------- /assets/res/texture/hero/fly/hero2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/fly/hero2.png -------------------------------------------------------------------------------- /assets/res/texture/hero/fly/hero2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/hero/fly/hero2.png.meta -------------------------------------------------------------------------------- /assets/res/texture/start.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start.meta -------------------------------------------------------------------------------- /assets/res/texture/start/loading.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading.meta -------------------------------------------------------------------------------- /assets/res/texture/start/loading/game_loading1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading/game_loading1.png -------------------------------------------------------------------------------- /assets/res/texture/start/loading/game_loading1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading/game_loading1.png.meta -------------------------------------------------------------------------------- /assets/res/texture/start/loading/game_loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading/game_loading2.png -------------------------------------------------------------------------------- /assets/res/texture/start/loading/game_loading2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading/game_loading2.png.meta -------------------------------------------------------------------------------- /assets/res/texture/start/loading/game_loading3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading/game_loading3.png -------------------------------------------------------------------------------- /assets/res/texture/start/loading/game_loading3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading/game_loading3.png.meta -------------------------------------------------------------------------------- /assets/res/texture/start/loading/startLoading.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading/startLoading.anim -------------------------------------------------------------------------------- /assets/res/texture/start/loading/startLoading.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/loading/startLoading.anim.meta -------------------------------------------------------------------------------- /assets/res/texture/start/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/title.png -------------------------------------------------------------------------------- /assets/res/texture/start/title.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/start/title.png.meta -------------------------------------------------------------------------------- /assets/res/texture/ui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/ui.meta -------------------------------------------------------------------------------- /assets/res/texture/ui/game_pause_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/ui/game_pause_nor.png -------------------------------------------------------------------------------- /assets/res/texture/ui/game_pause_nor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/ui/game_pause_nor.png.meta -------------------------------------------------------------------------------- /assets/res/texture/ui/game_resume_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/ui/game_resume_nor.png -------------------------------------------------------------------------------- /assets/res/texture/ui/game_resume_nor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/res/texture/ui/game_resume_nor.png.meta -------------------------------------------------------------------------------- /assets/script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script.meta -------------------------------------------------------------------------------- /assets/script/MovingSceneBg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/MovingSceneBg.ts -------------------------------------------------------------------------------- /assets/script/MovingSceneBg.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/MovingSceneBg.ts.meta -------------------------------------------------------------------------------- /assets/script/bullet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/bullet.meta -------------------------------------------------------------------------------- /assets/script/bullet/Bullet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/bullet/Bullet.ts -------------------------------------------------------------------------------- /assets/script/bullet/Bullet.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/bullet/Bullet.ts.meta -------------------------------------------------------------------------------- /assets/script/bullet/BulletProp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/bullet/BulletProp.ts -------------------------------------------------------------------------------- /assets/script/bullet/BulletProp.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/bullet/BulletProp.ts.meta -------------------------------------------------------------------------------- /assets/script/framework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework.meta -------------------------------------------------------------------------------- /assets/script/framework/AudioManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/AudioManager.ts -------------------------------------------------------------------------------- /assets/script/framework/AudioManager.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/AudioManager.ts.meta -------------------------------------------------------------------------------- /assets/script/framework/Constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/Constant.ts -------------------------------------------------------------------------------- /assets/script/framework/Constant.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/Constant.ts.meta -------------------------------------------------------------------------------- /assets/script/framework/GameManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/GameManager.ts -------------------------------------------------------------------------------- /assets/script/framework/GameManager.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/GameManager.ts.meta -------------------------------------------------------------------------------- /assets/script/framework/PoolManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/PoolManager.ts -------------------------------------------------------------------------------- /assets/script/framework/PoolManager.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/PoolManager.ts.meta -------------------------------------------------------------------------------- /assets/script/framework/Start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/Start.ts -------------------------------------------------------------------------------- /assets/script/framework/Start.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/framework/Start.ts.meta -------------------------------------------------------------------------------- /assets/script/plane.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/plane.meta -------------------------------------------------------------------------------- /assets/script/plane/EnemyPlane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/plane/EnemyPlane.ts -------------------------------------------------------------------------------- /assets/script/plane/EnemyPlane.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/plane/EnemyPlane.ts.meta -------------------------------------------------------------------------------- /assets/script/plane/SelfPlane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/plane/SelfPlane.ts -------------------------------------------------------------------------------- /assets/script/plane/SelfPlane.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/plane/SelfPlane.ts.meta -------------------------------------------------------------------------------- /assets/script/ui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/ui.meta -------------------------------------------------------------------------------- /assets/script/ui/UIMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/ui/UIMain.ts -------------------------------------------------------------------------------- /assets/script/ui/UIMain.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/script/ui/UIMain.ts.meta -------------------------------------------------------------------------------- /assets/start.scene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/start.scene -------------------------------------------------------------------------------- /assets/start.scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/assets/start.scene.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/package.json -------------------------------------------------------------------------------- /settings/v2/packages/builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/settings/v2/packages/builder.json -------------------------------------------------------------------------------- /settings/v2/packages/cocos-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/settings/v2/packages/cocos-service.json -------------------------------------------------------------------------------- /settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /settings/v2/packages/engine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/settings/v2/packages/engine.json -------------------------------------------------------------------------------- /settings/v2/packages/information.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/settings/v2/packages/information.json -------------------------------------------------------------------------------- /settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /settings/v2/packages/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/settings/v2/packages/project.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikanong/cocos-plane/HEAD/tsconfig.json --------------------------------------------------------------------------------