Compare commits

..

No commits in common. "6153e73492ee9e03e09617d966267a348914b49f" and "3638d55fe008004cd5b8dee6b0b8137b95b6709a" have entirely different histories.

6 changed files with 4 additions and 15 deletions

View file

@ -1,11 +0,0 @@
#ifndef ENEMY_RIFLEMAN_H
#define ENEMY_RIFLEMAN_H
#include "wave_survival/enemy_body.h"
class EnemyRifleman : public EnemyBody {
GDCLASS(EnemyRifleman, EnemyBody);
static void _bind_methods();
};
#endif // !ENEMY_RIFLEMAN_H

View file

@ -31,10 +31,10 @@ public:
private: private:
bool try_running{ false }; bool try_running{ false };
float walk_speed{ 4.f }; float walk_speed{ 6.f };
float run_speed{ 6.f }; float run_speed{ 8.f };
float acceleration{ 40.f }; float acceleration{ 40.f };
float jump_strength{ 3.75f }; float jump_strength{ 4.f };
Vector2 movement_input{ 0, 0 }; Vector2 movement_input{ 0, 0 };
float fov{ 1.f }; float fov{ 1.f };

View file

@ -20,6 +20,7 @@ func _on_health_status_death() -> void:
radius = 0.26953125 radius = 0.26953125
[node name="EnemyWretched" type="EnemyWretched"] [node name="EnemyWretched" type="EnemyWretched"]
chase_speed = 7.0
script = SubResource("GDScript_qot2n") script = SubResource("GDScript_qot2n")
[node name="wretched" parent="." instance=ExtResource("1_qot2n")] [node name="wretched" parent="." instance=ExtResource("1_qot2n")]

View file

@ -3,7 +3,6 @@
[ext_resource type="PackedScene" uid="uid://dqlqgk1veyos8" path="res://objects/enemies/enemy_wretched.tscn" id="1_l77gx"] [ext_resource type="PackedScene" uid="uid://dqlqgk1veyos8" path="res://objects/enemies/enemy_wretched.tscn" id="1_l77gx"]
[node name="NpcUnit" type="NpcUnit"] [node name="NpcUnit" type="NpcUnit"]
patrol_speed = 3.0
[node name="EnemyWretched" parent="." instance=ExtResource("1_l77gx")] [node name="EnemyWretched" parent="." instance=ExtResource("1_l77gx")]
transform = Transform3D(-1, 0, -8.742278e-08, 0, 1, 0, 8.742278e-08, 0, -1, -1.1853347, 0.023195954, -0.8597343) transform = Transform3D(-1, 0, -8.742278e-08, 0, 1, 0, 8.742278e-08, 0, -1, -1.1853347, 0.023195954, -0.8597343)