-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCharacter.cs
72 lines (62 loc) · 1.82 KB
/
Character.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using Godot;
using System;
public class Character : KinematicBody2D
{
[Export] public int jumpValue = -300;
[Export] public int gravityValue = 13;
[Export] public int maxSpeed = 125;
[Export] public int acceleration = 25;
public Vector2 motion = new Vector2();
private Vector2 UP = new Vector2(0, -1);
private bool jumped = false;
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
}
public void GetInput()
{
AnimatedSprite node = (AnimatedSprite)GetNode("Animation");
motion.y += gravityValue;
if (Input.IsActionPressed("left"))
{
motion.x -= acceleration;
motion.x = Math.Max(-maxSpeed, motion.x);
node.FlipH = true;
node.Play("RunRight");
}
else if (Input.IsActionPressed("right"))
{
motion.x += acceleration;
motion.x = Math.Min(maxSpeed, motion.x);
node.FlipH = false;
node.Play("RunRight");
}
else
{
//lerp firstFloat + (secondFloat - firstFloat) * by
motion.x = motion.x + (0f - motion.x) * 0.3f;
node.Play("Idle");
}
if (IsOnFloor())
{
//System.Console.WriteLine("landed");
//jumped = false;
if (Input.IsActionJustPressed("jump"))
{
// System.Console.WriteLine("jumped");
//jumped = true;
motion.y = jumpValue;
}
}
// else if (jumped)
// {
// System.Console.WriteLine("air");
// node.Play("Jump");
// }
}
public override void _PhysicsProcess(float delta)
{
GetInput();
motion = MoveAndSlide(motion, UP, true);
}
}