Initialer Upload neues Unity-Projekt
This commit is contained in:
52
Assets/SteamVR/Resources/SteamVR_AlphaOut.shader
Normal file
52
Assets/SteamVR/Resources/SteamVR_AlphaOut.shader
Normal file
@ -0,0 +1,52 @@
|
||||
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
|
||||
// UNITY_SHADER_NO_UPGRADE
|
||||
Shader "Custom/SteamVR_AlphaOut" {
|
||||
Properties { _MainTex ("Base (RGB)", 2D) = "white" {} }
|
||||
|
||||
CGINCLUDE
|
||||
|
||||
#include "UnityCG.cginc"
|
||||
|
||||
sampler2D _MainTex;
|
||||
|
||||
struct v2f {
|
||||
float4 pos : SV_POSITION;
|
||||
float2 tex : TEXCOORD0;
|
||||
};
|
||||
|
||||
v2f vert(appdata_base v) {
|
||||
v2f o;
|
||||
#if UNITY_VERSION >= 540
|
||||
o.pos = UnityObjectToClipPos(v.vertex);
|
||||
#else
|
||||
o.pos = mul(UNITY_MATRIX_MVP, v.vertex);
|
||||
#endif
|
||||
o.tex = v.texcoord;
|
||||
return o;
|
||||
}
|
||||
|
||||
float luminance(float3 color)
|
||||
{
|
||||
return 0.2126 * color.r + 0.7152 * color.g + 0.0722 * color.b;
|
||||
}
|
||||
|
||||
float4 frag(v2f i) : COLOR {
|
||||
float4 color = tex2D(_MainTex, i.tex);
|
||||
float a = saturate(color.a + luminance(color.rgb));
|
||||
return float4(a, a, a, a);
|
||||
}
|
||||
|
||||
ENDCG
|
||||
|
||||
SubShader {
|
||||
Pass {
|
||||
ZTest Always Cull Off ZWrite Off
|
||||
Fog { Mode Off }
|
||||
|
||||
CGPROGRAM
|
||||
#pragma vertex vert
|
||||
#pragma fragment frag
|
||||
ENDCG
|
||||
}
|
||||
}
|
||||
}
|
||||
9
Assets/SteamVR/Resources/SteamVR_AlphaOut.shader.meta
Normal file
9
Assets/SteamVR/Resources/SteamVR_AlphaOut.shader.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: da25bb0dccfd3894181fc5e84714cd17
|
||||
timeCreated: 1456189850
|
||||
licenseType: Store
|
||||
ShaderImporter:
|
||||
defaultTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
52
Assets/SteamVR/Resources/SteamVR_ClearAll.shader
Normal file
52
Assets/SteamVR/Resources/SteamVR_ClearAll.shader
Normal file
@ -0,0 +1,52 @@
|
||||
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
|
||||
// UNITY_SHADER_NO_UPGRADE
|
||||
Shader "Custom/SteamVR_ClearAll" {
|
||||
Properties
|
||||
{
|
||||
_Color ("Color", Color) = (0, 0, 0, 0)
|
||||
_MainTex ("Base (RGB)", 2D) = "white" {}
|
||||
}
|
||||
|
||||
CGINCLUDE
|
||||
|
||||
#include "UnityCG.cginc"
|
||||
|
||||
float4 _Color;
|
||||
sampler2D _MainTex;
|
||||
|
||||
struct v2f {
|
||||
float4 pos : SV_POSITION;
|
||||
float2 tex : TEXCOORD0;
|
||||
};
|
||||
|
||||
v2f vert(appdata_base v) {
|
||||
v2f o;
|
||||
#if UNITY_VERSION >= 540
|
||||
o.pos = UnityObjectToClipPos(v.vertex);
|
||||
#else
|
||||
o.pos = mul(UNITY_MATRIX_MVP, v.vertex);
|
||||
#endif
|
||||
o.tex = v.texcoord;
|
||||
return o;
|
||||
}
|
||||
|
||||
float4 frag(v2f i) : COLOR {
|
||||
return _Color;
|
||||
}
|
||||
|
||||
ENDCG
|
||||
|
||||
SubShader {
|
||||
Tags{ "Queue" = "Background" }
|
||||
Pass {
|
||||
ZTest Always Cull Off ZWrite On
|
||||
Fog { Mode Off }
|
||||
|
||||
CGPROGRAM
|
||||
#pragma vertex vert
|
||||
#pragma fragment frag
|
||||
ENDCG
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
9
Assets/SteamVR/Resources/SteamVR_ClearAll.shader.meta
Normal file
9
Assets/SteamVR/Resources/SteamVR_ClearAll.shader.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c1eded52540dd0a4988d5d4d76382da9
|
||||
timeCreated: 1457042024
|
||||
licenseType: Store
|
||||
ShaderImporter:
|
||||
defaultTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
52
Assets/SteamVR/Resources/SteamVR_ColorOut.shader
Normal file
52
Assets/SteamVR/Resources/SteamVR_ColorOut.shader
Normal file
@ -0,0 +1,52 @@
|
||||
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
|
||||
// UNITY_SHADER_NO_UPGRADE
|
||||
Shader "Custom/SteamVR_ColorOut" {
|
||||
Properties { _MainTex ("Base (RGB)", 2D) = "white" {} }
|
||||
|
||||
CGINCLUDE
|
||||
|
||||
#include "UnityCG.cginc"
|
||||
|
||||
sampler2D _MainTex;
|
||||
|
||||
struct v2f {
|
||||
float4 pos : SV_POSITION;
|
||||
float2 tex : TEXCOORD0;
|
||||
};
|
||||
|
||||
v2f vert(appdata_base v) {
|
||||
v2f o;
|
||||
#if UNITY_VERSION >= 540
|
||||
o.pos = UnityObjectToClipPos(v.vertex);
|
||||
#else
|
||||
o.pos = mul(UNITY_MATRIX_MVP, v.vertex);
|
||||
#endif
|
||||
o.tex = v.texcoord;
|
||||
return o;
|
||||
}
|
||||
|
||||
float luminance(float3 color)
|
||||
{
|
||||
return 0.2126 * color.r + 0.7152 * color.g + 0.0722 * color.b;
|
||||
}
|
||||
|
||||
float4 frag(v2f i) : COLOR {
|
||||
float4 color = tex2D(_MainTex, i.tex);
|
||||
return float4(color.rgb, 1);
|
||||
}
|
||||
|
||||
ENDCG
|
||||
|
||||
SubShader {
|
||||
Pass {
|
||||
ZTest Always Cull Off ZWrite Off
|
||||
Fog { Mode Off }
|
||||
|
||||
CGPROGRAM
|
||||
#pragma vertex vert
|
||||
#pragma fragment frag
|
||||
ENDCG
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
9
Assets/SteamVR/Resources/SteamVR_ColorOut.shader.meta
Normal file
9
Assets/SteamVR/Resources/SteamVR_ColorOut.shader.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 04d03a6e2ff64bf47911d08912140c31
|
||||
timeCreated: 1456866489
|
||||
licenseType: Store
|
||||
ShaderImporter:
|
||||
defaultTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/SteamVR/Resources/SteamVR_ExternalCamera.prefab
(Stored with Git LFS)
Normal file
BIN
Assets/SteamVR/Resources/SteamVR_ExternalCamera.prefab
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6b259143c09ffc447ad059e5b8d8cf89
|
||||
timeCreated: 1456288801
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
32
Assets/SteamVR/Resources/SteamVR_Fade.shader
Normal file
32
Assets/SteamVR/Resources/SteamVR_Fade.shader
Normal file
@ -0,0 +1,32 @@
|
||||
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
|
||||
// UNITY_SHADER_NO_UPGRADE
|
||||
Shader "Custom/SteamVR_Fade"
|
||||
{
|
||||
SubShader
|
||||
{
|
||||
Pass
|
||||
{
|
||||
Blend SrcAlpha OneMinusSrcAlpha
|
||||
ZTest Always
|
||||
Cull Off
|
||||
ZWrite Off
|
||||
|
||||
CGPROGRAM
|
||||
#pragma vertex MainVS
|
||||
#pragma fragment MainPS
|
||||
|
||||
float4 fadeColor;
|
||||
|
||||
float4 MainVS( float4 vertex : POSITION ) : SV_POSITION
|
||||
{
|
||||
return vertex.xyzw;
|
||||
}
|
||||
|
||||
float4 MainPS() : SV_Target
|
||||
{
|
||||
return fadeColor.rgba;
|
||||
}
|
||||
ENDCG
|
||||
}
|
||||
}
|
||||
}
|
||||
9
Assets/SteamVR/Resources/SteamVR_Fade.shader.meta
Normal file
9
Assets/SteamVR/Resources/SteamVR_Fade.shader.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9f884441bea153347be721454dc13716
|
||||
timeCreated: 1433284862
|
||||
licenseType: Store
|
||||
ShaderImporter:
|
||||
defaultTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
79
Assets/SteamVR/Resources/SteamVR_SphericalProjection.shader
Normal file
79
Assets/SteamVR/Resources/SteamVR_SphericalProjection.shader
Normal file
@ -0,0 +1,79 @@
|
||||
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
|
||||
// UNITY_SHADER_NO_UPGRADE
|
||||
Shader "Custom/SteamVR_SphericalProjection" {
|
||||
Properties {
|
||||
_MainTex ("Base (RGB)", 2D) = "white" {}
|
||||
_N ("N (normal of plane)", Vector) = (0,0,0,0)
|
||||
_Phi0 ("Phi0", Float) = 0
|
||||
_Phi1 ("Phi1", Float) = 1
|
||||
_Theta0 ("Theta0", Float) = 0
|
||||
_Theta1 ("Theta1", Float) = 1
|
||||
_UAxis ("uAxis", Vector) = (0,0,0,0)
|
||||
_VAxis ("vAxis", Vector) = (0,0,0,0)
|
||||
_UOrigin ("uOrigin", Vector) = (0,0,0,0)
|
||||
_VOrigin ("vOrigin", Vector) = (0,0,0,0)
|
||||
_UScale ("uScale", Float) = 1
|
||||
_VScale ("vScale", Float) = 1
|
||||
}
|
||||
|
||||
CGINCLUDE
|
||||
|
||||
#include "UnityCG.cginc"
|
||||
|
||||
sampler2D _MainTex;
|
||||
float4 _N;
|
||||
float _Phi0, _Phi1, _Theta0, _Theta1;
|
||||
float4 _UAxis, _VAxis;
|
||||
float4 _UOrigin, _VOrigin;
|
||||
float _UScale, _VScale;
|
||||
|
||||
struct v2f {
|
||||
float4 pos : SV_POSITION;
|
||||
float2 tex : TEXCOORD0;
|
||||
};
|
||||
|
||||
v2f vert(appdata_base v) {
|
||||
v2f o;
|
||||
#if UNITY_VERSION >= 540
|
||||
o.pos = UnityObjectToClipPos(v.vertex);
|
||||
#else
|
||||
o.pos = mul(UNITY_MATRIX_MVP, v.vertex);
|
||||
#endif
|
||||
o.tex = float2(
|
||||
lerp(_Phi0, _Phi1, v.texcoord.x),
|
||||
lerp(_Theta0, _Theta1, v.texcoord.y));
|
||||
return o;
|
||||
}
|
||||
|
||||
float3 cartesian(float phi, float theta)
|
||||
{
|
||||
float sinTheta = sin(theta);
|
||||
return float3(
|
||||
sinTheta * sin(phi),
|
||||
cos(theta),
|
||||
sinTheta * cos(phi));
|
||||
}
|
||||
|
||||
float4 frag(v2f i) : COLOR {
|
||||
float3 V = cartesian(i.tex.x, i.tex.y);
|
||||
float3 P = V / dot(V, _N.xyz); // intersection point on plane
|
||||
float2 uv = float2(
|
||||
dot(P - _UOrigin.xyz, _UAxis.xyz) * _UScale,
|
||||
dot(P - _VOrigin.xyz, _VAxis.xyz) * _VScale);
|
||||
return tex2D(_MainTex, uv);
|
||||
}
|
||||
|
||||
ENDCG
|
||||
|
||||
SubShader {
|
||||
Pass {
|
||||
ZTest Always Cull Off ZWrite Off
|
||||
Fog { Mode Off }
|
||||
|
||||
CGPROGRAM
|
||||
#pragma vertex vert
|
||||
#pragma fragment frag
|
||||
ENDCG
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 43b10deca54ca524c8cd9a0fcb622325
|
||||
timeCreated: 1462380123
|
||||
licenseType: Store
|
||||
ShaderImporter:
|
||||
defaultTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user