FreshlyBrewedCode / unity-mesh-tilesets

a Unity plugin to place objects along ProBuilder meshes based on rules from tileset. Heavily inspired by the tooling in Source 2.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unity Mesh Tilesets

openupm Last Commit BuyMeCoffee

Unity Mesh Tilesets is a Unity editor extension that can be used to automatically place objects along ProBuilder meshes based on rules from a tileset. The tool is heavily inspired by the tile mesh feature of Valve's Source Engine 2 that was used for many different props in Half Life Alyx.

Showcase

Installation

Mesh Tilesets requires ProBuilder. ProBuilder will be added automatically to your project if it has not been installed yet. It is also highly recommended to install ProGrids as well (note that ProGrids is still in preview so you have to enable preview packages in the package manager).

OpenUPM (recommended)

Make sure you have the OpenUPM CLI installed. From the root of your project run:

openupm add com.freshlybrewedcode.unity-mesh-tilesets

Unity Package Manager

Open the Unity package manager, click on the plus icon in the top left corner and select "Add package from git URL". Paste the following URL into the text field:

https://github.com/FreshlyBrewedCode/unity-mesh-tilesets.git#upm

Note: You will not be able to select a specific version or update the package using this method. If you want to update to the latest version you have to remove the package and add it again using the url above.

Manual Download

Download or clone the repository and add the Assets/Mesh Tilesets folder into the Assets folder of your Unity project.

Getting Started

Check out the getting started section in the documentation.

How It Works

The tool works using primitive meshes that you create and modify directly inside of Unity using ProBuilder. You place the TilesetRenderer component on your tile mesh GameObject and it will find rectangular quads ("tile instances") in the mesh. Each tile instance has an orientation (top, bottom, left, right, normal), a size (width, height) and knows about other adjacent tiles.

You assign a tileset to the TilesetRenderer that can contain any number of tiles. Each tile is basically a prefab that contains information about the size of the tile (width, height) and "rules" about if there can or should be any tiles adjacent to the left/right/top/bottom of the tile.

For each tile instance in the mesh the TilesetRenderer tries to find a tile from the assigned tileset that "fits" (by comparing size and adjacency).

Check out the documentation for more info.

Examples

Here are some example use cases for the tool. I am sure there are many more creative ways to use this tool. If you have a cool example feel free leave a pull request and add it to the list.

Pipes, Tubes

Pipe Example

Ducts, Vents

Duct Example

Railings, Fences

Railing Example

Catwalks, Bridges, Stairs

Catwalk Example

Buildings (almost)

Building Example

Support Me

If you like this tool and you would like to support me, feel free to buy me coffee:

BuyMeCoffee

Thank you :)

Contributing

Pull request welcome.

TODO

License

MIT

The tool can be used freely in any project of any scale. Please don't redistribute the tool through the Unity Assetstore or a similar marketplace.

About

a Unity plugin to place objects along ProBuilder meshes based on rules from tileset. Heavily inspired by the tooling in Source 2.

License:MIT License


Languages

Language:C# 100.0%