This file contains hidden or 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
float3 RaycastSphere(float3 origin, float3 direction, out float hit) | |
{ | |
float radius = _HoleRadius; | |
float3 holeOrigin = _HoleOffset; | |
float3 toCenter = holeOrigin - origin; | |
if (SqrLength(toCenter) <= pow(radius, 2)) | |
{ | |
hit = 1; | |
return origin; |
This file contains hidden or 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
SHAPEZ2-1-H4sIALjbx2YA/6xdf2scyRH9Lkv+VI7p1z2/BPdHHCdgojuM7BwJwRx79voioluZ9eoOY/TdI0s70szO7O70e88GG2NVTVVPTXdVdVW9r4ufFuehaMuzxYvXi/Oviz9tv3xaLc4Xrz5fL9cfFmeLV+9v1t/+4+Vyu1yc/2dxdf/v8+vll5vb7XcXD3/9/OPN5rfl9c+4/+mH//3l9ur6w9X61+9+WG1+XW3evvnv8tPqp+Xmarnedj/z4+1vv6w2YfhPLN7dnS3+tt5urlaf7x/2dfHvxfmfw9ni8l7Is8Xbe7nGj3zRF/vF7tGHBH99vdx+vKf9vDhb315fP/6x+PxNwPPL28ffIyH+tThvz76JggdJ4qMkL1bX29c3m+2b1frDavNqvV1t1svrZzX/ev8z//jLw6/vF3dnD2xCYeIT3HwuHlbYpZ2DW2sVra8orIrCqajMrPEYRuNc/MavYHpm8HL1cXl7vb1YfdzucxgscJlPkvaF3RH+/Wbzx3Lz4QDtk4QXT7tWppwcYZp+W9kyg5UZrMygZK4eOIT2gRiZxGWfePfkx+MKb2/CxR7VD1ebzc1m9WH86KcV5wXYf2mkGNDFACdG3V/LneG++XR9tb2nCm9vMJ/+aSlULmC5PH4IoTlql0fMun6if34Z3fMfHaGThPsmlU8Olrwaq31s8SapA0+dR1f26WbtPfsvuxzLrfMBz6ea0OjwZzim2tcikxZ5tLtPpVTP8jA68SQ+4PnUA4360ctx0x0okEuG2WTVE9nlSM3L1fvV1e+HFL3X8fsxlymjF3hB41X2tcs+g8qxVhoP7SxM4imWLGdh0s7Csq9LFDbGlHuaHuUTeD7VhEbzP7x0yLjmEyOTePcia8pBfiam44IBC8lNr6cCv+ydpj4ckZK8oPFqDvquF1cft+Gfn14s3//vZOB1zO27/1LjceKJRXl4+MubP9azH385M+acdphpf/mRvB7JPnPhmvG6k+ITC9/uv27Mfd2F7OsUJp+pUH |
OlderNewer