Skip to content

Commit

Permalink
Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
pema99 committed Sep 3, 2023
1 parent f500619 commit 593610b
Show file tree
Hide file tree
Showing 143 changed files with 11,228 additions and 6,307 deletions.
8 changes: 8 additions & 0 deletions AudioLinkUnityProject/Assets/AL Controller.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
107 changes: 107 additions & 0 deletions AudioLinkUnityProject/Assets/AL Controller/ALController.fbx.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
Shader "Custom/AudioLinkController"
{
Properties
{
_Color ("Color", Color) = (1,1,1,1)
_MainTex ("Albedo (RGB)", 2D) = "white" {}
_Metallic ("Metallic", 2D) = "white" {}
[ToggleUI] _UseTheme ("Use Theme", Int) = 0
}
SubShader
{
Tags { "RenderType"="Opaque" }

CGPROGRAM
#pragma surface surf Standard fullforwardshadows
#pragma target 3.0

sampler2D _MainTex;
sampler2D _Metallic;
float4 _Color;
int _UseTheme;

struct Input
{
float2 uv_MainTex;
};

void surf (Input IN, inout SurfaceOutputStandard o)
{
float4 c = tex2D (_MainTex, IN.uv_MainTex) * _Color;
o.Albedo = c.rgb;
float4 b = tex2D(_Metallic, IN.uv_MainTex);
o.Metallic = b.r;
o.Smoothness = b.a;
o.Occlusion = b.g;
o.Alpha = c.a;
}
ENDCG
}
FallBack "Diffuse"
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 593610b

Please sign in to comment.