using Babushka.scripts.CSharp.Common.Animation; using Godot; namespace Babushka.scripts.CSharp.Common.Items; public partial class NonInventoryPickup : Node2D { public void PlayPickupAnimation() { // todo: replace with EventBus implementation as soon as this is possible GetTree().CallGroup("Pickup", VesnaAnimations.MethodName.PlayPickUpAnimation); } }