blob: 86117d49e40eda33c86372c8be55a062d75e8e6e (
plain)
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
|
#include "NpcScript.h"
#include <crepe/api/Sprite.h>
#include <crepe/api/Transform.h>
#include <crepe/manager/SaveManager.h>
using namespace std;
using namespace crepe;
void NpcScript::fixed_update(duration_t dt) {
auto & rb = this->get_component<Rigidbody>();
auto npc = this->get_components<Sprite>();
auto & transform = this->get_component<Transform>();
if (transform.position.x < 200) {
rb.data.linear_velocity.x *= -1;
}
if (transform.position.x > 700) {
rb.data.linear_velocity.x *= -1;
}
if (rb.data.linear_velocity.x < 0) {
npc.front().get().data.flip = {true, false};
npc.back().get().data.flip = {true, false};
} else {
npc.front().get().data.flip = {false, false};
npc.back().get().data.flip = {false, false};
}
}
|