Commit c7fe059b by Philipp Adolf

Hide internal fields used for dashing

parent 5f119b2e
......@@ -13,7 +13,9 @@ public class PlayerControl : MonoBehaviour
public float inAirDamping = 5f;
public float targetJumpHeight = 2f;
public float lastDashStart = float.NegativeInfinity;
[HideInInspector]
public float currentDashDirection = 0.0f;
[HideInInspector]
public float dashDirection = 1.0f;
public float dashCompletionTime = 0.25f;
public float dashStartSpeed = 20.0f;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment