StretchyTanks.StretchyTanks.GetInfo C# (CSharp) Method

GetInfo() public method

public GetInfo ( ) : string
return string
        public override string GetInfo()
        {
            if (superStretch)
            {
                if (stretchSRB)
                    return "While mousing over the tank:\n* Hold '" + stretchKey + "' then move the mouse up or down to stretch its length." +
                    "\n* Hold '" + radialKey + "' then move the mouse side to side to stretch its width." +
                    "\n* Press 'g' to change its burn time." +
                    "\n* Press 't' to change its texture.";
                else
                    return "While mousing over the tank:\n* Hold '" + stretchKey + "' then move the mouse up or down to stretch its length." +
                    "\n* Hold '" + radialKey + "' then move the mouse side to side to stretch its width." +
                    "\n* Press 't' to change its texture." +
                    ((!part.Modules.Contains("ModuleFuelTanks")) ? "\n* Press 'g' to change its fuel type." : "\n* Go to Action Editor and select tank to edit fuels.");
            }
            else
            {
                return "While mousing over the tank:\n* Hold '" + stretchKey + "' then move the mouse up or down to stretch its length." +
                    "\n* Press 'g' to change its fuel type." +
                    "\n* Press 't' to change its texture.";
            }
        }