Everyday Unity
1.15K subscribers
163 photos
59 videos
42 files
2.37K links
A game developer and tech lead in a top grossing company posting Unity, programming, and gamedev related stuff that I find interesting
Website: https://gamedev.center

Most used tags are:
#performance
#shader
#interview

Author: @alexmtr
Download Telegram
Unity-Dependencies-Hunter: This tool finds unreferenced assets by scanning all files in your Unity project.

https://github.com/AlexeyPerov/Unity-Dependencies-Hunter

#editortool #assets
πŸ‘3
10 things you need to be doing in Unity

A list of basic tips by a guy who works on a lot of prototypes:
- Serializing components
- Drawing scene gizmos
- Initialization order
- Stop using public fields
- Mod to loop collections
- PlayClipAtPoint
- Limit extern calls with SetPositionAndRotation
- Operator overloading
- Composition
- Don't use lazy naming conventions

https://youtu.be/Ic5ux-tpkCE

#tips
πŸ‘2πŸ‘Ž1
Custom Leaf Physics

Allows setting up fallen leaves with realistic physics

https://github.com/hasantarhan/LeafPhysics

#instancing #jobsystem #particles
πŸ‘2
animation.gif
20.3 MB
Unity-Grass-Instancer: Unity C# script and shader for GPU instanced grass

https://github.com/MangoButtermilch/Unity-Grass-Instancer

#grass #shader #hdrp #instancing #drawmesh
πŸ‘4
Mesh-Animation: Fast GPU vertex shader based animation library for Unity (VAT, Vertex Animation Texture, Morphing Animation)

Mesh Animation bakes vertex positions for each animation frame to texture. A custom shader then move vertexes to desired positions on GPU. Allows drawing the same original mesh multiple times with GPU Instancing. Unique animation parameters are overridden for each instance with Material Property Block.

https://github.com/codewriter-packages/Mesh-Animation

#instancing #gpuanimation #bake
πŸ‘4
AsmdefHelper: Unity assembly definition utilities.

Contains:
- Dependency Graph
- Multiple Edit
- Compile Locker
- Custom Create

Latest Rider versions improve the workflow with asmdefs, but multiple edit and compile locker from this package can come in handy.

https://github.com/naninunenoy/AsmdefHelper

#asmdef #dependency #graph
πŸ‘7
unity.auto-attach: Auto attach components to serialized fields

Attaches components in editor when any MonoBehaviour selected, removed or added. Attaches only once, so there is almost no performance impact. You can also implement abstract AutoSetter class.

https://github.com/dythervin/unity.auto-attach

#editortool #requirecomponent #attach
πŸ‘6
How To Use Every Node in Unity Shader Graph

An outstanding work that contains a description of 200+ nodes, most have a visual example.

https://danielilett.com/2021-05-20-every-shader-graph-node/

#shadergraph
πŸ‘6
UniMod: Adds modding support to your Unity project

With mod scripting enabled, UniMod requires Mono, with only the following platforms being implemented right now: Windows, OSX and Linux, Android

https://github.com/katas94/UniMod

#modding
πŸ‘4