Skip to content

Commit

Permalink
Merge pull request #142 from LimaInc/demo
Browse files Browse the repository at this point in the history
Temporary dirty fix to player jump delay
  • Loading branch information
JamesHinshelwood authored Mar 7, 2018
2 parents fb202bb + f0551e7 commit 48fed8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Scripts/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private set
private Plants plants;
private BacterialState bacteria;

public static readonly Vector3 INIT_REL_POS = new Vector3(0, 2, 0);
public static readonly Vector3 INIT_REL_POS = new Vector3(0, 20, 0);

private bool noGUIMode;

Expand Down Expand Up @@ -459,7 +459,7 @@ public void ProcessDead(float delta)
{
}

public override void _Process(float delta)
public override void _PhysicsProcess(float delta)
{
if (Dead)
{
Expand Down

0 comments on commit 48fed8b

Please sign in to comment.