From 6c2ed22e3a870e0bef2f167f6b9b4909e69c162c Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Tue, 26 Feb 2019 11:10:47 +0900 Subject: [PATCH] fix #44; v2.2.0 has 2 warnings --- Scripts/UIParticle.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/UIParticle.cs b/Scripts/UIParticle.cs index 05bbc19..b808b27 100755 --- a/Scripts/UIParticle.cs +++ b/Scripts/UIParticle.cs @@ -54,9 +54,9 @@ namespace Coffee.UIExtensions }; [SerializeField] - string m_Name; + string m_Name = ""; [SerializeField] - ShaderPropertyType m_Type; + ShaderPropertyType m_Type = ShaderPropertyType.Vector; public int id { get; private set; } public ShaderPropertyType type { get { return m_Type; } }