ScrollingShooter.Blimp.ScrollWithMap C# (CSharp) Method

ScrollWithMap() public method

Scrolls the object with the map
public ScrollWithMap ( float elapsedTime ) : void
elapsedTime float The in-game time between the previous and current frame
return void
        public override void ScrollWithMap(float elapsedTime)
        {
            position.Y += ScrollingSpeed * elapsedTime;
        }