blob: a147e064905b9a6e5155abf401b5d4d510979e7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "PlayerScript.h"
#include <crepe/api/Rigidbody.h>
using namespace crepe;
using namespace std;
void PlayerScript::update() {
Rigidbody & rb = this->get_components_by_name<Rigidbody>("player").front();
if (this->get_key_state(Keycode::SPACE)) rb.add_force_linear(vec2(0, -10));
}
|