public sealed class SpinObject : Component
{
[Property] public float SpinSpeed { get; set; } = 90f; // Degrees per second
protected override void OnUpdate()
{
WorldRotation *= Rotation.FromAxis( Vector3.Up, SpinSpeed * Time.Delta );
}
}