I would love to have the ability to add sure easy graphical results to things in my recreation. For instance, I would like useless enemies to fade out, I would like enemies that get hit to flash white, all simple stuff.
To date I’ve carried out these items by merely setting the colour of the GameObject (GetComponent().materials.coloration.a) however it occcured to me that if I need to do that correctly, in a method that performs good with all potential textures, and particularly once I mix a number of results (what if the colour is about by 3 scripts, one making an attempt to make it fade, one making an attempt to make it flash and one making an attempt to present it an overview) I ought to in all probability write a shader as a substitute.
I’ve labored with shaders outdoors of Unity (I’ve written some easy stuff for initiatives utilizing vanilla C++ with OpenGL and GLFW) so I believed I would just write my very own shader. Now, plainly issues just like the ‘Customary Floor Shader’ (In a challenge window, proper click on -> Create -> Shader -> Customary Floor Shader) would not work anymore due to the URP. I am slightly new to this however it looks as if everyone seems to be utilizing Shader Graphs, and out of the field, these do appear to work.
Nevertheless, I would like simply to put in writing (shader) code, however even getting a consequence nearly as good because the template that you just get when creating a brand new Shader Graph appears slightly tough; I ponder if I am overlooking some choices right here. Mainly I simply need to add a number of small issues to the usual habits of supplies, easy stuff like coloration = coloration * (1-param) + color_white * param
, or coloration.a = param
. I can’t actually discover the place to place this code, so to talk.