fix #44; The masked images all disappear if game view is maximized

pull/87/head
mob-sakai 2019-03-16 16:49:47 +09:00
parent 76cb9129e9
commit 7a9efce141
1 changed files with 0 additions and 9 deletions

View File

@ -186,15 +186,6 @@ namespace Coffee.UIExtensions
/// </summary>
static void UpdateSceneViewMatrixForShader()
{
UnityEditor.SceneView sceneView = UnityEditor.SceneView.lastActiveSceneView;
if (!sceneView || !sceneView.camera)
{
return;
}
Camera cam = sceneView.camera;
Matrix4x4 w2c = cam.worldToCameraMatrix;
Matrix4x4 prj = cam.projectionMatrix;
s_ActiveSoftMaskables.RemoveAll(x=>!x);
foreach (var sm in s_ActiveSoftMaskables)