Bypassing Unity Undo System's Memory Limitation
2024-06-03
An insight for bypassing Unity's undo system's limitation when editing large terrains, via Harmony.
1143 words
|
6 minutes
Loading Raw 3D Models in Runtime
2024-05-18
An insight for loading 3D models in Unity using the gltf format in runtime.
450 words
|
2 minutes
Pixel Perfect Outline in Lo-Res
2024-03-04
Learn how to create pixel perfect outline for Unity games using screen space edge detection, while taking transparent objects into account.
1496 words
|
7 minutes
Multi-pass Convolution with Shader Graph
2023-09-23
In this article I will demonstrate how to use Custom Render Texture and Shader Graph to achieve multi pass convolution - effect like gaussian blur, edge detection, etc.
581 words
|
3 minutes
Irregular Puzzles
2022-09-01
Building a puzzle game that simulates putting together shredded paper pieces can be tricky, especially when dealing with merging and moving pieces. In this post, I share my approach to implementing a drag-and-drop system, managing piece merging, and handling the puzzle completion logic in Unity.
1488 words
|
7 minutes
Weapon Trail
2022-06-20
Creating a weapon trail effect in 3D is far more complex than in 2D, especially when considering how the slash plane changes based on animation. In this post, I’ll share a method I used to generate 3D weapon trails in Unity using mesh generation and interpolation techniques.
1425 words
|
7 minutes