Code/SbTween/Examples/Doo/SbeDooTest.cs

A small Sandbox component used as an example. It exposes a Doo tween reference as a property and calls RunDoo on it in OnStart to start the tween.

using Sandbox;
using SbTween;

namespace SbTween.Examples;

public sealed class SbeDooTest : Component
{
	[Property] public Doo DooTweening;

	protected override void OnStart()
	{
		RunDoo( DooTweening );
	}
}