using System; using AtomicEngine; public class Spinner : CSComponent { [Inspector] float speed = 1.0f; void Update(float timeStep) { Node.Roll(speed * timeStep * 75.0f); } }