fix: Update softmask not working when canvas component was deactivated

Close #66
pull/87/head
mob-sakai 2020-01-28 18:46:48 +09:00
parent 0efcdfb78f
commit a7a3c41a51
1 changed files with 6 additions and 0 deletions

View File

@ -429,9 +429,15 @@ namespace Coffee.UIExtensions
continue;
var canvas = sm.graphic.canvas;
if(!canvas)
continue;
if (canvas.renderMode == RenderMode.WorldSpace)
{
var cam = canvas.worldCamera;
if(!cam)
continue;
Matrix4x4 nowsVP = cam.projectionMatrix * cam.worldToCameraMatrix;
#if UNITY_2018_1_OR_NEWER