Skip to content

Commit 01d8657

Browse files
committed
fix: Address PR comments.
1 parent 8aad326 commit 01d8657

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateLifterInspector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public override void OnInspectorGUI()
3535
{
3636
serializedObject.Update();
3737

38-
EditorGUILayout.PropertyField(_angleProperty, new GUIContent("Lifting Angle"));
38+
EditorGUILayout.PropertyField(_angleProperty, new GUIContent("Lifted Angle"));
3939
EditorGUILayout.PropertyField(_speedProperty);
4040

4141
serializedObject.ApplyModifiedProperties();

VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelComponent.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ public class ScoreReelComponent : MonoBehaviour
2525
{
2626
public enum ScoreReelDirection
2727
{
28-
up, down
28+
Up, Down
2929
}
3030

3131
[Tooltip("In which direction the reel rotates, when looking from the front.")]
32-
public ScoreReelDirection Direction = ScoreReelDirection.down;
32+
public ScoreReelDirection Direction = ScoreReelDirection.Down;
3333

3434
[HideInInspector]
3535
public float Speed = 1;
@@ -43,7 +43,7 @@ public enum ScoreReelDirection
4343

4444
private float _currentRotation;
4545

46-
private bool _isRotatingDown => Direction == ScoreReelDirection.down;
46+
private bool _isRotatingDown => Direction == ScoreReelDirection.Down;
4747

4848
public void AnimateTo(int position)
4949
{

0 commit comments

Comments
 (0)