Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blazekill/vloxyengine
Performance oriented voxel engine for unity.
https://github.com/blazekill/vloxyengine
procedural-generation unity voxel
Last synced: about 14 hours ago
JSON representation
Performance oriented voxel engine for unity.
- Host: GitHub
- URL: https://github.com/blazekill/vloxyengine
- Owner: BLaZeKiLL
- License: mit
- Created: 2020-10-28T18:04:06.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-27T05:21:04.000Z (about 1 month ago)
- Last Synced: 2024-11-27T06:26:00.700Z (about 1 month ago)
- Topics: procedural-generation, unity, voxel
- Language: C#
- Homepage:
- Size: 16.3 MB
- Stars: 100
- Watchers: 7
- Forks: 9
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Vloxy Engine
Performance oriented voxel engine for Unity. Latest release for the engine and sandbox application can be found [here](https://github.com/BLaZeKiLL/VloxyEngine/releases).
## Goals
| Description | Done |
|---------------------------------|:----:|
| Jobs & Burst | ✔ |
| Extensible Api | ✔ |
| Serialization | |
| Streaming & Infinite generation | ✔ |
| Noise Generation System | |
| Physics & Fluids | * |
| Networking | |## Demos
Along with package releases a demo application showcasing the capabilities is also released for the following platforms
- Windows
- AndroidHead over to the [release page](https://github.com/BLaZeKiLL/VloxyEngine/releases) to check them out
## Quick Start
- Get started by installing **Vloxy Engine** using one of the following methods
- Unity Package latest can be found **[here](https://github.com/BLaZeKiLL/VloxyEngine/releases)**
- OpenUPM, more info can be found **[here](https://openupm.com/packages/io.codeblaze.vloxyengine/)**
```bash title="OpenUPM Install Command"
openupm add io.codeblaze.vloxyengine
```> While UPM is supported via OpenUPM, it is still recommended to add **Vloxy Engine** directly to the project as a package.
> With source access you would get the maximum control and freedom to tune the engine to your use case.- Make sure the following dependencies are installed, they should be installed **automatically** regardless of the way you install **Vloxy Engine**
- [Unity Maths](https://docs.unity3d.com/Packages/[email protected]/manual/index.html)
- [Unity Burst](https://docs.unity3d.com/Packages/[email protected]/manual/index.html)
- [Unity Collections](https://docs.unity3d.com/Packages/[email protected]/manual/index.html)- After the package is imported you can open up one of the sample scene or import one of the world prefabs into your current scene.
In case you go the prefabs route, make sure to set the focus parameter on the world object around which the world would be generated.## Documentation & Dev-logs
Documentation can be found [here](https://blazekill.github.io/vloxy-docs/), and it's source code is hosted [here](https://github.com/BLaZeKiLL/vloxy-docs)I'll try to create devlogs for the major features in development as well as some tutorials which you can find on my [YouTube](https://www.youtube.com/c/CodeBlazeX) or on the Vloxy Engine website [blog](https://blazekill.github.io/vloxy-docs/blog).