# Booom GameJam 2021 **Repository Path**: leeyu11/booom-game-jam-2021 ## Basic Information - **Project Name**: Booom GameJam 2021 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-17 - **Last Updated**: 2021-08-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Booom GameJam 2021 #### 介绍 我们是闪电若干人团队1 #### unity版本 2020 1.17f1c1 #### 整体核心玩法架构 https://www.processon.com/view/link/6114eeddf346fb2a2ea764c2 #### 前三关具体关卡设计 https://www.processon.com/view/link/61174af1f346fb06e5cada04 #### 前三关资源需求 https://shimo.im/sheets/NOAdP67KPrCzFyAP/MODOC/ #### 第一关美术资源 链接:https://pan.baidu.com/s/1v0pE-C_Vg1VpUCi0v8N0XQ 提取码:pbnu #### 火灾救援关卡设计 https://docs.qq.com/doc/DWXBNTWNkWWVPekxF #### 火灾关卡美术需求 https://docs.qq.com/sheet/DWUxZclFjYmFFSk9Z #### 特效要求 1. xxxx 2. xxxx 3. xxxx #### 美术要求 1. xxxx 2. xxxx 3. xxxx ### Git使用教程 ##### 安装设置 git 下载最新版本的git ``` http://git-scm.com/downloads ``` 点击链接根据自己不同的版本去下载 当你安装完成git的时候,你需要简单的配置一下,打开终端: ![image-20210817154534990](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817154534990.png) ##### window-点击反键使用管理员身份运行 ###### 进入终端 ![image-20210817154704986](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817154704986.png) ## 用户名 第一步,你需要告诉git你的名字,这个名字会出现在你的提交记录中。 ``` git config --global user.name "你的名字" ``` 复制输入完后,回车进入下一步 然后是你的Email,同样,这个Email也会出现在你的提交记录中,请尽量保持此Email和您的码云的注册Email一致。 ``` git config --global user.email "你的Email" ``` **** ![image-20210817155004770](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817155004770.png) ## Clone 和 Push 建议第一次使用避免clone后找不到文件夹的位置可以在终端输入cd desktop 然后回车进入桌面 ``` cd desktop ``` ![image-20210817155320876](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817155320876.png) Clone 项目 复制下面代码回车即可等待下载成功 ``` git clone https://gitee.com/leeyu11/booom-game-jam-2021 ``` ![image-20210817155603892](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817155603892.png) ![image-20210817155755167](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817155755167.png) window此时在文件夹上方找到文件夹路径 ![image-20210817155918550](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817155918550.png) 复制该文件夹路径输入到cmd终端输入 ``` cd C:\Users\LeeYu\Desktop\booom-game-jam-2021 ``` ![image-20210817160827098](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817160827098.png) 如果你写了代码,或者修改了其中的文件,增加了新文件,提交变更 ``` git commit -am " 2" ``` ![image-20210817162827497](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817162827497.png) 将你的提交推送到 码云---成功 ``` git push origin master ``` ![image-20210817163017485](C:\Users\LeeYu\AppData\Roaming\Typora\typora-user-images\image-20210817163017485.png)