using Godot; using System; using Godot.Collections; public partial class NPC : Node2D { [Export] public string NPCName; [Export] public SpriteFrames Frames; [Export] public Array DialogLines = new Array(); private AnimatedSprite2D _sprite; public override void _Ready() { _sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); _sprite.SpriteFrames = Frames; _sprite.Play("default"); } public override void _Process(double delta) { } public void test() { if (_sprite.Animation == "walk") { _sprite.Play("default"); } else { _sprite.Play("walk"); } } private void _on_interactable_player_near_by(Player player) { player.InteractableObjects.Add(this); } private void _on_interactable_player_left(Player player) { player.InteractableObjects.Remove(this); } }