-
-
Save toxicFork/70fee9396eeddb8c5718 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
float4 _planePos; | |
float4 _planeNorm; | |
void PlaneClip(float3 posWorld) { | |
clip(distanceToPlane(_planePos.xyz, _planeNorm.xyz, posWorld)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment