This repository has been archived on 2025-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef CUSTOM_VERTEX_TRANSFORM_INCLUDED
|
|
#define CUSTOM_VERTEX_TRANSFORM_INCLUDED
|
|
|
|
float4 ComputeVertexPosition(float4 vertex) {
|
|
// Add here any custom vertex transform
|
|
float4 pos = UnityObjectToClipPos(vertex);
|
|
return pos;
|
|
}
|
|
|
|
#endif
|