From 22891bf59032ba88262824255a706d652031384b Mon Sep 17 00:00:00 2001 From: chai Date: Thu, 10 Mar 2022 14:07:40 +0800 Subject: * move folder --- Assets/Scripts/Data/StaticDefine.cs | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Assets/Scripts/Data/StaticDefine.cs (limited to 'Assets/Scripts/Data/StaticDefine.cs') diff --git a/Assets/Scripts/Data/StaticDefine.cs b/Assets/Scripts/Data/StaticDefine.cs deleted file mode 100644 index dcfb19e1..00000000 --- a/Assets/Scripts/Data/StaticDefine.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; - -public static class StaticDefine -{ - // unit image用到的材质 - public static Dictionary imageEffectMaterails = new Dictionary() { - { EImageEffectMaterails.MotionBlur, "Assets/Bundle/Materials/Unit/ImageEffect/unit_img_motion_blur.mat"}, - { EImageEffectMaterails.Glitch, "Assets/Bundle/Materials/Unit/ImageEffect/unit_img_glitch.mat"}, - }; - - - public struct ShaderDefine - { - public ShaderDefine(string n, string p) { name = n; path = p; } - public string name; - public string path; - } - public static Dictionary shaders = new Dictionary { - { EShader.Blur, new ShaderDefine("Erika/Common/Image/Blur", "")}, - { EShader.MotionBlur, new ShaderDefine("Erika/Common/Image/MotionBlur", "")}, - { EShader.SolidColor, new ShaderDefine("Erika/Common/SolidColor", "") }, - { EShader.UnitDepth, new ShaderDefine("Erika/Unit/Common/Depth", "") }, - { EShader.Buzz, new ShaderDefine("Erika/Common/Image/Buzz", "") }, - { EShader.GBuffer, new ShaderDefine("Erika/Common/GBuffer", "") }, - }; - - public static string bundleManifest = "bundles"; // Assets/Resources/bundles.json - -} -- cgit v1.1-26-g67d0