Terraria.Player.TryPortalJumping C# (CSharp) 메소드

TryPortalJumping() 공개 메소드

public TryPortalJumping ( ) : void
리턴 void
        public void TryPortalJumping()
        {
            if (this.mount.Active || this.dead)
                return;
            PortalHelper.TryGoingThroughPortals((Entity)this);
        }
Player