mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:45:33 +00:00
14 lines
No EOL
268 B
C#
14 lines
No EOL
268 B
C#
using Cirno.Scripts.Weapons;
|
|
using Godot;
|
|
|
|
namespace Cirno.Scripts.Resources.Modifiers;
|
|
|
|
[GlobalClass]
|
|
[Tool]
|
|
public partial class DelayedPlayerFacingModifier : TimeModifier
|
|
{
|
|
public override void Start(IBullet bullet)
|
|
{
|
|
bullet.FacePlayer();
|
|
}
|
|
} |