Unity 内建数据索引

看到多少补多少

 

顶点输入类型

UnityCG.cginc Line:58 
struct appdata_base {
    float4 vertex : POSITION;
    float3 normal : NORMAL;
    float4 texcoord : TEXCOORD0;
    UNITY_VERTEX_INPUT_INSTANCE_ID
};

struct appdata_tan {
    float4 vertex : POSITION;
    float4 tangent : TANGENT;
    float3 normal : NORMAL;
    float4 texcoord : TEXCOORD0;
    UNITY_VERTEX_INPUT_INSTANCE_ID
};

struct appdata_full {
    float4 vertex : POSITION;
    float4 tangent : TANGENT;
    float3 normal : NORMAL;
    float4 texcoord : TEXCOORD0;
    float4 texcoord1 : TEXCOORD1;
    float4 texcoord2 : TEXCOORD2;
    float4 texcoord3 : TEXCOORD3;
    fixed4 color : COLOR;
    UNITY_VERTEX_INPUT_INSTANCE_ID
};

内建一些变量

Transformations

All these matrices are float4x4 type.

 

  
NameValue
UNITY_MATRIX_MVPCurrent model * view * projection matrix.
UNITY_MATRIX_MVCurrent model * view matrix.
UNITY_MATRIX_VCurrent view matrix.
UNITY_MATRIX_PCurrent projection matrix.
UNITY_MATRIX_VPCurrent view * projection matrix.
UNITY_MATRIX_T_MVTranspose of model * view matrix.
UNITY_MATRIX_IT_MVInverse transpose of model * view matrix.
unity_ObjectToWorldCurrent model matrix.
unity_WorldToObjectInverse of current world matrix.

Camera and screen

These variables will correspond to the Camera that is rendering. For example during shadowmap rendering, they will still refer to the Camera component values, and not the “virtual camera” that is used for the shadowmap projection.

   
NameTypeValue
_WorldSpaceCameraPosfloat3World space position of the camera.
_ProjectionParamsfloat4x is 1.0 (or –1.0 if currently rendering with a flipped projection matrix), y is the camera’s near plane, z is the camera’s far plane and w is 1/FarPlane.
_ScreenParamsfloat4x is the width of the camera’s target texture in pixels, y is the height of the camera’s target texture in pixels, z is 1.0 + 1.0/width and w is 1.0 + 1.0/height.
_ZBufferParamsfloat4Used to linearize Z buffer values. x is (1-far/near), y is (far/near), z is (x/far) and w is (y/far).
unity_OrthoParamsfloat4x is orthographic camera’s width, y is orthographic camera’s height, z is unused and w is 1.0 when camera is orthographic, 0.0 when perspective.
unity_CameraProjectionfloat4x4Camera’s projection matrix.
unity_CameraInvProjectionfloat4x4Inverse of camera’s projection matrix.
unity_CameraWorldClipPlanes[6]float4Camera frustum plane world space equations, in this order: left, right, bottom, top, near, far.

Time

   
NameTypeValue
_Timefloat4Time since level load (t/20, t, t*2, t*3), use to animate things inside the shaders.
_SinTimefloat4Sine of time: (t/8, t/4, t/2, t).
_CosTimefloat4Cosine of time: (t/8, t/4, t/2, t).
unity_DeltaTimefloat4Delta time: (dt, 1/dt, smoothDt, 1/smoothDt).

Lighting

灯光部分 根据LightMode 不同可用的内建数据也是不同的

Light parameters are passed to shaders in different ways depending on which Rendering Path is used, and which LightMode Pass Tag is used in the shader.

Forward rendering (ForwardBase and ForwardAdd pass types):

   
NameTypeValue
_LightColor0 (declared in Lighting.cginc)fixed4Light color.
_WorldSpaceLightPos0float4Directional lights: (world space direction, 0). Other lights: (world space position, 1).
_LightMatrix0 (declared in AutoLight.cginc)float4x4World-to-light matrix. Used to sample cookie & attenuation textures.
unity_4LightPosX0, unity_4LightPosY0, unity_4LightPosZ0float4(ForwardBase pass only) world space positions of first four non-important point lights.
unity_4LightAtten0float4(ForwardBase pass only) attenuation factors of first four non-important point lights.
unity_LightColorhalf4[4](ForwardBase pass only) colors of of first four non-important point lights.
unity_WorldToShadowfloat4x4[4]World-to-shadow matrices. One matrix for spot lights, up to four for directional light cascades.

Deferred shading and deferred lighting, used in the lighting pass shader (all declared in UnityDeferredLibrary.cginc):

   
NameTypeValue
_LightColorfloat4Light color.
_LightMatrix0float4x4World-to-light matrix. Used to sample cookie & attenuation textures.
unity_WorldToShadowfloat4x4[4]World-to-shadow matrices. One matrix for spot lights, up to four for directional light cascades.

Spherical harmonics coefficients (used by ambient and light probes) are set up for ForwardBasePrePassFinal and Deferred pass types. They contain 3rd order SH to be evaluated by world space normal (see ShadeSH9 from UnityCG.cginc). The variables are all half4 type, unity_SHAr and similar names.

