Skip to content

Commit

Permalink
0.1j
Browse files Browse the repository at this point in the history
  • Loading branch information
Padme4000 committed Aug 11, 2023
1 parent 963a30c commit a87fe6d
Show file tree
Hide file tree
Showing 9 changed files with 201 additions and 111 deletions.
15 changes: 15 additions & 0 deletions BG3 Mini Tool/Form2.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions BG3 Mini Tool/Form2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,18 @@ private void button19_Click(object sender, EventArgs e)
MessageBox.Show("If you have located your CharacterCreationAppearanceVisuals.lsx then use this to add new slots to that file.");

}

private void textBoxNameHandle_Click(object sender, EventArgs e)
{
// Copy the text to the clipboard
Clipboard.SetText(textBoxNameHandle.Text);
}

private void button20_Click(object sender, EventArgs e)
{
// Display a pop-up message box with text
MessageBox.Show("The Hairs option here is only for non autosnapping hairs. For autosnapping hairs add your hair slots to Public\\Shared\\CharacterCreation\\CharacterCreationSharedVisuals.lsx and Public\\Shared\\Races\\Races.lsx");
}
}
}

1 change: 1 addition & 0 deletions BG3 Mini Tool/Form3.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions BG3 Mini Tool/Form3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -471,5 +471,11 @@ private void button14_Click_1(object sender, EventArgs e)
// Display a pop-up message box with text
MessageBox.Show("This file needs to remain as .lsx so once you have finished adding to it and saved your file, the file is finished and needs no further actions");
}

private void textBoxVersion_Click(object sender, EventArgs e)
{
// Copy the text to the clipboard
Clipboard.SetText(textBoxVersion.Text);
}
}
}
48 changes: 38 additions & 10 deletions BG3 Mini Tool/Form4.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a87fe6d

Please sign in to comment.