Skip to content

Commit e52596d

Browse files
committed
Namespace update
1 parent e488e23 commit e52596d

File tree

25 files changed

+32
-32
lines changed

25 files changed

+32
-32
lines changed

Assets/AdncAnimatorHelpers/Editor/Scripts/CustomEditors/AnimatorPlayback/AnimatorPlaybackEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using UnityEditor;
44
using UnityEngine;
55

6-
namespace Adnc.AnimatorVariables.Editors.CustomEditors {
6+
namespace Adnc.AnimatorHelpers.Editors.CustomEditors {
77
[CustomEditor(typeof(AnimatorPlayback))]
88
public class AnimatorPlaybackEditor : Editor {
99
private SortableListAnimatorVariable _listBools;

Assets/AdncAnimatorHelpers/Editor/Scripts/CustomEditors/AnimatorPlayback/SortableListAnimatorVariable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using UnityEditor;
55
using UnityEngine;
66

7-
namespace Adnc.AnimatorVariables.Editors.CustomEditors {
7+
namespace Adnc.AnimatorHelpers.Editors.CustomEditors {
88
public class SortableListAnimatorVariable : SortableListBase {
99
public SortableListAnimatorVariable (Editor editor, string property, string title) : base(editor, property, title) {
1010
_list.drawElementCallback = (rect, index, active, focused) => {

Assets/AdncAnimatorHelpers/Editor/Testing/AnimatorPlayback/TestAnimatorPlayback.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using Adnc.AnimatorVariables.Conditions;
2-
using Adnc.AnimatorVariables.Variables;
1+
using Adnc.AnimatorHelpers.Conditions;
2+
using Adnc.AnimatorHelpers.Variables;
33
using Adnc.Utility.Testing;
44
using NUnit.Framework;
55
using UnityEngine;
66
using Object = UnityEngine.Object;
77

8-
namespace Adnc.AnimatorVariables.Editors.Testing {
8+
namespace Adnc.AnimatorHelpers.Editors.Testing {
99
public class TestAnimatorPlayback : TestBase {
1010
private const string ANIMATOR_STUB_LOC = "AnimatorTesting/AnimatorStub";
1111

Assets/AdncAnimatorHelpers/Examples/Default/AnimatorPlaybackExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using UnityEngine;
44

5-
namespace Adnc.AnimatorVariables.Examples {
5+
namespace Adnc.AnimatorHelpers.Examples {
66
public class AnimatorPlaybackExample : MonoBehaviour {
77
[SerializeField]
88
private AnimatorPlayback _completeEvent;

Assets/AdncAnimatorHelpers/Scripts/AnimatorBehaviors/AnimatorActionBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Adnc.Utility;
44
using UnityEngine;
55

6-
namespace Adnc.AnimatorVariables.AnimatorBehaviors {
6+
namespace Adnc.AnimatorHelpers.AnimatorBehaviors {
77
/// <summary>
88
/// Basic underlying logic for triggering an action
99
/// </summary>

Assets/AdncAnimatorHelpers/Scripts/AnimatorBehaviors/RandomSpeed.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Adnc.Utility;
22
using UnityEngine;
33

4-
namespace Adnc.AnimatorVariables.AnimatorBehaviors {
4+
namespace Adnc.AnimatorHelpers.AnimatorBehaviors {
55
public class RandomSpeed : StateMachineBehaviour {
66
private float startSpeed;
77

Assets/AdncAnimatorHelpers/Scripts/AnimatorBehaviors/RandomStartTime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Adnc.Utility;
22
using UnityEngine;
33

4-
namespace Adnc.AnimatorVariables.AnimatorBehaviors {
4+
namespace Adnc.AnimatorHelpers.AnimatorBehaviors {
55
/// <summary>
66
/// Randomize the current playback position of this state's animation
77
/// </summary>

Assets/AdncAnimatorHelpers/Scripts/AnimatorBehaviors/SetVar/Random/SetVarRandomBool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Adnc.Utility;
22
using UnityEngine;
33

4-
namespace Adnc.AnimatorVariables.AnimatorBehaviors {
4+
namespace Adnc.AnimatorHelpers.AnimatorBehaviors {
55
public class SetVarRandomBool : SetVarBase {
66
protected override void UpdateLogic (Animator animator, AnimatorStateInfo stateInfo, int layerIndex) {
77
animator.SetBool(_name, Random.value > 0.5f);

Assets/AdncAnimatorHelpers/Scripts/AnimatorBehaviors/SetVar/Random/SetVarRandomFloat.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Adnc.Utility;
22
using UnityEngine;
33

4-
namespace Adnc.AnimatorVariables.AnimatorBehaviors {
4+
namespace Adnc.AnimatorHelpers.AnimatorBehaviors {
55
public class SetVarRandomFloat : SetVarBase {
66
[Tooltip("Random value generated each time this state triggers")]
77
[SerializeField]

Assets/AdncAnimatorHelpers/Scripts/AnimatorBehaviors/SetVar/Random/SetVarRandomInt.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Adnc.Utility;
22
using UnityEngine;
33

4-
namespace Adnc.AnimatorVariables.AnimatorBehaviors {
4+
namespace Adnc.AnimatorHelpers.AnimatorBehaviors {
55
public class SetVarRandomInt : SetVarBase {
66
[Tooltip("Random value generated each time this state triggers")]
77
[SerializeField]

0 commit comments

Comments
 (0)