KFreonLib.Scripting.ModMaker.ModJob.DetectJobType C# (CSharp) Method

DetectJobType() public method

Decides what current job is. If a texture job, returns TEXTURE, else OTHER. For now anyway, likely add mesh detection later.
public DetectJobType ( ) : string
return string
            public string DetectJobType()
            {
                string retval;
                if (Script.Contains("Texplorer"))
                    retval = "TEXTURE";
                else
                    retval = "OTHER";
                return retval;
            }