导入博物馆资产
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
Shader "Invisible" {
|
||||
|
||||
Subshader {Pass {
|
||||
GLSLPROGRAM
|
||||
#ifdef VERTEX
|
||||
void main() {}
|
||||
#endif
|
||||
|
||||
#ifdef FRAGMENT
|
||||
void main() {}
|
||||
#endif
|
||||
ENDGLSL
|
||||
}}
|
||||
|
||||
Subshader {Pass {
|
||||
CGPROGRAM
|
||||
#pragma vertex vert
|
||||
#pragma fragment frag
|
||||
struct v2f {
|
||||
fixed4 position : SV_POSITION;
|
||||
};
|
||||
|
||||
v2f vert() {
|
||||
v2f o;
|
||||
o.position = fixed4(0,0,0,0);
|
||||
return o;
|
||||
}
|
||||
|
||||
fixed4 frag() : COLOR {
|
||||
return fixed4(0,0,0,0);
|
||||
}
|
||||
ENDCG
|
||||
}}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 29414144b688f1148beb502ec65e0cc2
|
||||
timeCreated: 1456857965
|
||||
licenseType: Store
|
||||
ShaderImporter:
|
||||
defaultTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user