# cocos-plane **Repository Path**: sq5682/cocos-plane ## Basic Information - **Project Name**: cocos-plane - **Description**: cocos实现简单打飞机 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-04-23 - **Last Updated**: 2024-05-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # cocos-plane cocos-plane ``` ├── README.md ├── assets │ ├── plane │ │ ├── Script │ │ │ ├── BgControl.ts │ │ │ ├── BgControl.ts.meta │ │ │ ├── BulletControl.ts │ │ │ ├── BulletControl.ts.meta │ │ │ ├── EnemyControl.ts │ │ │ ├── EnemyControl.ts.meta │ │ │ ├── EnemyManager.ts │ │ │ ├── EnemyManager.ts.meta │ │ │ ├── PlayerControl.ts │ │ │ └── PlayerControl.ts.meta │ │ ├── Script.meta │ │ ├── bullet.prefab │ │ ├── bullet.prefab.meta │ │ ├── enemy.prefab │ │ ├── enemy.prefab.meta │ │ ├── resources │ │ │ ├── background.png │ │ │ ├── background.png.meta │ │ │ ├── bullet1.png │ │ │ ├── bullet1.png.meta │ │ │ ├── enemy0.png │ │ │ ├── enemy0.png.meta │ │ │ ├── enemy0_die.png │ │ │ ├── enemy0_die.png.meta │ │ │ ├── hero1.png │ │ │ ├── hero1.png.meta │ │ │ ├── hero1_die.png │ │ │ └── hero1_die.png.meta │ │ └── resources.meta │ ├── plane.meta │ ├── planeGame.fire │ └── planeGame.fire.meta ├── library ├── creator.d.ts ├── jsconfig.json ├── local │ ├── layout.editor.json │ ├── local.json │ └── node-tree-state.json ├── packages ├── project.json ├── settings │ ├── builder.json │ ├── builder.panel.json │ ├── project.json │ └── services.json ├── temp │ ├── BackupAssets │ │ └── assets │ │ ├── Scene │ │ │ └── helloworld.fire │ │ ├── SpotToLine │ │ │ └── spot.prefab │ │ ├── game.fire │ │ ├── game1.fire │ │ ├── planeGame.fire │ │ ├── pointToLine.fire │ │ ├── spot.prefab │ │ └── spotToLine.fire │ ├── general-asset-caches │ ├── gltf │ │ └── dafe1431be2d692861144674216e5982_out │ │ ├── buffer.bin │ │ └── dafe1431be2d692861144674216e5982.gltf │ ├── quick-scripts │ │ ├── dst │ │ │ ├── __file_stats__.json │ │ │ ├── __qc_bundle__.js │ │ │ ├── __qc_index__.js │ │ │ ├── __quick_compile__.js │ │ │ └── assets │ │ │ └── plane │ │ │ └── Script │ │ │ ├── BgControl.js │ │ │ ├── BulletControl.js │ │ │ ├── EnemyControl.js │ │ │ ├── EnemyManager.js │ │ │ └── PlayerControl.js │ │ └── src │ │ ├── __qc_index__.js │ │ └── assets │ │ └── plane │ │ └── Script │ │ ├── BgControl.js │ │ ├── BgControl.js.map │ │ ├── BulletControl.js │ │ ├── BulletControl.js.map │ │ ├── EnemyControl.js │ │ ├── EnemyControl.js.map │ │ ├── EnemyManager.js │ │ ├── EnemyManager.js.map │ │ ├── PlayerControl.js │ │ └── PlayerControl.js.map │ └── startup.json ├── template-banner.png ├── template.json └── tsconfig.json ```