Nanook.QueenBee.Parser.PakEditor.ReadQbFile C# (CSharp) Method

ReadQbFile() public method

public ReadQbFile ( string qbFilename ) : QbFile
qbFilename string
return QbFile
        public QbFile ReadQbFile(string qbFilename)
        {
            return ReadQbFile(qbFilename, "");
        }

Same methods

PakEditor::ReadQbFile ( string qbFilename, string debugFileContents ) : QbFile

Usage Example

Beispiel #1
0
        public void RemoveIntroVids(PakEditor qbPak)
        {
            string bootupQb = @"scripts\guitar\menu\bootup_menu_flow.qb.ngc";
            if (_project.GameInfo.Game == Game.GH3_Wii)
                bootupQb = bootupQb.Substring(1);  //remove first char

            QbFile qb = qbPak.ReadQbFile(bootupQb);

            this.RemoveIntroVids(qb);

            qbPak.ReplaceFile(bootupQb, qb);
        }
All Usage Examples Of Nanook.QueenBee.Parser.PakEditor::ReadQbFile