3.0.0-preview.4

# [3.0.0-preview.4](https://github.com/mob-sakai/ParticleEffectForUGUI/compare/v3.0.0-preview.3...v3.0.0-preview.4) (2020-02-18)

### Bug Fixes

* compile error in Unity 2019.1 or later ([28ca922](28ca922167)), closes [#70](https://github.com/mob-sakai/ParticleEffectForUGUI/issues/70) [#71](https://github.com/mob-sakai/ParticleEffectForUGUI/issues/71)
This commit is contained in:
semantic-release-bot
2020-02-18 02:11:03 +00:00
parent 47edd82542
commit 94b1c71a32
20 changed files with 694 additions and 129 deletions

View File

@@ -1,4 +1,4 @@
#if OPEN_SESAME
#if IGNORE_ACCESS_CHECKS // [ASMDEFEX] DO NOT REMOVE THIS LINE MANUALLY.
using UnityEditor;
using UnityEditor.UI;
using UnityEngine;
@@ -58,10 +58,10 @@ namespace Coffee.UIExtensions
{
GenericMenu gm = new GenericMenu();
gm.AddItem(new GUIContent("Nothing"), s_ActiveNames.Count == 0, () =>
{
sp.ClearArray();
sp.serializedObject.ApplyModifiedProperties();
});
{
sp.ClearArray();
sp.serializedObject.ApplyModifiedProperties();
});
for (int i = 0; i < sp.arraySize; i++)
@@ -279,4 +279,4 @@ namespace Coffee.UIExtensions
}
}
}
#endif
#endif // [ASMDEFEX] DO NOT REMOVE THIS LINE MANUALLY.