Vertex-lit rendering (Vertex pass type):

Up to 8 lights are set up for a Vertex pass type; always sorted starting from the brightest one. So if you want to render objects affected by two lights at once, you can just take first two entries in the arrays. If there are less lights affecting the object than 8, the rest will have their color set to black.

   
NameTypeValue
unity_LightColorhalf4[8]Light colors.
unity_LightPositionfloat4[8]View-space light positions. (-direction,0) for directional lights; (position,1) for point/spot lights.
unity_LightAttenhalf4[8]Light attenuation factors. x is cos(spotAngle/2) or –1 for non-spot lights; y is 1/cos(spotAngle/4) or 1 for non-spot lights; z is quadratic attenuation; w is squared light range.
unity_SpotDirectionfloat4[8]View-space spot light positions; (0,0,1,0) for non-spot lights.

Fog and Ambient

   
NameTypeValue
unity_AmbientSkyfixed4Sky ambient lighting color in gradient ambient lighting case.
unity_AmbientEquatorfixed4Equator ambient lighting color in gradient ambient lighting case.
unity_AmbientGroundfixed4Ground ambient lighting color in gradient ambient lighting case.
UNITY_LIGHTMODEL_AMBIENTfixed4Ambient lighting color (sky color in gradient ambient case). Legacy variable.
unity_FogColorfixed4Fog color.
unity_FogParamsfloat4Parameters for fog calculation: (density / sqrt(ln(2)), density / ln(2), –1/(end-start), end/(end-start)). x is useful for Exp2 fog mode, y for Exp mode, z and w for Linear mode.

Various

   
NameTypeValue
unity_LODFadefloat4Level-of-detail fade when using LODGroupx is fade (0..1), y is fade quantized to 16 levels, z and w unused.

 内建函数

Vertex transformation functions in UnityCG.cginc
Function:Description:
float4 UnityObjectToClipPos(float3 pos)Transforms a point from object space to the camera’s clip space in homogeneous coordinates. This is the equivalent of mul(UNITY_MATRIX_MVP, float4(pos, 1.0)), and should be used in its place.
float3 UnityObjectToViewPos(float3 pos)

Transforms a point from object space to view space. This is the equivalent of mul(UNITY_MATRIX_MV, float4(pos, 1.0)).xyz, and should be used in its place.

 

Generic helper functions in UnityCG.cginc
Function:Description:
float3 WorldSpaceViewDir (float4 v)Returns world space direction (not normalized) from given object space vertex position towards the camera.
float3 ObjSpaceViewDir (float4 v)Returns object space direction (not normalized) from given object space vertex position towards the camera.
float2 ParallaxOffset (half h, half height, half3 viewDir)calculates UV offset for parallax normal mapping.
fixed Luminance (fixed3 c)Converts color to luminance (grayscale).
fixed3 DecodeLightmap (fixed4 color)Decodes color from Unity lightmap (RGBM or dLDR depending on platform).
float4 EncodeFloatRGBA (float v)Encodes [0..1) range float into RGBA color, for storage in low precision render target.
float DecodeFloatRGBA (float4 enc)Decodes RGBA color into a float.
float2 EncodeFloatRG (float v)Encodes [0..1) range float into a float2.
float DecodeFloatRG (float2 enc)Decodes a previously-encoded RG float.
float2 EncodeViewNormalStereo (float3 n)Encodes view space normal into two numbers in 0..1 range.
float3 DecodeViewNormalStereo (float4 enc4)Decodes view space normal from enc4.xy.

 

Forward rendering helper functions in UnityCG.cginc

These functions are only useful when using forward rendering (ForwardBase or ForwardAdd pass types).

Function:Description:
float3 WorldSpaceLightDir (float4 v)Computes world space direction (not normalized) to light, given object space vertex position.
float3 ObjSpaceLightDir (float4 v)Computes object space direction (not normalized) to light, given object space vertex position.
float3 Shade4PointLights (...)Computes illumination from four point lights, with light data tightly packed into vectors. Forward rendering uses this to compute per-vertex lighting.
Screen-space helper functions in UnityCG.cginc

The following functions are helpers to compute coordinates used for sampling screen-space textures. They return float4 where the final coordinate to sample texture with can be computed via perspective division (for example xy/w).

The functions also take care of platform differences in render texture coordinates.

Function:Description:
float4 ComputeScreenPos (float4 clipPos)Computes texture coordinate for doing a screenspace-mapped texture sample. Input is clip space position.
float4 ComputeGrabScreenPos (float4 clipPos)Computes texture coordinate for sampling a GrabPass texure. Input is clip space position.
Vertex-lit helper functions in UnityCG.cginc

These functions are only useful when using per-vertex lit shaders (“Vertex” pass type).

Function:Description:
float3 ShadeVertexLights (float4 vertex, float3 normal)Computes illumination from four per-vertex lights and ambient, given object space position & normal.

转载于:https://www.cnblogs.com/wbaoqing/p/8892437.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值