From 619ed0c88ebb9913ea40f22990ba3e87cdccef0a Mon Sep 17 00:00:00 2001 From: Evgenij Titarenko Date: Sat, 19 Aug 2023 12:24:17 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=BE=D1=81=D0=BA=D1=80=D0=B5=D1=88?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=BE=D1=81=D0=BF=D0=B5=D1=85?= =?UTF-8?q?=D0=BE=D0=B2=20=D0=BF=D1=80=D0=B8=20=D0=B8=D1=85=20=D1=81=D0=BC?= =?UTF-8?q?=D0=B5=D1=80=D1=82=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scenes/main_scene.tscn | 4 ++-- scripts/enemies/LivingArmor.cs | 11 ++++------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/scenes/main_scene.tscn b/scenes/main_scene.tscn index f2faf59..4cf6bc6 100644 --- a/scenes/main_scene.tscn +++ b/scenes/main_scene.tscn @@ -27,7 +27,7 @@ light_mode = 2 [sub_resource type="ShaderMaterial" id="ShaderMaterial_m680d"] shader = ExtResource("5_64d71") -[sub_resource type="ViewportTexture" id="ViewportTexture_1dtfl"] +[sub_resource type="ViewportTexture" id="ViewportTexture_pym12"] viewport_path = NodePath("FlashlightViewport") [sub_resource type="CircleShape2D" id="CircleShape2D_prnh4"] @@ -123,7 +123,7 @@ CameraBounds = Vector2(30, 20) [node name="PointLight2D" type="PointLight2D" parent="PlayerCamera" node_paths=PackedStringArray("LightViewport")] blend_mode = 2 range_item_cull_mask = 2 -texture = SubResource("ViewportTexture_1dtfl") +texture = SubResource("ViewportTexture_pym12") script = ExtResource("6_slohe") LightViewport = NodePath("../../FlashlightViewport") diff --git a/scripts/enemies/LivingArmor.cs b/scripts/enemies/LivingArmor.cs index 1e2e1c2..b6977d2 100644 --- a/scripts/enemies/LivingArmor.cs +++ b/scripts/enemies/LivingArmor.cs @@ -23,7 +23,6 @@ public partial class LivingArmor : CharacterBody2D [Export] public SideFace Facing = SideFace.Down; [Export] public float MovingSpeed = 16f; - [Export] public bool IsAlive = true; public State CurrentState { @@ -54,10 +53,12 @@ public partial class LivingArmor : CharacterBody2D private readonly List _bodiesInSight = new List(); private readonly List _bodiesNearBy = new List(); private Node2D _target = null; + private Vector2 _respawnPosition; public override void _Ready() { _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); + _respawnPosition = Position; CurrentState = State.Waiting; var animationName = "side_walk"; switch (Facing) @@ -85,8 +86,6 @@ public partial class LivingArmor : CharacterBody2D public override void _PhysicsProcess(double delta) { - if (!IsAlive) - return; _timeSinceState += (float)delta; switch (_state) @@ -248,12 +247,10 @@ public partial class LivingArmor : CharacterBody2D public void Kill(Node2D killer) { - if (!IsAlive) - return; GD.Print($"{this.Name} was killed by {killer.Name}"); - IsAlive = false; EmitSignal(SignalName.Killed); - QueueFree(); // TODO + Position = _respawnPosition; + // QueueFree(); // TODO } }