Procedural Systems [Definitive Infinity Media]
A comprehensive package for creating procedural systems in Unity, including procedural generation, algorithms, and utilities
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
About The Project
A comprehensive package for creating procedural systems in Unity, including procedural generation, algorithms, and utilities
Getting Started
Follow one of the installation methods below to add this package to your Unity project.
Prerequisites
Unity 2021.1 or later is required to use this package.
Installation
Method 1: Package Manager (Git URL)
Open the Package Manager window in Unity (Window > Package Manager).
Click the [+] button in the top-left corner and select Add package from git URL.
Enter the following URL and click Add:
https://github.com/Definitive-Infinity-Media/com.definitiveinfinitymedia.proceduralsystems.git
For more details on Git URLs in Unity, see the Unity documentation.
Method 2: Scoped Registry
Open Edit > Project Settings > Package Manager.
Add a scoped registry with the following details:
- Name: Definitive Infinity Media
- URL: https://npm.pkg.github.com/@Definitive-Infinity-Media
- Scope(s): com.definitiveinfinitymedia
Create a
.upmconfig.tomlfile in your user root directory:- Windows:
%USERPROFILE%\.upmconfig.toml - macOS/Linux:
~/.upmconfig.toml
- Windows:
Add your GitHub personal access token:
[npmAuth."https://npm.pkg.github.com/@Definitive-Infinity-Media"] token = "YOUR_GITHUB_PAT" email = "your-email@example.com" alwaysAuth = trueAdd the package to your
Packages/manifest.json:"com.definitiveinfinitymedia.proceduralsystems": "1.3.8"
Learn more: Creating private packages for your Unity project.
Method 3: Direct Clone (for development)
Clone this repository directly into your project's Packages folder:
git clone https://github.com/Definitive-Infinity-Media/com.definitiveinfinitymedia.proceduralsystems.git
Usage
Use the components, tools, and samples provided by this package in your Unity project. For API documentation and examples, please refer to the Documentation.
Dependencies
| Package | Version |
|---|---|
com.unity.pipeline |
0.5.0-exp.1 |
com.definitiveinfinitymedia.utilities |
1.16.4 |
Samples
- Dungeon Generator — Contains an example scene for the dungeon generator (
Samples/Dungeon Generator) - City Builder — Contains an example scene for the procedural city builder functions in the package (
Samples/City Builder)
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this package better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Contact
Definitive Infinity Media - contact@definitiveinfinitymedia.com
Project Link: https://github.com/Definitive-Infinity-Media/com.definitiveinfinitymedia.proceduralsystems