Compare commits

...

2 Commits

Author SHA1 Message Date
haitem 36360d9dba Merge branch 'master' of https://git.steelants.cz/GJP/GlobalGameJam-2021 2021-01-30 16:40:51 +01:00
haitem 9b7cd8f04d Add dash in player powers 2021-01-30 16:40:42 +01:00
2 changed files with 49 additions and 1 deletions

View File

@ -318,6 +318,11 @@ PrefabInstance:
propertyPath: m_Name
value: Player
objectReference: {fileID: 0}
- target: {fileID: 7094923891560833916, guid: e4d82994b58b7304b91c915c597b71f8,
type: 3}
propertyPath: dashTime
value: 0.2
objectReference: {fileID: 0}
- target: {fileID: 7094923891560833916, guid: e4d82994b58b7304b91c915c597b71f8,
type: 3}
propertyPath: activeAbility.Array.size
@ -326,7 +331,7 @@ PrefabInstance:
- target: {fileID: 7094923891560833916, guid: e4d82994b58b7304b91c915c597b71f8,
type: 3}
propertyPath: activeAbility.Array.data[0]
value: 3
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7094923891560833917, guid: e4d82994b58b7304b91c915c597b71f8,
type: 3}

View File

@ -20,6 +20,10 @@ public class PlayerManager : MonoBehaviour
public List<int> activeAbility = new List<int>(); //without ability=0 or null, dubleJump = 1, push/pull = 2, dash = 3
private bool dubleJump = true;
private GameObject pushPullObject;
public float dashPower = 40f;
public float dashTime = 0.2f;
private float actualDashTime;
private int dashButton;
private bool startEating = false;
@ -86,6 +90,45 @@ public class PlayerManager : MonoBehaviour
);
}
}
else if (activeAbility.Count > 0 && activeAbility[0] == 3)
{
if (Input.GetKeyUp(KeyCode.D) || Input.GetKeyUp(KeyCode.A)) {
if (actualDashTime < Time.time)
{
if (Input.GetKeyUp(KeyCode.D))
{
dashButton = 1;
}
else if (Input.GetKeyUp(KeyCode.A))
{
dashButton = 2;
}
actualDashTime = Time.time + dashTime;
}
else
{
if (dashButton == 1 && Input.GetKeyUp(KeyCode.D)) {
rigidBody.AddForce(
(transform.right * dashPower * 10 * 5 * 1 * Time.deltaTime) +
(transform.up * 1 * 10 * Time.deltaTime),
ForceMode.VelocityChange
);
dashButton = 0;
actualDashTime = Time.time - 1f;
}
else if (dashButton == 2 && Input.GetKeyUp(KeyCode.A))
{
rigidBody.AddForce(
(transform.right * dashPower * 10 * 5 * -1 * Time.deltaTime) +
(transform.up * 1 * 10 * Time.deltaTime),
ForceMode.VelocityChange
);
dashButton = 0;
actualDashTime = Time.time - 1f;
}
}
}
}
}
public GameObject GetPushPullObject()