Skip to content

Commit 6e21877

Browse files
committed
unused usings
1 parent 783a383 commit 6e21877

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

Assets/Scripts/ParallaxScript.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
using UnityEngine;
1+
using UnityEngine;
72

83
namespace KaizoTrap {
94
public class ParallaxScript : MonoBehaviour {

Assets/Scripts/Player.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System.Collections;
2-
using System.Collections.Generic;
3-
using UnityEngine;
1+
using UnityEngine;
42

53
namespace KaizoTrap {
64

Assets/Scripts/SmoothFollow.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
using UnityEngine;
2-
using System.Collections;
32

43
namespace KaizoTrap {
54

65
public class SmoothFollow : MonoBehaviour {
76
public Transform target;
87
public float smoothDampTime = 0.2f;
9-
[HideInInspector]
10-
public new Transform transform;
8+
[HideInInspector] public new Transform transform;
119
public Vector3 cameraOffset;
1210
public bool useFixedUpdate = false;
1311

0 commit comments

Comments
 (0)