13 lines
382 B
C#
13 lines
382 B
C#
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);
|
|
}
|
|
} |