2024-01-28 15:44:33 +03:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2024-01-30 12:43:30 +03:00
|
|
|
|
2024-01-28 15:44:33 +03:00
|
|
|
using Syntriax.Engine.Core;
|
|
|
|
using Syntriax.Engine.Core.Abstract;
|
|
|
|
|
|
|
|
namespace Pong.Behaviours;
|
|
|
|
|
|
|
|
public class TextBehaviour : BehaviourOverride, IDisplayable
|
|
|
|
{
|
|
|
|
public SpriteFont? Font { get; set; } = null;
|
|
|
|
public int Size { get; set; } = 16;
|
|
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public void Draw(SpriteBatch spriteBatch)
|
|
|
|
{
|
|
|
|
if (!IsActive || Font is null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
spriteBatch.DrawString(Font, Text, Transform.Position.ToDisplayVector2(), Color.White, Transform.Rotation, Vector2.One * .5f, Transform.Scale.Magnitude, SpriteEffects.None, 0f);
|
|
|
|
}
|
|
|
|
}
|