-
-
Save toxicFork/c8a75491e271e27572b3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_SPECCUBE_BOX_PROJECTION | |
#define IN_WORLDPOS(i) i.posWorld | |
#else | |
#define IN_WORLDPOS(i) half3(0,0,0) | |
#endif | |
#define IN_LIGHTDIR_FWDADD(i) half3(i.tangentToWorldAndLightDir[0].w, i.tangentToWorldAndLightDir[1].w, i.tangentToWorldAndLightDir[2].w) | |
#define FRAGMENT_SETUP(x) FragmentCommonData x = \ | |
FragmentSetup(i.tex, i.eyeVec, WorldNormal(i.tangentToWorldAndParallax), IN_VIEWDIR4PARALLAX(i), ExtractTangentToWorldPerPixel(i.tangentToWorldAndParallax), IN_WORLDPOS(i)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment