ScrollingShooter.Blimp.ScrollWithMap C# (CSharp) 메소드

ScrollWithMap() 공개 메소드

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