Skip to content

Commit

Permalink
change: change namespace
Browse files Browse the repository at this point in the history
BREAKING CHANGE: If your code contained the UIEffect API, it would fail to compile. Please change the namespace from `Coffee.UIExtensions` to `Coffee.UIEffects`.
  • Loading branch information
mob-sakai committed May 11, 2020
1 parent 019f342 commit 7f4190c
Show file tree
Hide file tree
Showing 31 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Packages/UIEffect/Samples/Demo/UIEffect_Demo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using UnityEngine;
using UnityEngine.UI;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
public class UIEffect_Demo : MonoBehaviour
{
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Common/BaseMaterialEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using UnityEngine;
using UnityEngine.UI;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Abstract effect base for UI.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Common/BaseMeshEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using UnityEngine.EventSystems;
using UnityEngine.UI;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Base class for effects that modify the generated Mesh.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Common/EffectPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System;
using System.Collections.Generic;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Effect player.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Common/MaterialCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using UnityEngine.UI;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
public class MaterialCache
{
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Common/Matrix2x3.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using UnityEngine;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Matrix2x3.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Common/ParameterTexture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using UnityEngine.Rendering;
using System;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
public interface IParameterTexture
{
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Connectors/GraphicConnector.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using UnityEngine;
using UnityEngine.UI;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
public class GraphicConnector : BaseConnector
{
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Editor/ImportSampleMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text.RegularExpressions;
using UnityEditor;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
public static class ImportSampleMenu_UIEffect
{
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Editor/MaterialDirtyScope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using UnityEditor;
using UnityEngine;

namespace Coffee.UIExtensions.Editors
namespace Coffee.UIEffects.Editors
{
/// <summary>
/// Changes in this scope cause the graphic's material to be dirty.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Editor/UIDissolveEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using UnityEngine.UI;

namespace Coffee.UIExtensions.Editors
namespace Coffee.UIEffects.Editors
{
/// <summary>
/// UIEffect editor.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Editor/UIEffectEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System;

namespace Coffee.UIExtensions.Editors
namespace Coffee.UIEffects.Editors
{
/// <summary>
/// UIEffect editor.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Editor/UIGradientEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using UnityEngine;
using UnityEngine.UI;

namespace Coffee.UIExtensions.Editors
namespace Coffee.UIEffects.Editors
{
/// <summary>
/// UIEffect editor.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Editor/UIHsvModifierEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using UnityEngine;
using System.Linq;

namespace Coffee.UIExtensions.Editors
namespace Coffee.UIEffects.Editors
{
/// <summary>
/// UIEffect editor.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Editor/UIShadowEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using UnityEditorInternal;
using UnityEngine;

namespace Coffee.UIExtensions.Editors
namespace Coffee.UIEffects.Editors
{
/// <summary>
/// UIShadow editor.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Editor/UIShinyEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using UnityEngine;
using System.Linq;

namespace Coffee.UIExtensions.Editors
namespace Coffee.UIEffects.Editors
{
/// <summary>
/// UIEffect editor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using UnityEngine;
using System.Linq;

namespace Coffee.UIExtensions.Editors
namespace Coffee.UIEffects.Editors
{
/// <summary>
/// UIEffect editor.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Enums/BlurMode.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Blur effect mode.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Enums/ColorMode.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Color effect mode.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Enums/EffectArea.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using UnityEngine;
using UnityEngine.UI;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Area for effect.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Enums/EffectMode.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Effect mode.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/Enums/ShadowStyle.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Shadow effect style.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UIDissolve.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Linq;
using System.IO;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Dissolve effect for uGUI.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UIEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#endif

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// UIEffect.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UIFlip.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using UnityEngine;
using UnityEngine.UI;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
[DisallowMultipleComponent]
[AddComponentMenu("UI/UIEffects/UIFlip", 102)]
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UIGradient.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using UnityEngine;
using UnityEngine.UI;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// UIGradient.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UIHsvModifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using UnityEngine.UI;


namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// HSV Modifier.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UIShadow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#endif

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// UIEffect.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UIShiny.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using UnityEngine.UI;
using System.Collections;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// UIEffect.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UISyncEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using UnityEngine.UI;


namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Dissolve effect for uGUI.
Expand Down
2 changes: 1 addition & 1 deletion Packages/UIEffect/Scripts/UITransitionEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using UnityEngine.Serialization;
using System;

namespace Coffee.UIExtensions
namespace Coffee.UIEffects
{
/// <summary>
/// Transition effect.
Expand Down

0 comments on commit 7f4190c

Please sign in to comment.