aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-11-16 10:40:10 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-11-16 10:40:10 -0700
commite7008ea5e51d657782d8facbf52e988bf3f9f7e1 (patch)
tree11bd00b6c8ff6e5a1b6c7cff38893ca250098ad4 /src
parent581ea4aaf1acefa663446faa32a480bbcc3e084c (diff)
Little changes to generale
Diffstat (limited to 'src')
-rw-r--r--src/entities/generale.c6
-rw-r--r--src/levels/level1.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/entities/generale.c b/src/entities/generale.c
index dff04be..11d916a 100644
--- a/src/entities/generale.c
+++ b/src/entities/generale.c
@@ -24,11 +24,11 @@ void initGenerale(Entity * entity, Game * game) {
Generale * data = (Generale*)entity->data;
data->flyToPoint = (EntityFlyToPointInfo){
- .controller.bangbang.speed = 100.0,
+ .controller.bangbang.speed = 80.0,
.controller.bangbang.stopAt = 0.0,
.controlType = ENTITY_FLY_TO_POINT_BANG_BANG,
- .rotationSpeed = 0.0,
- .applyRotation = false
+ .rotationSpeed = 100.0,
+ .applyRotation = true
};
data->zigzag = GENERALE_ZIG;
diff --git a/src/levels/level1.c b/src/levels/level1.c
index 2fb795a..ed81ecf 100644
--- a/src/levels/level1.c
+++ b/src/levels/level1.c
@@ -6,7 +6,7 @@
void initLevel1(Game * game, Levels * levels) {
WorldEntry entries[2] = {
(WorldEntry){ENTITY_ANTIFA, (Vector3){0.0, 0.0, 0.0}, QuaternionIdentity()},
- (WorldEntry){ENTITY_MARESCIALLO, (Vector3){0.0, 10.0, 50.0}, QuaternionIdentity()}
+ (WorldEntry){ENTITY_GENERALE, (Vector3){0.0, 10.0, 200.0}, QuaternionIdentity()}
};
addEntriesToWorld(