3.0.0-preview.15

# [3.0.0-preview.15](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/v3.0.0-preview.14...v3.0.0-preview.15) (2020-08-11)

### Bug Fixes

* An exception in the OnSceneGUI caused the scale of the transformation to change unintentionally ([75413e0](75413e0e2c))
This commit is contained in:
semantic-release-bot
2020-08-11 17:10:22 +00:00
parent 2b3bf91655
commit 7355c2ac78
3 changed files with 16 additions and 3 deletions

View File

@@ -282,8 +282,14 @@ namespace Coffee.UIExtensions
trans.localScale = Vector3.Scale(localScale, x.canvas.rootCanvas.transform.localScale * x.scale);
});
foreach (var ui in _shapeModuleUIs)
ui.OnSceneViewGUI();
try
{
foreach (var ui in _shapeModuleUIs)
ui.OnSceneViewGUI();
}
catch
{
}
postAction();
ShapeModuleUI.s_GizmoColor.m_Color = origin;