Skip to content

Commit 89084cd

Browse files
Fix line endings
1 parent 60edbee commit 89084cd

3 files changed

Lines changed: 25 additions & 25 deletions

File tree

Menus/MainMenu/MainMenuInput.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
using UnityEngine;
2-
using UnityEngine.InputNew;
3-
4-
// GENERATED FILE - DO NOT EDIT MANUALLY
5-
namespace UnityEngine.InputNew
6-
{
7-
public class MainMenuInput : ActionMapInput {
8-
public MainMenuInput (ActionMap actionMap) : base (actionMap) { }
9-
10-
public AxisInputControl @rotate { get { return (AxisInputControl)this[0]; } }
11-
public ButtonInputControl @flickFace { get { return (ButtonInputControl)this[1]; } }
12-
}
1+
using UnityEngine;
2+
using UnityEngine.InputNew;
3+
4+
// GENERATED FILE - DO NOT EDIT MANUALLY
5+
namespace UnityEngine.InputNew
6+
{
7+
public class MainMenuInput : ActionMapInput {
8+
public MainMenuInput (ActionMap actionMap) : base (actionMap) { }
9+
10+
public AxisInputControl @rotate { get { return (AxisInputControl)this[0]; } }
11+
public ButtonInputControl @flickFace { get { return (ButtonInputControl)this[1]; } }
12+
}
1313
}

Menus/UndoMenu/UndoMenuInput.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
using UnityEngine;
2-
using UnityEngine.InputNew;
3-
4-
// GENERATED FILE - DO NOT EDIT MANUALLY
5-
namespace UnityEngine.InputNew
6-
{
7-
public class UndoMenuInput : ActionMapInput {
8-
public UndoMenuInput (ActionMap actionMap) : base (actionMap) { }
9-
10-
public AxisInputControl @navigateX { get { return (AxisInputControl)this[0]; } }
11-
public ButtonInputControl @engage { get { return (ButtonInputControl)this[1]; } }
12-
}
1+
using UnityEngine;
2+
using UnityEngine.InputNew;
3+
4+
// GENERATED FILE - DO NOT EDIT MANUALLY
5+
namespace UnityEngine.InputNew
6+
{
7+
public class UndoMenuInput : ActionMapInput {
8+
public UndoMenuInput (ActionMap actionMap) : base (actionMap) { }
9+
10+
public AxisInputControl @navigateX { get { return (AxisInputControl)this[0]; } }
11+
public ButtonInputControl @engage { get { return (ButtonInputControl)this[1]; } }
12+
}
1313
}

Tools/TransformTool/TransformTool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ public void Resume(Node node)
601601
public Transform[] GetHeldObjects(Node node)
602602
{
603603
var grabData = GrabDataForNode(node);
604-
var heldObjects = grabData == null ? null : grabData.grabbedObjects;
604+
var heldObjects = grabData == null ? null : grabData.grabbedObjects;
605605
Debug.Log(node + ", " +heldObjects.Length);
606606
return heldObjects;
607607
}

0 commit comments

Comments
 (0)