Welcome to the Unity Game Development repository! This repository contains a sample game created using Unity, demonstrating various aspects of game design and development.
To work with this project, you will need to have Unity installed. Follow these steps to set up your development environment:
-
Download and install Unity Hub.
-
Use Unity Hub to install the latest version of the Unity Editor.
-
Clone this repository using the following command:
bash git clone https://github.com/yourusername/unity-game-development.git
-
Open the project in Unity Hub and select the project folder.
After the project is opened in Unity, follow these steps to run the game:
- Make sure all necessary packages are installed via the Package Manager.
- Open the
Scenes
folder and double-click theMainScene
scene to load it. - Click the
Play
button in the Unity Editor to start the game.
Here's a brief overview of the project's folder structure:
unity-game-development/ │ ├── Assets/ │ ├── Art/ │ ├── Audio/ │ ├── Prefabs/ │ ├── Scenes/ │ ├── Scripts/ │ └── UI/ │ ├── ProjectSettings/ └── README.md
- Assets/: Contains all game assets including art, audio, prefabs, scenes, scripts, and UI elements.
- ProjectSettings/: Contains Unity project settings files.
This sample game includes the following features:
- Player Movement: Control your character using keyboard inputs.
- Enemy AI: Enemies that chase the player and respond to their actions.
- Collectibles: Items that the player can collect for points.
- UI Elements: Score display and game menus.
This project is licensed under the MIT License. See the LICENSE file for more details.
Contributions are welcome! If you'd like to contribute to this project, please follow these steps:
- Fork the project.
- Create your feature branch (
git checkout -b feature-YourFeature
). - Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-YourFeature
). - Open a Pull Request.
Thank you for your interest in contributing to this Unity project!