From 028a7b4a4f9904090a3a4a11c529a814a438ed32 Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Tue, 7 May 2019 16:33:40 +0900 Subject: [PATCH] fix #51; Unity 2019.1.1f1 compile failed --- Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs index 7a817a8..fecb688 100755 --- a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs +++ b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs @@ -414,7 +414,7 @@ namespace Coffee.UIExtensions Matrix4x4 nowsVP = cam.projectionMatrix * cam.worldToCameraMatrix; #if UNITY_2018_1_OR_NEWER - Matrix4x4 previousVP = cam.reviousViewProjectionMatrix; + Matrix4x4 previousVP = cam.previousViewProjectionMatrix; #else Matrix4x4 previousVP = default(Matrix4x4); int id = cam.GetInstanceID ();