fix: fix warning

asset_update_system
mob-sakai 2024-01-29 10:16:32 +09:00
parent 2052dda953
commit 7fd4a8e343
2 changed files with 6 additions and 0 deletions

View File

@ -326,7 +326,9 @@ namespace Coffee.UIExtensions
// UIParticle for trail should be removed. // UIParticle for trail should be removed.
var label = "This UIParticle component should be removed. The UIParticle for trails is no longer needed."; var label = "This UIParticle component should be removed. The UIParticle for trails is no longer needed.";
#pragma warning disable CS0612
if (FixButton(current.m_IsTrail, label)) if (FixButton(current.m_IsTrail, label))
#pragma warning restore CS0612
{ {
DestroyUIParticle(current); DestroyUIParticle(current);
} }

View File

@ -86,7 +86,11 @@ namespace Coffee.UIExtensions
/// <summary> /// <summary>
/// The target ParticleSystem to attract. /// The target ParticleSystem to attract.
/// </summary> /// </summary>
#if UNITY_EDITOR
public new ParticleSystem particleSystem public new ParticleSystem particleSystem
#else
public ParticleSystem particleSystem
#endif
{ {
get => m_ParticleSystem; get => m_ParticleSystem;
set set