diff --git a/ConceptMatrix/ConceptMatrix.csproj b/ConceptMatrix/ConceptMatrix.csproj
index 2874631..95095e1 100644
--- a/ConceptMatrix/ConceptMatrix.csproj
+++ b/ConceptMatrix/ConceptMatrix.csproj
@@ -122,6 +122,11 @@
TrueResources.resx
+
+ True
+ True
+ UIStringsContent.resx
+
@@ -182,6 +187,9 @@
GearsetChooseWindow.xaml
+
+ LanguageSelect.xaml
+ LoadWindow.xaml
@@ -263,6 +271,10 @@
DesignerMSBuild:Compile
+
+ Designer
+ MSBuild:Compile
+ DesignerMSBuild:Compile
@@ -290,6 +302,11 @@
Resources.Designer.csDesigner
+
+
+ PublicResXFileCodeGenerator
+ UIStringsContent.Designer.cs
+ SettingsSingleFileGenerator
diff --git a/ConceptMatrix/MainWindow.xaml b/ConceptMatrix/MainWindow.xaml
index bac18fe..6734ad5 100644
--- a/ConceptMatrix/MainWindow.xaml
+++ b/ConceptMatrix/MainWindow.xaml
@@ -14,32 +14,33 @@
xmlns:controls="http://metro.mahapps.com/winfx/xaml/controls"
xmlns:Views="clr-namespace:ConceptMatrix.Views"
mc:Ignorable="d"
+ xmlns:resx="clr-namespace:ConceptMatrix.Resx"
Height="650" Width="1115" Loaded="MetroWindow_Loaded" Icon="cmtool-icon.ico" ResizeMode="CanMinimize">
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
diff --git a/ConceptMatrix/MainWindow.xaml.cs b/ConceptMatrix/MainWindow.xaml.cs
index 79a558b..f7ffc14 100644
--- a/ConceptMatrix/MainWindow.xaml.cs
+++ b/ConceptMatrix/MainWindow.xaml.cs
@@ -20,6 +20,7 @@
using ConceptMatrix.Views;
using WepTuple = System.Tuple;
using SaintCoinach;
+using System.Globalization;
namespace ConceptMatrix
{
@@ -39,6 +40,19 @@ public partial class MainWindow : MetroWindow
readonly Version version = Assembly.GetExecutingAssembly().GetName().Version;
public MainWindow()
{
+ var settings = SaveSettings.Default;
+
+ LanguageSelection();
+
+ var ci = new CultureInfo(settings.CultureSet)
+ {
+ NumberFormat = { NumberDecimalSeparator = "." }
+ };
+ CultureInfo.DefaultThreadCurrentCulture = ci;
+ CultureInfo.DefaultThreadCurrentUICulture = ci;
+ CultureInfo.CurrentCulture = ci;
+ CultureInfo.CurrentUICulture = ci;
+
ServicePointManager.SecurityProtocol = (ServicePointManager.SecurityProtocol & SecurityProtocolType.Ssl3) | (SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12);
// Call the update method.
@@ -140,20 +154,34 @@ public static ImageSource IconToImageSource(System.Drawing.Icon icon)
new Int32Rect(0, 0, icon.Width, icon.Height),
BitmapSizeOptions.FromEmptyOptions());
}
+ private void LanguageSelection()
+ {
+ var lang = SaveSettings.Default.CultureSet;
+
+ if (lang.Equals(string.Empty))
+ {
+ var langSelectView = new LanguageSelect();
+ langSelectView.ShowDialog();
+
+ var langCode = langSelectView.LanguageCode;
+
+ SaveSettings.Default.CultureSet = langCode;
+ }
+ }
private void MetroWindow_Loaded(object sender, RoutedEventArgs e)
{
+
Title = $"{App.ToolName} v{version}";
DataContext = new MainViewModel();
- var settings = SaveSettings.Default;
- var accentColor = settings.Accent;
+ var accentColor = SaveSettings.Default.Accent;
new PaletteHelper().ReplaceAccentColor(accentColor);
- var primaryColor = settings.Primary;
+ var primaryColor = SaveSettings.Default.Primary;
new PaletteHelper().ReplacePrimaryColor(primaryColor);
- var theme = settings.Theme;
+ var theme = SaveSettings.Default.Theme;
new PaletteHelper().SetLightDark(theme != "Light");
- this.Topmost = settings.TopApp;
+ this.Topmost = SaveSettings.Default.TopApp;
// toggle status
- (DataContext as MainViewModel).ToggleStatus(settings.TopApp);
+ (DataContext as MainViewModel).ToggleStatus(SaveSettings.Default.TopApp);
// CharacterDetailsView._exdProvider.MakeCharaMakeFeatureList();
// CharacterDetailsView._exdProvider.MakeCharaMakeFeatureFacialList();
// CharacterDetailsView._exdProvider.MakeTerritoryTypeList();
@@ -1050,6 +1078,11 @@ private void GposeButton_Checked(object sender, RoutedEventArgs e)
CharacterDetailsViewModel.baseAddr = MemoryManager.Instance.GposeAddress;
if (TargetButton.IsEnabled == false)
CharacterDetailsViewModel.baseAddr = MemoryManager.Instance.GposeEntityOffset;
+
+ if (MemoryManager.Instance.MemLib.readByte(MemoryManager.GetAddressString(MemoryManager.Instance.GposeCheckAddress)) == 1)
+ {
+ MainViewModel.ViewTime5.EditModeButton.IsEnabled = true;
+ }
}
private void GposeButton_Unchecked(object sender, RoutedEventArgs e)
@@ -1097,28 +1130,42 @@ private void GposeButton_Unchecked(object sender, RoutedEventArgs e)
if (GposeButton.IsKeyboardFocusWithin || GposeButton.IsMouseOver)
CharacterDetailsViewModel.baseAddr = MemoryManager.Add(MemoryManager.Instance.BaseAddress, CharacterDetailsViewModel.eOffset);
+
+ if (MemoryManager.Instance.MemLib.readByte(MemoryManager.GetAddressString(MemoryManager.Instance.GposeCheckAddress)) == 0)
+ {
+ MainViewModel.ViewTime5.EditModeButton.IsChecked = false;
+ MainViewModel.ViewTime5.EditModeButton.IsEnabled = false;
+ }
}
private void TargetButton_Checked(object sender, RoutedEventArgs e)
{
- if (GposeButton.IsEnabled == false)
+ if (GposeButton.IsChecked == false)
+ {
CharacterRefreshButton.IsEnabled = true;
CharacterDetailsViewModel.baseAddr = MemoryManager.Instance.TargetAddress;
- if (GposeButton.IsEnabled == true)
+ }
+ if (GposeButton.IsChecked == true)
+ {
CharacterRefreshButton.IsEnabled = false;
CharacterDetailsViewModel.baseAddr = MemoryManager.Instance.GposeAddress;
+ }
}
private void TargetButton_Unchecked(object sender, RoutedEventArgs e)
{
if (TargetButton.IsKeyboardFocusWithin || TargetButton.IsMouseOver)
{
- if (GposeButton.IsEnabled == false)
+ if (GposeButton.IsChecked == false)
+ {
CharacterRefreshButton.IsEnabled = true;
CharacterDetailsViewModel.baseAddr = MemoryManager.Add(MemoryManager.Instance.BaseAddress, CharacterDetailsViewModel.eOffset);
- if (GposeButton.IsEnabled == true)
+ }
+ if (GposeButton.IsChecked == true)
+ {
CharacterRefreshButton.IsEnabled = false;
CharacterDetailsViewModel.baseAddr = MemoryManager.Instance.GposeEntityOffset;
+ }
}
}
@@ -1247,5 +1294,18 @@ private void LoadSavePoint_Click(object sender, RoutedEventArgs e)
CharacterDetails.OffhandDye.value = (byte)SaveSettings.Default.OffHandQuads.Item4;
MemoryManager.Instance.MemLib.writeBytes(MemoryManager.GetAddressString(CharacterDetailsViewModel.baseAddr, Settings.Instance.Character.Offhand), EquipmentFlyOut.WepTupleToByteAry(SaveSettings.Default.OffHandQuads));
}
+
+ private void LangButton_Click(object sender, RoutedEventArgs e)
+ {
+ var langSelectView = new LanguageSelect();
+ langSelectView.Owner = Application.Current.MainWindow;
+ langSelectView.ShowDialog();
+
+ var langCode = langSelectView.LanguageCode;
+ if (langCode == null ||langCode.Length<0) return;
+ SaveSettings.Default.CultureSet = langCode;
+ System.Windows.Forms.Application.Restart();
+ Application.Current.Shutdown();
+ }
}
}
diff --git a/ConceptMatrix/OffsetSettings.xml b/ConceptMatrix/OffsetSettings.xml
index 44449af..51d6025 100644
--- a/ConceptMatrix/OffsetSettings.xml
+++ b/ConceptMatrix/OffsetSettings.xml
@@ -1,6 +1,6 @@
- 5.1
+ 5.1x11C007A01C009881C02AD8
@@ -23,7 +23,7 @@
17FA18D218F4
- 18C4
+ 18D850
diff --git a/ConceptMatrix/Resx/UIStringsContent.Designer.cs b/ConceptMatrix/Resx/UIStringsContent.Designer.cs
new file mode 100644
index 0000000..068f162
--- /dev/null
+++ b/ConceptMatrix/Resx/UIStringsContent.Designer.cs
@@ -0,0 +1,3372 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace ConceptMatrix.Resx {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ public class UIStringsContent {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal UIStringsContent() {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ public static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ConceptMatrix.Resx.UIStringsContent", typeof(UIStringsContent).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ public static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to About.
+ ///
+ public static string About {
+ get {
+ return ResourceManager.GetString("About", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Actor Data.
+ ///
+ public static string ActorData {
+ get {
+ return ResourceManager.GetString("ActorData", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Displays the list of targetable entities in the area around you.
+ ///• This list is populated based on distance from the player, and can potentially shift if any entities change positions, including minions..
+ ///
+ public static string ActorEntityListToolTip {
+ get {
+ return ResourceManager.GetString("ActorEntityListToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Actor Properties.
+ ///
+ public static string ActorProperties {
+ get {
+ return ResourceManager.GetString("ActorProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Actor Refresh.
+ ///
+ public static string ActorRefreshButton {
+ get {
+ return ResourceManager.GetString("ActorRefreshButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Refresh the selected actor, reloading it based on the changes you've made..
+ ///
+ public static string ActorRefreshToolTip {
+ get {
+ return ResourceManager.GetString("ActorRefreshToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Actor Scale.
+ ///
+ public static string ActorScale {
+ get {
+ return ResourceManager.GetString("ActorScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Advanced.
+ ///
+ public static string Advanced {
+ get {
+ return ResourceManager.GetString("Advanced", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Always On Top.
+ ///
+ public static string AlwaysOnTopButton {
+ get {
+ return ResourceManager.GetString("AlwaysOnTopButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Anim Speed:.
+ ///
+ public static string AnimSpeed {
+ get {
+ return ResourceManager.GetString("AnimSpeed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Animation Speed of the selected actor..
+ ///
+ public static string AnimSpeedToolTip {
+ get {
+ return ResourceManager.GetString("AnimSpeedToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apply.
+ ///
+ public static string Apply {
+ get {
+ return ResourceManager.GetString("Apply", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Arms:.
+ ///
+ public static string Arms {
+ get {
+ return ResourceManager.GetString("Arms", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Array of Bytes.
+ ///
+ public static string ArrayOfBytes {
+ get {
+ return ResourceManager.GetString("ArrayOfBytes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Contains data about the selected Entity.
+ ///• You can copy-paste data into this field and hit Apply..
+ ///
+ public static string ArrayOfBytesToolTip {
+ get {
+ return ResourceManager.GetString("ArrayOfBytesToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to B.
+ ///
+ public static string B {
+ get {
+ return ResourceManager.GetString("B", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Base.
+ ///
+ public static string Base {
+ get {
+ return ResourceManager.GetString("Base", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Freeze BGM.
+ ///
+ public static string BGMFreeze {
+ get {
+ return ResourceManager.GetString("BGMFreeze", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BGM ID.
+ ///
+ public static string BGMID {
+ get {
+ return ResourceManager.GetString("BGMID", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Blue:.
+ ///
+ public static string Blue {
+ get {
+ return ResourceManager.GetString("Blue", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Blue Glow:.
+ ///
+ public static string BlueGlow {
+ get {
+ return ResourceManager.GetString("BlueGlow", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Body:.
+ ///
+ public static string Body {
+ get {
+ return ResourceManager.GetString("Body", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Body Type of the selected actor..
+ ///
+ public static string BodyToolTip {
+ get {
+ return ResourceManager.GetString("BodyToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any bodypiece on the selected actor..
+ ///
+ public static string BodyToolTip2 {
+ get {
+ return ResourceManager.GetString("BodyToolTip2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Body Type:.
+ ///
+ public static string BodyType {
+ get {
+ return ResourceManager.GetString("BodyType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Breasts:.
+ ///
+ public static string Breasts {
+ get {
+ return ResourceManager.GetString("Breasts", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Brightness:.
+ ///
+ public static string Brightness {
+ get {
+ return ResourceManager.GetString("Brightness", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Bust Size:.
+ ///
+ public static string BustSize {
+ get {
+ return ResourceManager.GetString("BustSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Bust Size of the selected actor..
+ ///
+ public static string BustSizeToolTip {
+ get {
+ return ResourceManager.GetString("BustSizeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Bust X Scale:.
+ ///
+ public static string BustXScale {
+ get {
+ return ResourceManager.GetString("BustXScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the X Scale of the selected actors Bust.
+ ///• This option is Female only..
+ ///
+ public static string BustXScaleToolTip {
+ get {
+ return ResourceManager.GetString("BustXScaleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Bust Y Scale:.
+ ///
+ public static string BustYScale {
+ get {
+ return ResourceManager.GetString("BustYScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Y Scale of the selected actors Bust.
+ ///• This option is Female only..
+ ///
+ public static string BustYScaleToolTip {
+ get {
+ return ResourceManager.GetString("BustYScaleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Bust Z Scale:.
+ ///
+ public static string BustZScale {
+ get {
+ return ResourceManager.GetString("BustZScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Z Scale of the selected actors Bust.
+ ///• This option is Female only..
+ ///
+ public static string BustZScaleToolTip {
+ get {
+ return ResourceManager.GetString("BustZScaleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c1001 - Roegadyn Female.
+ ///
+ public static string c1001 {
+ get {
+ return ResourceManager.GetString("c1001", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c101 - Hyur Male.
+ ///
+ public static string c101 {
+ get {
+ return ResourceManager.GetString("c101", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c104 - Hyur Male (Child).
+ ///
+ public static string c104 {
+ get {
+ return ResourceManager.GetString("c104", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c1101 - Lalafell Male.
+ ///
+ public static string c1101 {
+ get {
+ return ResourceManager.GetString("c1101", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c1201 - Lalafell Female.
+ ///
+ public static string c1201 {
+ get {
+ return ResourceManager.GetString("c1201", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c1301 - Au Ra Male.
+ ///
+ public static string c1301 {
+ get {
+ return ResourceManager.GetString("c1301", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c1401 - Au Ra Female.
+ ///
+ public static string c1401 {
+ get {
+ return ResourceManager.GetString("c1401", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c1501 - Hrothgar Male.
+ ///
+ public static string c1501 {
+ get {
+ return ResourceManager.GetString("c1501", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c1801 - Viera Female.
+ ///
+ public static string c1801 {
+ get {
+ return ResourceManager.GetString("c1801", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c201 - Hyur Female.
+ ///
+ public static string c201 {
+ get {
+ return ResourceManager.GetString("c201", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c301 - Highlander Male.
+ ///
+ public static string c301 {
+ get {
+ return ResourceManager.GetString("c301", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c401 - Highlander Female.
+ ///
+ public static string c401 {
+ get {
+ return ResourceManager.GetString("c401", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c501 - Elezen Male.
+ ///
+ public static string c501 {
+ get {
+ return ResourceManager.GetString("c501", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c504 - Elezen Male (Child).
+ ///
+ public static string c504 {
+ get {
+ return ResourceManager.GetString("c504", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c601 - Elezen Female.
+ ///
+ public static string c601 {
+ get {
+ return ResourceManager.GetString("c601", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c604 - Elezen Female (Child).
+ ///
+ public static string c604 {
+ get {
+ return ResourceManager.GetString("c604", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c701 - Miqo'te Male.
+ ///
+ public static string c701 {
+ get {
+ return ResourceManager.GetString("c701", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c801 - Miqo'te Female.
+ ///
+ public static string c801 {
+ get {
+ return ResourceManager.GetString("c801", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c804 - Miqo'te Female (Child).
+ ///
+ public static string c804 {
+ get {
+ return ResourceManager.GetString("c804", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c901 - Roegadyn Male.
+ ///
+ public static string c901 {
+ get {
+ return ResourceManager.GetString("c901", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c9104 - Padjal Male.
+ ///
+ public static string c9104 {
+ get {
+ return ResourceManager.GetString("c9104", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to c9204 - Padjal Female.
+ ///
+ public static string c9204 {
+ get {
+ return ResourceManager.GetString("c9204", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Calves:.
+ ///
+ public static string Calves {
+ get {
+ return ResourceManager.GetString("Calves", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cam Angle X:.
+ ///
+ public static string CamAngleX {
+ get {
+ return ResourceManager.GetString("CamAngleX", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cam Angle Y:.
+ ///
+ public static string CamAngleY {
+ get {
+ return ResourceManager.GetString("CamAngleY", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Camera Settings.
+ ///
+ public static string CameraSettings {
+ get {
+ return ResourceManager.GetString("CameraSettings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Camera View X:.
+ ///
+ public static string CameraViewX {
+ get {
+ return ResourceManager.GetString("CameraViewX", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Camera View Y:.
+ ///
+ public static string CameraViewY {
+ get {
+ return ResourceManager.GetString("CameraViewY", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Camera View Z:.
+ ///
+ public static string CameraViewZ {
+ get {
+ return ResourceManager.GetString("CameraViewZ", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Camera X Pos:.
+ ///
+ public static string CameraXPos {
+ get {
+ return ResourceManager.GetString("CameraXPos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Camera Y Pos:.
+ ///
+ public static string CameraYPos {
+ get {
+ return ResourceManager.GetString("CameraYPos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Camera Z Pos:.
+ ///
+ public static string CameraZPos {
+ get {
+ return ResourceManager.GetString("CameraZPos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cam Rotation:.
+ ///
+ public static string CamRotation {
+ get {
+ return ResourceManager.GetString("CamRotation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cam Up/Down:.
+ ///
+ public static string CamUpDown {
+ get {
+ return ResourceManager.GetString("CamUpDown", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cam Y Max:.
+ ///
+ public static string CamYMax {
+ get {
+ return ResourceManager.GetString("CamYMax", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cam Y Min:.
+ ///
+ public static string CamYMin {
+ get {
+ return ResourceManager.GetString("CamYMin", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cheeks:.
+ ///
+ public static string Cheeks {
+ get {
+ return ResourceManager.GetString("Cheeks", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Chest:.
+ ///
+ public static string Chest {
+ get {
+ return ResourceManager.GetString("Chest", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Clan:.
+ ///
+ public static string Clan {
+ get {
+ return ResourceManager.GetString("Clan", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Clan of the selected actor..
+ ///
+ public static string ClanToolTip {
+ get {
+ return ResourceManager.GetString("ClanToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Clavicles:.
+ ///
+ public static string Clavicles {
+ get {
+ return ResourceManager.GetString("Clavicles", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Colorfulness:.
+ ///
+ public static string Colorfulness {
+ get {
+ return ResourceManager.GetString("Colorfulness", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Colorfulness 2:.
+ ///
+ public static string Colorfulness2 {
+ get {
+ return ResourceManager.GetString("Colorfulness2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Contrast:.
+ ///
+ public static string Contrast {
+ get {
+ return ResourceManager.GetString("Contrast", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Contrast 2:.
+ ///
+ public static string Contrast2 {
+ get {
+ return ResourceManager.GetString("Contrast2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Current Zoom:.
+ ///
+ public static string CurrentZoom {
+ get {
+ return ResourceManager.GetString("CurrentZoom", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Data Path:.
+ ///
+ public static string DataPath {
+ get {
+ return ResourceManager.GetString("DataPath", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Data Path of the selected entity.
+ ///•This will allow you use the animations of other Races or Genders.
+ ///• Does not require an Actor Refresh, and can be used in and out of GPose.
+ ///• The entity's skeleton will be morphed to fit the selected race. This stretching or shrinking is unavoidable.
+ ///• You can use Actor Refresh if you want to become an abomination for fun..
+ ///
+ public static string DataPathToolTip {
+ get {
+ return ResourceManager.GetString("DataPathToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Default Time.
+ ///
+ public static string DefaultTime {
+ get {
+ return ResourceManager.GetString("DefaultTime", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Discord.
+ ///
+ public static string Discord {
+ get {
+ return ResourceManager.GetString("Discord", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Drenched:.
+ ///
+ public static string Drenched {
+ get {
+ return ResourceManager.GetString("Drenched", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gives the selected entity a much more pronounced wetness effect.
+ ///• Same as Wet, this effect goes away over time..
+ ///
+ public static string DrenchedToolTip {
+ get {
+ return ResourceManager.GetString("DrenchedToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Dyes.
+ ///
+ public static string Dyes {
+ get {
+ return ResourceManager.GetString("Dyes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ear/Muscle/Tail Size:.
+ ///
+ public static string EarMuscleTailSize {
+ get {
+ return ResourceManager.GetString("EarMuscleTailSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Ear, Muscle, and Tail Size of the selected actor..
+ ///
+ public static string EarMuscleTailSizeToolTip {
+ get {
+ return ResourceManager.GetString("EarMuscleTailSizeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ears:.
+ ///
+ public static string Ears {
+ get {
+ return ResourceManager.GetString("Ears", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any earrings on the selected actor..
+ ///
+ public static string EarsToolTip {
+ get {
+ return ResourceManager.GetString("EarsToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ear/Tail Scale:.
+ ///
+ public static string EarTailScale {
+ get {
+ return ResourceManager.GetString("EarTailScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Ear and Tail Scale of the selected actor..
+ ///
+ public static string EarTailScaleToolTip {
+ get {
+ return ResourceManager.GetString("EarTailScaleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ear/Tail Type:.
+ ///
+ public static string EarTailType {
+ get {
+ return ResourceManager.GetString("EarTailType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Ear and Tail of the selected actor..
+ ///
+ public static string EarTailTypeToolTip {
+ get {
+ return ResourceManager.GetString("EarTailTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Elbows:.
+ ///
+ public static string Elbows {
+ get {
+ return ResourceManager.GetString("Elbows", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enable Editing:.
+ ///
+ public static string EnableEditing {
+ get {
+ return ResourceManager.GetString("EnableEditing", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enable Physics:.
+ ///
+ public static string EnablePhysics {
+ get {
+ return ResourceManager.GetString("EnablePhysics", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Entity Type:.
+ ///
+ public static string EntityType {
+ get {
+ return ResourceManager.GetString("EntityType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to For Advanced Users Only!
+ ///• This will change the Entity type of the selected entity.
+ ///• This can lead to unpredictable and unwanted behavior for some entities.
+ ///• Changing some NPCs to Type 1 will allow them to be targetable in GPose..
+ ///
+ public static string EntityTypeToolTip {
+ get {
+ return ResourceManager.GetString("EntityTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Equipment.
+ ///
+ public static string Equipment {
+ get {
+ return ResourceManager.GetString("Equipment", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Exposure:.
+ ///
+ public static string Exposure {
+ get {
+ return ResourceManager.GetString("Exposure", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Eyebrows Type of the selected actor..
+ ///
+ public static string EyeBrowsToolTip {
+ get {
+ return ResourceManager.GetString("EyeBrowsToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Eyebrows Type:.
+ ///
+ public static string EyebrowsType {
+ get {
+ return ResourceManager.GetString("EyebrowsType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Eye Color (Left):.
+ ///
+ public static string EyeColorLeft {
+ get {
+ return ResourceManager.GetString("EyeColorLeft", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Left Eye Color of the selected actor..
+ ///
+ public static string EyeColorLeftToolTip {
+ get {
+ return ResourceManager.GetString("EyeColorLeftToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Eye Color (Right);.
+ ///
+ public static string EyeColorRight {
+ get {
+ return ResourceManager.GetString("EyeColorRight", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Right Eye Color of the selected actor..
+ ///
+ public static string EyeColorRightToolTip {
+ get {
+ return ResourceManager.GetString("EyeColorRightToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Eyelids:.
+ ///
+ public static string Eyelids {
+ get {
+ return ResourceManager.GetString("Eyelids", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Eyes:.
+ ///
+ public static string Eyes {
+ get {
+ return ResourceManager.GetString("Eyes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Eyes Type:.
+ ///
+ public static string EyesType {
+ get {
+ return ResourceManager.GetString("EyesType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Eyes Type of the selected actor..
+ ///
+ public static string EyeTypeToolTip {
+ get {
+ return ResourceManager.GetString("EyeTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Face:.
+ ///
+ public static string Face {
+ get {
+ return ResourceManager.GetString("Face", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Face Paint/Tattoo:.
+ ///
+ public static string FacePaint {
+ get {
+ return ResourceManager.GetString("FacePaint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Face Paint Color:.
+ ///
+ public static string FacePaintColor {
+ get {
+ return ResourceManager.GetString("FacePaintColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Face Paint Color of the selected actor..
+ ///
+ public static string FacePaintColorToolTip {
+ get {
+ return ResourceManager.GetString("FacePaintColorToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Face Paint and Tattoos of the selected actor..
+ ///
+ public static string FacePaintToolTip {
+ get {
+ return ResourceManager.GetString("FacePaintToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Facial Features:.
+ ///
+ public static string FacialFeatures {
+ get {
+ return ResourceManager.GetString("FacialFeatures", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Facial Features of the selected actor..
+ ///
+ public static string FacialFeaturesToolTip {
+ get {
+ return ResourceManager.GetString("FacialFeaturesToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Feet:.
+ ///
+ public static string Feet {
+ get {
+ return ResourceManager.GetString("Feet", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any footwear on the selected actor..
+ ///
+ public static string FeetToolTip {
+ get {
+ return ResourceManager.GetString("FeetToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Filmic:.
+ ///
+ public static string Filmic {
+ get {
+ return ResourceManager.GetString("Filmic", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Filters.
+ ///
+ public static string Filters {
+ get {
+ return ResourceManager.GetString("Filters", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reload Process.
+ ///
+ public static string FindProcessButton {
+ get {
+ return ResourceManager.GetString("FindProcessButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reload the Final Fantasy XIV process..
+ ///
+ public static string FindProcessToolTip {
+ get {
+ return ResourceManager.GetString("FindProcessToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Finger Bones.
+ ///
+ public static string FingerBones {
+ get {
+ return ResourceManager.GetString("FingerBones", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Force Anim:.
+ ///
+ public static string ForceAnim {
+ get {
+ return ResourceManager.GetString("ForceAnim", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Forces the selected entity to perform an animation.
+ ///• This can only be used in GPose.
+ ///• In order to use this, you need to do a non-looping emote, suchs as /wave before entering GPose.
+ ///• Some animations have a specific race/gender requirement in order to perform. You may need to use a different Data Path if your character is just twitching.
+ ///• Does not work on NPCs!.
+ ///
+ public static string ForceAnimToolTip {
+ get {
+ return ResourceManager.GetString("ForceAnimToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Forearms:.
+ ///
+ public static string Forearms {
+ get {
+ return ResourceManager.GetString("Forearms", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Field of View:.
+ ///
+ public static string FoV {
+ get {
+ return ResourceManager.GetString("FoV", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Field of View 2:.
+ ///
+ public static string FoV2 {
+ get {
+ return ResourceManager.GetString("FoV2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Free Company Tag:.
+ ///
+ public static string FreeCompanyTag {
+ get {
+ return ResourceManager.GetString("FreeCompanyTag", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Free Company Tag.
+ ///
+ public static string FreeCompanyTagWaterMark {
+ get {
+ return ResourceManager.GetString("FreeCompanyTagWaterMark", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Free Company Tag of the selected actor..
+ ///
+ public static string FreeCompanyToolTip {
+ get {
+ return ResourceManager.GetString("FreeCompanyToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Freeze All.
+ ///
+ public static string FreezeAll {
+ get {
+ return ResourceManager.GetString("FreezeAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Freeze Pos.
+ ///
+ public static string FreezePos {
+ get {
+ return ResourceManager.GetString("FreezePos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Freezes the position of the selected entity
+ ///• This is useful for moving entities in GPose, as it will prevent them from snapping back to their original position when their emote changes or you use face camera.
+ ///• Make sure to press this button again before clicking or tabbing to a new entity, or it will snap them to the same position..
+ ///
+ public static string FreezePosToolTip {
+ get {
+ return ResourceManager.GetString("FreezePosToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Freeze Rot.
+ ///
+ public static string FreezeRot {
+ get {
+ return ResourceManager.GetString("FreezeRot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Freezes the rotation of the selected entity.
+ ///• This is useful in conjunction with Freeze Pos for preserving the position and rotation of an entity in GPose.
+ ///• You can use this along with the 'Face Camera' toggle in-game (Default: Space Bar) to turn the entity's head without turning the entire body.
+ ///• Same as Freeze Pos, make sure to toggle off Freeze Rot before switching entities in GPose.
+ ///• Required for using Numerical direct input or Rotation Sliders..
+ ///
+ public static string FreezeRotToolTip {
+ get {
+ return ResourceManager.GetString("FreezeRotToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to G.
+ ///
+ public static string G {
+ get {
+ return ResourceManager.GetString("G", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gamma:.
+ ///
+ public static string Gamma {
+ get {
+ return ResourceManager.GetString("Gamma", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gender:.
+ ///
+ public static string Gender {
+ get {
+ return ResourceManager.GetString("Gender", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Gender of the selected actor..
+ ///
+ public static string GenderToolTip {
+ get {
+ return ResourceManager.GetString("GenderToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to GPose Mode:.
+ ///
+ public static string GPoseMode {
+ get {
+ return ResourceManager.GetString("GPoseMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows for certain values such as XYZ Position, Rotation and Animation to be changed for your currently selected entity in GPose.
+ ///• GPose mode and Target Mode both toggle on at the same time. Make sure not to have Target Mode already toggled on, or it will toggle off instead..
+ ///
+ public static string GposeModeToolTip {
+ get {
+ return ResourceManager.GetString("GposeModeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Green:.
+ ///
+ public static string Green {
+ get {
+ return ResourceManager.GetString("Green", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Green Glow:.
+ ///
+ public static string GreenGlow {
+ get {
+ return ResourceManager.GetString("GreenGlow", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Group Pose Filters.
+ ///
+ public static string GroupPoseFilter {
+ get {
+ return ResourceManager.GetString("GroupPoseFilter", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hair Color:.
+ ///
+ public static string HairColor {
+ get {
+ return ResourceManager.GetString("HairColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hair Color.
+ ///
+ public static string HairColor2 {
+ get {
+ return ResourceManager.GetString("HairColor2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Hair Color of the selected actor..
+ ///
+ public static string HairColorToolTip {
+ get {
+ return ResourceManager.GetString("HairColorToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hairstyle:.
+ ///
+ public static string Hairstyle {
+ get {
+ return ResourceManager.GetString("Hairstyle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Hairstyle of the selected actor..
+ ///
+ public static string HairStyleToolTip {
+ get {
+ return ResourceManager.GetString("HairStyleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hands:.
+ ///
+ public static string Hands {
+ get {
+ return ResourceManager.GetString("Hands", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any handwear on the selected actor..
+ ///
+ public static string HandsToolTip {
+ get {
+ return ResourceManager.GetString("HandsToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HDR:.
+ ///
+ public static string HDR {
+ get {
+ return ResourceManager.GetString("HDR", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Head:.
+ ///
+ public static string Head {
+ get {
+ return ResourceManager.GetString("Head", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Head Bones.
+ ///
+ public static string HeadBones {
+ get {
+ return ResourceManager.GetString("HeadBones", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any headpiece on the selected actor..
+ ///
+ public static string HeadToolTip {
+ get {
+ return ResourceManager.GetString("HeadToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Head Type:.
+ ///
+ public static string HeadType {
+ get {
+ return ResourceManager.GetString("HeadType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Head Type of the selected actor..
+ ///
+ public static string HeadTypeToolTip {
+ get {
+ return ResourceManager.GetString("HeadTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Height:.
+ ///
+ public static string Height {
+ get {
+ return ResourceManager.GetString("Height", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Height of the selected actor..
+ ///
+ public static string HeightToolTip {
+ get {
+ return ResourceManager.GetString("HeightToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Toggles Highlights for the selected actor..
+ ///
+ public static string HighLightButtonToolTip {
+ get {
+ return ResourceManager.GetString("HighLightButtonToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Highlights:.
+ ///
+ public static string Highlights {
+ get {
+ return ResourceManager.GetString("Highlights", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Highlights Color.
+ ///
+ public static string HighlightsColor {
+ get {
+ return ResourceManager.GetString("HighlightsColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Highlights Color of the selected actor..
+ ///
+ public static string HighlightsToolTip {
+ get {
+ return ResourceManager.GetString("HighlightsToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Idle Anim:.
+ ///
+ public static string IdleAnim {
+ get {
+ return ResourceManager.GetString("IdleAnim", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Idle Animation of the selected entity.
+ ///• This can be used both in and out of GPose.
+ ///• If you plan to use this in GPose, you will need to sit/stand, then use /cpose until your Idle Anim reads.
+ ///• This can be used on Pets, Minions, Chocobos and most NPCs!.
+ ///
+ public static string IdleAnimToolTip {
+ get {
+ return ResourceManager.GetString("IdleAnimToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Index Finger:.
+ ///
+ public static string IndexFinger {
+ get {
+ return ResourceManager.GetString("IndexFinger", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Index Joint:.
+ ///
+ public static string IndexJoint {
+ get {
+ return ResourceManager.GetString("IndexJoint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Inner Brows:.
+ ///
+ public static string InnerBrows {
+ get {
+ return ResourceManager.GetString("InnerBrows", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Jaw:.
+ ///
+ public static string Jaw {
+ get {
+ return ResourceManager.GetString("Jaw", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Jaw Type:.
+ ///
+ public static string JawType {
+ get {
+ return ResourceManager.GetString("JawType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Jaw Type of the selected actor..
+ ///
+ public static string JawTypeToolTip {
+ get {
+ return ResourceManager.GetString("JawTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Job Icon:.
+ ///
+ public static string JobIcon {
+ get {
+ return ResourceManager.GetString("JobIcon", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Job Icon of the selected party member in your party list..
+ ///
+ public static string JobIconToolTip {
+ get {
+ return ResourceManager.GetString("JobIconToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Knees:.
+ ///
+ public static string Knees {
+ get {
+ return ResourceManager.GetString("Knees", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to EN.
+ ///
+ public static string Language {
+ get {
+ return ResourceManager.GetString("Language", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Left Arm:.
+ ///
+ public static string LeftArm {
+ get {
+ return ResourceManager.GetString("LeftArm", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Left Eye Color.
+ ///
+ public static string LeftEyeColor {
+ get {
+ return ResourceManager.GetString("LeftEyeColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Left Leg:.
+ ///
+ public static string LeftLeg {
+ get {
+ return ResourceManager.GetString("LeftLeg", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Left Ring:.
+ ///
+ public static string LeftRing {
+ get {
+ return ResourceManager.GetString("LeftRing", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any ring on the selected actors left hand..
+ ///
+ public static string LeftRingToolTip {
+ get {
+ return ResourceManager.GetString("LeftRingToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Legs:.
+ ///
+ public static string Legs {
+ get {
+ return ResourceManager.GetString("Legs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any leggings on the selected actor..
+ ///
+ public static string LegsToolTip {
+ get {
+ return ResourceManager.GetString("LegsToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Limbal/Tattoo Color:.
+ ///
+ public static string LimbalOrTattoo {
+ get {
+ return ResourceManager.GetString("LimbalOrTattoo", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Limbal Ring and Tattoo Color of the selected actor..
+ ///
+ public static string LimbalOrTattooToolTip {
+ get {
+ return ResourceManager.GetString("LimbalOrTattooToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Limbal Ring / Tattoos Color.
+ ///
+ public static string LimbalRingTattooColor {
+ get {
+ return ResourceManager.GetString("LimbalRingTattooColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lips Color/Fur Pattern:.
+ ///
+ public static string LipColor {
+ get {
+ return ResourceManager.GetString("LipColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Lips Color and Fur Pattern of the selected actor..
+ ///
+ public static string LipColorToolTip {
+ get {
+ return ResourceManager.GetString("LipColorToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lips Color.
+ ///
+ public static string LipsColor {
+ get {
+ return ResourceManager.GetString("LipsColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Load.
+ ///
+ public static string LoadButton {
+ get {
+ return ResourceManager.GetString("LoadButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Load Gearset.
+ ///
+ public static string LoadGearset {
+ get {
+ return ResourceManager.GetString("LoadGearset", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Load Appearance.
+ ///
+ public static string LoadMainWindow {
+ get {
+ return ResourceManager.GetString("LoadMainWindow", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Load Appearance from a user-generated JSON file.
+ ///•You can load data you have saved from the Character Creator in-game using the 'Load .DAT' option..
+ ///
+ public static string LoadMainWindowToolTip {
+ get {
+ return ResourceManager.GetString("LoadMainWindowToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Load State.
+ ///
+ public static string LoadPointButton {
+ get {
+ return ResourceManager.GetString("LoadPointButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reverts back to your 'Backup' state..
+ ///
+ public static string LoadPointToolTip {
+ get {
+ return ResourceManager.GetString("LoadPointToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lock Facial Animation:.
+ ///
+ public static string LockFacialAnimation {
+ get {
+ return ResourceManager.GetString("LockFacialAnimation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Locks the Facial Animation of the selected actor.
+ ///• To properly lock the facial animation of the selected actor, you need to toggle this on, freeze the option, and then set Anim Speed to Zero..
+ ///
+ public static string LockFacialAnimationToolTip {
+ get {
+ return ResourceManager.GetString("LockFacialAnimationToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lock Time:.
+ ///
+ public static string LockTime {
+ get {
+ return ResourceManager.GetString("LockTime", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lower Body Bones.
+ ///
+ public static string LowerBodyBones {
+ get {
+ return ResourceManager.GetString("LowerBodyBones", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lower Earrings:.
+ ///
+ public static string LowerEarrings {
+ get {
+ return ResourceManager.GetString("LowerEarrings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lower Eyelids:.
+ ///
+ public static string LowerEyelids {
+ get {
+ return ResourceManager.GetString("LowerEyelids", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lower Lip:.
+ ///
+ public static string LowerLip {
+ get {
+ return ResourceManager.GetString("LowerLip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Main Hand:.
+ ///
+ public static string MainHand {
+ get {
+ return ResourceManager.GetString("MainHand", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Main Hand Color.
+ ///
+ public static string MainHandColor {
+ get {
+ return ResourceManager.GetString("MainHandColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Main Hand Scale.
+ ///
+ public static string MainHandScale {
+ get {
+ return ResourceManager.GetString("MainHandScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Controls the XYZ Scale of the entity's main hand weapon.
• This can be used to resize main hand props as well, but does not affect the size of 'vfx items' that appear temporarily during certain emotes, such as the Tomestone..
+ ///
+ public static string MainHandScaleToolTip {
+ get {
+ return ResourceManager.GetString("MainHandScaleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any weapon on the selected actor.
• If you want their hands to be empty, either equip the 'Emperor's New Fists', or use Main Hand Scale and/or Off Hand Scale in the Right Pane..
+ ///
+ public static string MainHandToolTip {
+ get {
+ return ResourceManager.GetString("MainHandToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Max Zoom:.
+ ///
+ public static string MaxZoom {
+ get {
+ return ResourceManager.GetString("MaxZoom", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Middle Finger:.
+ ///
+ public static string MiddleFinger {
+ get {
+ return ResourceManager.GetString("MiddleFinger", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Middle Joint:.
+ ///
+ public static string MiddleJoint {
+ get {
+ return ResourceManager.GetString("MiddleJoint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Min Zoom:.
+ ///
+ public static string MinZoom {
+ get {
+ return ResourceManager.GetString("MinZoom", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Model ID.
+ ///
+ public static string ModelID {
+ get {
+ return ResourceManager.GetString("ModelID", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Model List.
+ ///
+ public static string ModelList {
+ get {
+ return ResourceManager.GetString("ModelList", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Model Type:.
+ ///
+ public static string ModelType {
+ get {
+ return ResourceManager.GetString("ModelType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Opens a flyout menu on the right side that allows you to search for Monsters, Demi-Humans, Prop Entities and Entity-Based Effects.
+ ///• Some NPCs are found under this selection because they are classified as Demi-Humans, such as Beast Tribes, Zenos, Thordan/Knights, etc.
+ ///• If you become invisible after changing to a Demi-Human, change all of your Equipment to Base 0, Variant 0. If this doesn't work, try 1,0 or 1,1..
+ ///
+ public static string ModelTypeButtonToolTip {
+ get {
+ return ResourceManager.GetString("ModelTypeButtonToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Model Type of the selected actor..
+ ///
+ public static string ModelTypeToolTip {
+ get {
+ return ResourceManager.GetString("ModelTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mouth:.
+ ///
+ public static string Mouth {
+ get {
+ return ResourceManager.GetString("Mouth", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mouth Type:.
+ ///
+ public static string MouthType {
+ get {
+ return ResourceManager.GetString("MouthType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Mouth Type of the selected actor..
+ ///
+ public static string MouthTypeToolTip {
+ get {
+ return ResourceManager.GetString("MouthTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Muscle Tone:.
+ ///
+ public static string MuscleTone {
+ get {
+ return ResourceManager.GetString("MuscleTone", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Muscle Tone of the selected actor..
+ ///
+ public static string MuscleToneToolTip {
+ get {
+ return ResourceManager.GetString("MuscleToneToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Name:.
+ ///
+ public static string Name {
+ get {
+ return ResourceManager.GetString("Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the display name of the selected actor..
+ ///
+ public static string NameToolTip {
+ get {
+ return ResourceManager.GetString("NameToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Name.
+ ///
+ public static string NameWaterMark {
+ get {
+ return ResourceManager.GetString("NameWaterMark", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Neck:.
+ ///
+ public static string Neck {
+ get {
+ return ResourceManager.GetString("Neck", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any necklace on the selected actor..
+ ///
+ public static string NeckToolTip {
+ get {
+ return ResourceManager.GetString("NeckToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Nose:.
+ ///
+ public static string Nose {
+ get {
+ return ResourceManager.GetString("Nose", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Nose Type:.
+ ///
+ public static string NoseType {
+ get {
+ return ResourceManager.GetString("NoseType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Nose Type of the selected actor..
+ ///
+ public static string NoseTypeToolTip {
+ get {
+ return ResourceManager.GetString("NoseTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Nostrils:.
+ ///
+ public static string Nostrils {
+ get {
+ return ResourceManager.GetString("Nostrils", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Model:.
+ ///
+ public static string NPCModel {
+ get {
+ return ResourceManager.GetString("NPCModel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NPC Outfits & Appearances.
+ ///
+ public static string NPCOutfit {
+ get {
+ return ResourceManager.GetString("NPCOutfit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Opens a fly-out search window on the right that allows you to search for NPCs by name. 
• You will need to use Actor Refresh after clicking an entry to assume their appearance. 
• Some NPCs, such as beast tribes, Zenos and a few others are not in this section because they are classified as Demi-Humans. They can be found by searching Model Type on the first tab..
+ ///
+ public static string NPCOutfitToolTip {
+ get {
+ return ResourceManager.GetString("NPCOutfitToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Off Hand:.
+ ///
+ public static string OffHand {
+ get {
+ return ResourceManager.GetString("OffHand", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Off Hand Color.
+ ///
+ public static string OffHandColor {
+ get {
+ return ResourceManager.GetString("OffHandColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Off Hand Scale.
+ ///
+ public static string OffHandScale {
+ get {
+ return ResourceManager.GetString("OffHandScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Controls the XYZ Scale of the entity's off hand weapon.
• This affects equipment such as a Shield, Quiver, Aetherpack, Sleeve, Katana Sheath, Focus and Left Hand Dagger or Fist..
+ ///
+ public static string OffHandScaleToolTip {
+ get {
+ return ResourceManager.GetString("OffHandScaleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip an off hand weapon. 
• In order to find an applicable off hand (except for shields), you need to search for the main hand equipment using the off hand 'View' button. For example to find a Sheath or Quiver, you need to search for the Katana or Bow that goes with it..
+ ///
+ public static string OffHandToolTip {
+ get {
+ return ResourceManager.GetString("OffHandToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Outer Brows:.
+ ///
+ public static string OuterBrows {
+ get {
+ return ResourceManager.GetString("OuterBrows", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Overall Scale:.
+ ///
+ public static string OverallScale {
+ get {
+ return ResourceManager.GetString("OverallScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Overall Scale of the selected actor..
+ ///
+ public static string OverallScaleToolTip {
+ get {
+ return ResourceManager.GetString("OverallScaleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pelvis:.
+ ///
+ public static string Pelvis {
+ get {
+ return ResourceManager.GetString("Pelvis", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pinky Finger:.
+ ///
+ public static string PinkyFinger {
+ get {
+ return ResourceManager.GetString("PinkyFinger", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pinky Joint:.
+ ///
+ public static string PinkyJoint {
+ get {
+ return ResourceManager.GetString("PinkyJoint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Posing Matrix.
+ ///
+ public static string PosingMatrix {
+ get {
+ return ResourceManager.GetString("PosingMatrix", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Prop
+ ///View.
+ ///
+ public static string PropView {
+ get {
+ return ResourceManager.GetString("PropView", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to R.
+ ///
+ public static string R {
+ get {
+ return ResourceManager.GetString("R", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Race:.
+ ///
+ public static string Race {
+ get {
+ return ResourceManager.GetString("Race", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Race of the selected actor..
+ ///
+ public static string RaceToolTip {
+ get {
+ return ResourceManager.GetString("RaceToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Randomize Appearance.
+ ///
+ public static string RandomizeAppearance {
+ get {
+ return ResourceManager.GetString("RandomizeAppearance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Will create a random appearance..
+ ///
+ public static string RandomizeAppearanceToolTip {
+ get {
+ return ResourceManager.GetString("RandomizeAppearanceToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Realtime Rotation:.
+ ///
+ public static string RealtimeRotation {
+ get {
+ return ResourceManager.GetString("RealtimeRotation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use your mouse buttons to control the cube.
+ ///• All rotations are relative to the direction that the entity is currently facing.
+ ///• RMB controls X-axis rotation.
+ ///• LMB controls Y-axis rotation.
+ ///• MMB controls Z-axis rotation..
+ ///
+ public static string RealTimeRotationToolTip {
+ get {
+ return ResourceManager.GetString("RealTimeRotationToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Red:.
+ ///
+ public static string Red {
+ get {
+ return ResourceManager.GetString("Red", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Red Glow:.
+ ///
+ public static string RedGlow {
+ get {
+ return ResourceManager.GetString("RedGlow", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Refresh.
+ ///
+ public static string RefreshButton {
+ get {
+ return ResourceManager.GetString("RefreshButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Relative XYZ Pos:.
+ ///
+ public static string RelativeXYZPos {
+ get {
+ return ResourceManager.GetString("RelativeXYZPos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This toggle will make all XYZ movements relative to the entity being targeted, and not absolute based on the gameworld.
+ ///• This setting is defaulted to on, and its state is saved between sessions..
+ ///
+ public static string RelativeXYZPosToolTip {
+ get {
+ return ResourceManager.GetString("RelativeXYZPosToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Relative XYZ Rot:.
+ ///
+ public static string RelativeXYZRot {
+ get {
+ return ResourceManager.GetString("RelativeXYZRot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This toggle will make all XYZ rotations relative to the entity being targeted, and not absolute based on the gameworld.
+ ///• This setting is defaulted to on, and its state is saved between sessions.
+ ///• Only affects the Realtime Rotation Cube..
+ ///
+ public static string RelativeXYZRotToolTip {
+ get {
+ return ResourceManager.GetString("RelativeXYZRotToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Render Cycle.
+ ///
+ public static string RenderCycle {
+ get {
+ return ResourceManager.GetString("RenderCycle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Remove Character Render Limit:.
+ ///
+ public static string RenderLimit {
+ get {
+ return ResourceManager.GetString("RenderLimit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Render Toggle Switch.
+ ///
+ public static string RenderToggleToolTip {
+ get {
+ return ResourceManager.GetString("RenderToggleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reset.
+ ///
+ public static string ResetButton {
+ get {
+ return ResourceManager.GetString("ResetButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reset to Default.
+ ///
+ public static string ResetToDefaultButton {
+ get {
+ return ResourceManager.GetString("ResetToDefaultButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Right Arm:.
+ ///
+ public static string RightArm {
+ get {
+ return ResourceManager.GetString("RightArm", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Right Eye Color.
+ ///
+ public static string RightEyeColor {
+ get {
+ return ResourceManager.GetString("RightEyeColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Right Leg:.
+ ///
+ public static string RightLeg {
+ get {
+ return ResourceManager.GetString("RightLeg", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Right Ring:.
+ ///
+ public static string RightRing {
+ get {
+ return ResourceManager.GetString("RightRing", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any ring on the selected actors right hand..
+ ///
+ public static string RightRingToolTip {
+ get {
+ return ResourceManager.GetString("RightRingToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ring Finger:.
+ ///
+ public static string RingFinger {
+ get {
+ return ResourceManager.GetString("RingFinger", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ring Joint:.
+ ///
+ public static string RingJoint {
+ get {
+ return ResourceManager.GetString("RingJoint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Rotation Sliders:.
+ ///
+ public static string RotationSliders {
+ get {
+ return ResourceManager.GetString("RotationSliders", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This toggle will switch between Rotation Sliders and Numerical direct input.
+ ///•This setting is defaulted to on, and its state is saved between sessions.
+ ///• Turning it off will turn the XYZ Rotation sliders into numerical values.
+ ///• Each input will accept a value between 0 and 360.
+ ///• Both Rotation Sliders and Numerical direct input require Rotation to be frozen..
+ ///
+ public static string RotationSlidersToolTip {
+ get {
+ return ResourceManager.GetString("RotationSlidersToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save.
+ ///
+ public static string SaveButton {
+ get {
+ return ResourceManager.GetString("SaveButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save Gearset.
+ ///
+ public static string SaveGearset {
+ get {
+ return ResourceManager.GetString("SaveGearset", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save Appearance.
+ ///
+ public static string SaveMainWindow {
+ get {
+ return ResourceManager.GetString("SaveMainWindow", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save Appearance to a JSON file..
+ ///
+ public static string SaveMainWindowToolTip {
+ get {
+ return ResourceManager.GetString("SaveMainWindowToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save State.
+ ///
+ public static string SavePointButton {
+ get {
+ return ResourceManager.GetString("SavePointButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Creates a 'Backup' state that you can load later..
+ ///
+ public static string SavePointToolTip {
+ get {
+ return ResourceManager.GetString("SavePointToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Settings.
+ ///
+ public static string Settings {
+ get {
+ return ResourceManager.GetString("Settings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to S-HDR:.
+ ///
+ public static string SHDR {
+ get {
+ return ResourceManager.GetString("SHDR", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Shoulders:.
+ ///
+ public static string Shoulders {
+ get {
+ return ResourceManager.GetString("Shoulders", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Skin Color.
+ ///
+ public static string SkinColor {
+ get {
+ return ResourceManager.GetString("SkinColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Skintone:.
+ ///
+ public static string Skintone {
+ get {
+ return ResourceManager.GetString("Skintone", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Skintone of the selected actor..
+ ///
+ public static string SkinToneToolTip {
+ get {
+ return ResourceManager.GetString("SkinToneToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to GPose
+ ///Status Effects:.
+ ///
+ public static string StatusEffect {
+ get {
+ return ResourceManager.GetString("StatusEffect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to apply non-standard status VFX to entities in GPose.
+ ///1. Activate one of the basic Statuses in the GPose menu (Such as Pyretic)
+ ///2. Select the new VFX you want from the drop-down menu.
+ ///3. Remove the Status you selected using the GPose menu.
+ ///• To choose a new effect or remove the current one, hit Reset or overwrite it with another Status (Such as Deep Freeze)..
+ ///
+ public static string StatusEffectToolTip {
+ get {
+ return ResourceManager.GetString("StatusEffectToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sternum:.
+ ///
+ public static string Sternum {
+ get {
+ return ResourceManager.GetString("Sternum", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Tail:.
+ ///
+ public static string Tail {
+ get {
+ return ResourceManager.GetString("Tail", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Tail Joints:.
+ ///
+ public static string TailJoints {
+ get {
+ return ResourceManager.GetString("TailJoints", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Targeted Actor is ???.
+ ///
+ public static string TargetActorIs {
+ get {
+ return ResourceManager.GetString("TargetActorIs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Target Mode:.
+ ///
+ public static string TargetMode {
+ get {
+ return ResourceManager.GetString("TargetMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to change values for your selected target without using the Entity List.
+ ///•This is handy for busy areas where the Entity List constantly shifting. You will need to uncheck this and use the normal method to apply the changes you make, though..
+ ///
+ public static string TargetModeToolTip {
+ get {
+ return ResourceManager.GetString("TargetModeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Thumb:.
+ ///
+ public static string Thumb {
+ get {
+ return ResourceManager.GetString("Thumb", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Thumb Joint:.
+ ///
+ public static string ThumbJoint {
+ get {
+ return ResourceManager.GetString("ThumbJoint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Time Toggle Switch.
+ ///
+ public static string TimeButtonLockToolTip {
+ get {
+ return ResourceManager.GetString("TimeButtonLockToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Time Control:.
+ ///
+ public static string TimeControl {
+ get {
+ return ResourceManager.GetString("TimeControl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Adjusts the current time for the zone. 
• Using Time Control while in GPose with 'Freeze Time/Weather' toggled on will cycle the phases of the Moon..
+ ///
+ public static string TimeControlToolTip {
+ get {
+ return ResourceManager.GetString("TimeControlToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Attempts to prevent the time set using Time Control from changing.
• This is imprecise, and will still shift slightly over long periods of time..
+ ///
+ public static string TimeLockToolTip {
+ get {
+ return ResourceManager.GetString("TimeLockToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Title:.
+ ///
+ public static string Title {
+ get {
+ return ResourceManager.GetString("Title", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Title of the selected actor..
+ ///
+ public static string TitleToolTip {
+ get {
+ return ResourceManager.GetString("TitleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Toes:.
+ ///
+ public static string Toes {
+ get {
+ return ResourceManager.GetString("Toes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Torso:.
+ ///
+ public static string Torso {
+ get {
+ return ResourceManager.GetString("Torso", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to T-Pose Actor.
+ ///
+ public static string TPoseActor {
+ get {
+ return ResourceManager.GetString("TPoseActor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Transformation Data.
+ ///
+ public static string TransformationData {
+ get {
+ return ResourceManager.GetString("TransformationData", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Transparency:.
+ ///
+ public static string Transparency {
+ get {
+ return ResourceManager.GetString("Transparency", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the transparency of the selected entity.
+ ///• Reducing the transparency of an actor does not affect their main or offhand weapons. You can set the XYZ scale of their weapons to 0 in the Equipment tab.
+ ///• Setting this to 0 for an entity in GPose can cause the system to forget that they're targetable. If you plan to still use them, set it to 0.03..
+ ///
+ public static string TransparencyToolTip {
+ get {
+ return ResourceManager.GetString("TransparencyToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Twitter.
+ ///
+ public static string Twitter {
+ get {
+ return ResourceManager.GetString("Twitter", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unfreeze All.
+ ///
+ public static string UncheckButton {
+ get {
+ return ResourceManager.GetString("UncheckButton", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Uncheck and unfreeze all selections..
+ ///
+ public static string UncheckButtonToolTip {
+ get {
+ return ResourceManager.GetString("UncheckButtonToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Upper Body Bones.
+ ///
+ public static string UpperBodyBones {
+ get {
+ return ResourceManager.GetString("UpperBodyBones", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Upper Earrings:.
+ ///
+ public static string UpperEarrings {
+ get {
+ return ResourceManager.GetString("UpperEarrings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Upper Lip:.
+ ///
+ public static string UpperLip {
+ get {
+ return ResourceManager.GetString("UpperLip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Variant.
+ ///
+ public static string Variant {
+ get {
+ return ResourceManager.GetString("Variant", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Vibrance:.
+ ///
+ public static string Vibrance {
+ get {
+ return ResourceManager.GetString("Vibrance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Viera Lower Ears:.
+ ///
+ public static string VieraLowerEars {
+ get {
+ return ResourceManager.GetString("VieraLowerEars", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Viera Upper Ears:.
+ ///
+ public static string VieraUpperEars {
+ get {
+ return ResourceManager.GetString("VieraUpperEars", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to View.
+ ///
+ public static string View {
+ get {
+ return ResourceManager.GetString("View", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Visual Effects.
+ ///
+ public static string VisualEffect {
+ get {
+ return ResourceManager.GetString("VisualEffect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Voice Type:.
+ ///
+ public static string VoiceType {
+ get {
+ return ResourceManager.GetString("VoiceType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changes the Voice Type of the selected actor..
+ ///
+ public static string VoiceTypeToolTip {
+ get {
+ return ResourceManager.GetString("VoiceTypeToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Waist:.
+ ///
+ public static string Waist {
+ get {
+ return ResourceManager.GetString("Waist", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Weather:.
+ ///
+ public static string Weather {
+ get {
+ return ResourceManager.GetString("Weather", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Force Weather:.
+ ///
+ public static string WeatherForce {
+ get {
+ return ResourceManager.GetString("WeatherForce", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Controls the current weather for your zone.
This method uses instant transitions, and will change as soon as you select a weather from the drop down menu..
+ ///
+ public static string WeatherForceToolTip {
+ get {
+ return ResourceManager.GetString("WeatherForceToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Weather Select.
+ ///
+ public static string WeatherSelect {
+ get {
+ return ResourceManager.GetString("WeatherSelect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Controls the current weather for your zone. 
This method uses natural transitions and may a bit of time to take effect..
+ ///
+ public static string WeatherToolTip {
+ get {
+ return ResourceManager.GetString("WeatherToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Wet:.
+ ///
+ public static string Wet {
+ get {
+ return ResourceManager.GetString("Wet", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gives the target entity the effect that you get from being in water, or in rain.
+ ///• This effect will wear off over time if toggled off..
+ ///
+ public static string WetToolTip {
+ get {
+ return ResourceManager.GetString("WetToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to World.
+ ///
+ public static string World {
+ get {
+ return ResourceManager.GetString("World", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Wrists:.
+ ///
+ public static string Wrists {
+ get {
+ return ResourceManager.GetString("Wrists", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allows you to equip any bracelet on the selected actor..
+ ///
+ public static string WristsToolTIp {
+ get {
+ return ResourceManager.GetString("WristsToolTIp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to X:.
+ ///
+ public static string X {
+ get {
+ return ResourceManager.GetString("X", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to X Position:.
+ ///
+ public static string XPos {
+ get {
+ return ResourceManager.GetString("XPos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the X Position of the selected actor.
+ ///• You may need to Freeze the animations of your actor to properly apply this in GPose..
+ ///
+ public static string XPosToolTip {
+ get {
+ return ResourceManager.GetString("XPosToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to X Rotation:.
+ ///
+ public static string XRot {
+ get {
+ return ResourceManager.GetString("XRot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to X Rotation:.
+ ///
+ public static string XRot2 {
+ get {
+ return ResourceManager.GetString("XRot2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the X Rotation of the selected joint..
+ ///
+ public static string XRot2ToolTip {
+ get {
+ return ResourceManager.GetString("XRot2ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the X Rotation of the selected actor.
+ ///• You may need to Freeze the animations of your actor to properly apply this in GPose.
+ ///• Both Rotation Sliders and Numerical direct input require Rotation to be frozen..
+ ///
+ public static string XRotToolTip {
+ get {
+ return ResourceManager.GetString("XRotToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Y:.
+ ///
+ public static string Y {
+ get {
+ return ResourceManager.GetString("Y", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Y Position:.
+ ///
+ public static string YPos {
+ get {
+ return ResourceManager.GetString("YPos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Y Position of the selected actor.
+ ///• You may need to Freeze the animations of your actor to properly apply this in GPose..
+ ///
+ public static string YPosToolTip {
+ get {
+ return ResourceManager.GetString("YPosToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Y Rotation:.
+ ///
+ public static string YRot {
+ get {
+ return ResourceManager.GetString("YRot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Y Rotation:.
+ ///
+ public static string YRot2 {
+ get {
+ return ResourceManager.GetString("YRot2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Y Rotation of the selected joint..
+ ///
+ public static string YRot2ToolTip {
+ get {
+ return ResourceManager.GetString("YRot2ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Y Rotation of the selected actor.
+ ///• You may need to Freeze the animations of your actor to properly apply this in GPose.
+ ///• Both Rotation Sliders and Numerical direct input require Rotation to be frozen..
+ ///
+ public static string YRotToolTip {
+ get {
+ return ResourceManager.GetString("YRotToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Z:.
+ ///
+ public static string Z {
+ get {
+ return ResourceManager.GetString("Z", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Zero.
+ ///
+ public static string Zero {
+ get {
+ return ResourceManager.GetString("Zero", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Zero Scale.
+ ///
+ public static string ZeroScale {
+ get {
+ return ResourceManager.GetString("ZeroScale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sets the XYZ Scale to 0, effectively rendering it invisible. 
• You can undo this by inputing '1.0' in each of the fields..
+ ///
+ public static string ZeroScaleToolTip {
+ get {
+ return ResourceManager.GetString("ZeroScaleToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Z Position:.
+ ///
+ public static string ZPos {
+ get {
+ return ResourceManager.GetString("ZPos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Z Position of the selected actor.
+ ///• You may need to Freeze the animations of your actor to properly apply this in GPose..
+ ///
+ public static string ZPosToolTip {
+ get {
+ return ResourceManager.GetString("ZPosToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Z Rotation:.
+ ///
+ public static string ZRot {
+ get {
+ return ResourceManager.GetString("ZRot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Z Rotation:.
+ ///
+ public static string ZRot2 {
+ get {
+ return ResourceManager.GetString("ZRot2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Z Rotation of the selected joint..
+ ///
+ public static string ZRot2ToolTip {
+ get {
+ return ResourceManager.GetString("ZRot2ToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Modifies the Z Rotation of the selected actor.
+ ///• You may need to Freeze the animations of your actor to properly apply this in GPose.
• Both Rotation Sliders and Numerical direct input require Rotation to be frozen..
+ ///
+ public static string ZRotToolTip {
+ get {
+ return ResourceManager.GetString("ZRotToolTip", resourceCulture);
+ }
+ }
+ }
+}
diff --git a/ConceptMatrix/Resx/UIStringsContent.ja.resx b/ConceptMatrix/Resx/UIStringsContent.ja.resx
new file mode 100644
index 0000000..71d7323
--- /dev/null
+++ b/ConceptMatrix/Resx/UIStringsContent.ja.resx
@@ -0,0 +1,393 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ アニメーション速度:
+
+
+ 体型:
+
+
+ バストサイズ:
+
+
+ バストXスケール:
+
+
+ バストYスケール:
+
+
+ バストZスケール:
+
+
+ カメラビューX:
+
+
+ カメラビューY:
+
+
+ カメラビューZ:
+
+
+ カメラX位置:
+
+
+ カメラY位置:
+
+
+ カメラZ位置:
+
+
+ クラン:
+
+
+ データ経路:
+
+
+ 耳/筋肉/尾のサイズ:
+
+
+ 耳/尾のスケール:
+
+
+ 耳/尾のタイプ:
+
+
+ 眉毛タイプ:
+
+
+ 目の色(左):
+
+
+ 目の色(右);
+
+
+ 目のタイプ:
+
+
+ フェイスペイント/タトゥー:
+
+
+ フェイスペイントカラー:
+
+
+ 顔の特徴:
+
+
+ アニメーションを強制する:
+
+
+ フリーカンパニータグ:
+
+
+ フリーズPos
+
+
+ 凍結腐敗
+
+
+ 性別:
+
+
+ 髪の色:
+
+
+ 髪型:
+
+
+ ヘッドタイプ:
+
+
+ 高さ:
+
+
+ ハイライト:
+
+
+ アイドルアニメーション:
+
+
+ 顎タイプ:
+
+
+ ジョブアイコン:
+
+
+ リムバル/タトゥーの色:
+
+
+ 唇の色/毛皮のパターン:
+
+
+ 顔のアニメーションをロック:
+
+
+ モデルリスト
+
+
+ モデルタイプ:
+
+
+ 口の種類:
+
+
+ 筋肉のトーン:
+
+
+ 名前:
+
+
+ 鼻のタイプ:
+
+
+ 全体の規模:
+
+
+ 人種:
+
+
+ 外観のランダム化
+
+
+ リアルタイムローテーション:
+
+
+ 相対XYZ位置:
+
+
+ 相対XYZ回転:
+
+
+ 回転スライダー:
+
+
+ スキネトン:
+
+
+ ターゲットアクターは???
+
+
+ タイトル:
+
+
+ 透明性:
+
+
+ 見る
+
+
+ 音声タイプ:
+
+
+ X位置:
+
+
+ X回転:
+
+
+ Y位置:
+
+
+ Y回転:
+
+
+ ゼロ
+
+
+ Z位置:
+
+
+ Z回転:
+
+
+ c1001-ルガディンメス
+
+
+ c101-ヒューアの男性
+
+
+ c104-ヒュール男性(子供)
+
+
+ c1101-ララフェル男性
+
+
+ c1201-ララフェルメス
+
+
+ c1301-アウラ男性
+
+
+ c1401-アウラ女性
+
+
+ c1501-ロスガー男性
+
+
+ c1801-ビエラメス
+
+
+ c201-ヒューア女性
+
+
+ c301-ハイランダー男性
+
+
+ c401-ハイランダー女性
+
+
+ c501-エレゼン男性
+
+
+ c504-エレゼン男性(子供)
+
+
+ c601-エレゼン女性
+
+
+ c604-エレゼン女性(子供)
+
+
+ c701-ミコッテマレ
+
+
+ c801-ミコッテ女性
+
+
+ c804-ミコッテ女性(子供)
+
+
+ c901-ルガディン男性
+
+
+ c9104-パジャル男性
+
+
+ c9204-パジャル女性
+
+
+ フリーカンパニータグ
+
+
+ 名前
+
+
+ 日本語
+
+
\ No newline at end of file
diff --git a/ConceptMatrix/Resx/UIStringsContent.resx b/ConceptMatrix/Resx/UIStringsContent.resx
new file mode 100644
index 0000000..9d58a6e
--- /dev/null
+++ b/ConceptMatrix/Resx/UIStringsContent.resx
@@ -0,0 +1,1263 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Anim Speed:
+
+
+ Body Type:
+
+
+ Bust Size:
+
+
+ Bust X Scale:
+
+
+ Bust Y Scale:
+
+
+ Bust Z Scale:
+
+
+ Camera View X:
+
+
+ Camera View Y:
+
+
+ Camera View Z:
+
+
+ Camera X Pos:
+
+
+ Camera Y Pos:
+
+
+ Camera Z Pos:
+
+
+ Clan:
+
+
+ Data Path:
+
+
+ Ear/Muscle/Tail Size:
+
+
+ Ear/Tail Scale:
+
+
+ Ear/Tail Type:
+
+
+ Eyebrows Type:
+
+
+ Eye Color (Left):
+
+
+ Eye Color (Right);
+
+
+ Eyes Type:
+
+
+ Face Paint/Tattoo:
+
+
+ Face Paint Color:
+
+
+ Facial Features:
+
+
+ Force Anim:
+
+
+ Free Company Tag:
+
+
+ Freeze Pos
+
+
+ Freeze Rot
+
+
+ Gender:
+
+
+ Hair Color:
+
+
+ Hairstyle:
+
+
+ Head Type:
+
+
+ Height:
+
+
+ Highlights:
+
+
+ Idle Anim:
+
+
+ Jaw Type:
+
+
+ Job Icon:
+
+
+ Limbal/Tattoo Color:
+
+
+ Lips Color/Fur Pattern:
+
+
+ Lock Facial Animation:
+
+
+ Model List
+
+
+ Model Type:
+
+
+ Mouth Type:
+
+
+ Muscle Tone:
+
+
+ Name:
+
+
+ Nose Type:
+
+
+ Overall Scale:
+
+
+ Race:
+
+
+ Randomize Appearance
+
+
+ Realtime Rotation:
+
+
+ Relative XYZ Pos:
+
+
+ Relative XYZ Rot:
+
+
+ Rotation Sliders:
+
+
+ Skintone:
+
+
+ Targeted Actor is ???
+
+
+ Title:
+
+
+ Transparency:
+
+
+ View
+
+
+ Voice Type:
+
+
+ X Position:
+
+
+ X Rotation:
+
+
+ Y Position:
+
+
+ Y Rotation:
+
+
+ Zero
+
+
+ Z Position:
+
+
+ Z Rotation:
+
+
+ c1001 - Roegadyn Female
+
+
+ c101 - Hyur Male
+
+
+ c104 - Hyur Male (Child)
+
+
+ c1101 - Lalafell Male
+
+
+ c1201 - Lalafell Female
+
+
+ c1301 - Au Ra Male
+
+
+ c1401 - Au Ra Female
+
+
+ c1501 - Hrothgar Male
+
+
+ c1801 - Viera Female
+
+
+ c201 - Hyur Female
+
+
+ c301 - Highlander Male
+
+
+ c401 - Highlander Female
+
+
+ c501 - Elezen Male
+
+
+ c504 - Elezen Male (Child)
+
+
+ c601 - Elezen Female
+
+
+ c604 - Elezen Female (Child)
+
+
+ c701 - Miqo'te Male
+
+
+ c801 - Miqo'te Female
+
+
+ c804 - Miqo'te Female (Child)
+
+
+ c901 - Roegadyn Male
+
+
+ c9104 - Padjal Male
+
+
+ c9204 - Padjal Female
+
+
+ Free Company Tag
+
+
+ Name
+
+
+ EN
+
+
+ About
+
+
+ Actor Data
+
+
+ Displays the list of targetable entities in the area around you.
+• This list is populated based on distance from the player, and can potentially shift if any entities change positions, including minions.
+
+
+ Actor Properties
+
+
+ Actor Refresh
+
+
+ Refresh the selected actor, reloading it based on the changes you've made.
+
+
+ Actor Scale
+
+
+ Advanced
+
+
+ Always On Top
+
+
+ Modifies the Animation Speed of the selected actor.
+
+
+ Apply
+
+
+ Array of Bytes
+
+
+ Contains data about the selected Entity.
+• You can copy-paste data into this field and hit Apply.
+
+
+ B
+
+
+ Base
+
+
+ Blue:
+
+
+ Blue Glow:
+
+
+ Body:
+
+
+ Changes the Body Type of the selected actor.
+
+
+ Allows you to equip any bodypiece on the selected actor.
+
+
+ Brightness:
+
+
+ Changes the Bust Size of the selected actor.
+
+
+ Modifies the X Scale of the selected actors Bust.
+• This option is Female only.
+
+
+ Modifies the Y Scale of the selected actors Bust.
+• This option is Female only.
+
+
+ Modifies the Z Scale of the selected actors Bust.
+• This option is Female only.
+
+
+ Changes the Clan of the selected actor.
+
+
+ Changes the Data Path of the selected entity.
+•This will allow you use the animations of other Races or Genders.
+• Does not require an Actor Refresh, and can be used in and out of GPose.
+• The entity's skeleton will be morphed to fit the selected race. This stretching or shrinking is unavoidable.
+• You can use Actor Refresh if you want to become an abomination for fun.
+
+
+ Discord
+
+
+ Drenched:
+
+
+ Gives the selected entity a much more pronounced wetness effect.
+• Same as Wet, this effect goes away over time.
+
+
+ Dyes
+
+
+ Changes the Ear, Muscle, and Tail Size of the selected actor.
+
+
+ Ears:
+
+
+ Allows you to equip any earrings on the selected actor.
+
+
+ Modifies the Ear and Tail Scale of the selected actor.
+
+
+ Changes the Ear and Tail of the selected actor.
+
+
+ Entity Type:
+
+
+ For Advanced Users Only!
+• This will change the Entity type of the selected entity.
+• This can lead to unpredictable and unwanted behavior for some entities.
+• Changing some NPCs to Type 1 will allow them to be targetable in GPose.
+
+
+ Equipment
+
+
+ Changes the Eyebrows Type of the selected actor.
+
+
+ Changes the Left Eye Color of the selected actor.
+
+
+ Changes the Right Eye Color of the selected actor.
+
+
+ Changes the Eyes Type of the selected actor.
+
+
+ Changes the Face Paint Color of the selected actor.
+
+
+ Changes the Face Paint and Tattoos of the selected actor.
+
+
+ Changes the Facial Features of the selected actor.
+
+
+ Feet:
+
+
+ Allows you to equip any footwear on the selected actor.
+
+
+ Reload Process
+
+
+ Reload the Final Fantasy XIV process.
+
+
+ Forces the selected entity to perform an animation.
+• This can only be used in GPose.
+• In order to use this, you need to do a non-looping emote, suchs as /wave before entering GPose.
+• Some animations have a specific race/gender requirement in order to perform. You may need to use a different Data Path if your character is just twitching.
+• Does not work on NPCs!
+
+
+ Modifies the Free Company Tag of the selected actor.
+
+
+ Freezes the position of the selected entity
+• This is useful for moving entities in GPose, as it will prevent them from snapping back to their original position when their emote changes or you use face camera.
+• Make sure to press this button again before clicking or tabbing to a new entity, or it will snap them to the same position.
+
+
+ Freezes the rotation of the selected entity.
+• This is useful in conjunction with Freeze Pos for preserving the position and rotation of an entity in GPose.
+• You can use this along with the 'Face Camera' toggle in-game (Default: Space Bar) to turn the entity's head without turning the entire body.
+• Same as Freeze Pos, make sure to toggle off Freeze Rot before switching entities in GPose.
+• Required for using Numerical direct input or Rotation Sliders.
+
+
+ G
+
+
+ Changes the Gender of the selected actor.
+
+
+ GPose Mode:
+
+
+ Allows for certain values such as XYZ Position, Rotation and Animation to be changed for your currently selected entity in GPose.
+• GPose mode and Target Mode both toggle on at the same time. Make sure not to have Target Mode already toggled on, or it will toggle off instead.
+
+
+ Green:
+
+
+ Green Glow:
+
+
+ Hair Color
+
+
+ Changes the Hair Color of the selected actor.
+
+
+ Changes the Hairstyle of the selected actor.
+
+
+ Hands:
+
+
+ Allows you to equip any handwear on the selected actor.
+
+
+ Head:
+
+
+ Allows you to equip any headpiece on the selected actor.
+
+
+ Changes the Head Type of the selected actor.
+
+
+ Changes the Height of the selected actor.
+
+
+ Toggles Highlights for the selected actor.
+
+
+ Highlights Color
+
+
+ Changes the Highlights Color of the selected actor.
+
+
+ Changes the Idle Animation of the selected entity.
+• This can be used both in and out of GPose.
+• If you plan to use this in GPose, you will need to sit/stand, then use /cpose until your Idle Anim reads.
+• This can be used on Pets, Minions, Chocobos and most NPCs!
+
+
+ Changes the Jaw Type of the selected actor.
+
+
+ Changes the Job Icon of the selected party member in your party list.
+
+
+ Left Eye Color
+
+
+ Left Ring:
+
+
+ Allows you to equip any ring on the selected actors left hand.
+
+
+ Legs:
+
+
+ Allows you to equip any leggings on the selected actor.
+
+
+ Changes the Limbal Ring and Tattoo Color of the selected actor.
+
+
+ Limbal Ring / Tattoos Color
+
+
+ Changes the Lips Color and Fur Pattern of the selected actor.
+
+
+ Lips Color
+
+
+ Load Gearset
+
+
+ Load Appearance
+
+
+ Load Appearance from a user-generated JSON file.
+•You can load data you have saved from the Character Creator in-game using the 'Load .DAT' option.
+
+
+ Load State
+
+
+ Reverts back to your 'Backup' state.
+
+
+ Locks the Facial Animation of the selected actor.
+• To properly lock the facial animation of the selected actor, you need to toggle this on, freeze the option, and then set Anim Speed to Zero.
+
+
+ Main Hand:
+
+
+ Main Hand Color
+
+
+ Main Hand Scale
+
+
+ Controls the XYZ Scale of the entity's main hand weapon.
• This can be used to resize main hand props as well, but does not affect the size of 'vfx items' that appear temporarily during certain emotes, such as the Tomestone.
+
+
+ Allows you to equip any weapon on the selected actor.
• If you want their hands to be empty, either equip the 'Emperor's New Fists', or use Main Hand Scale and/or Off Hand Scale in the Right Pane.
+
+
+ Model ID
+
+
+ Opens a flyout menu on the right side that allows you to search for Monsters, Demi-Humans, Prop Entities and Entity-Based Effects.
+• Some NPCs are found under this selection because they are classified as Demi-Humans, such as Beast Tribes, Zenos, Thordan/Knights, etc.
+• If you become invisible after changing to a Demi-Human, change all of your Equipment to Base 0, Variant 0. If this doesn't work, try 1,0 or 1,1.
+
+
+ Changes the Model Type of the selected actor.
+
+
+ Changes the Mouth Type of the selected actor.
+
+
+ Modifies the Muscle Tone of the selected actor.
+
+
+ Modifies the display name of the selected actor.
+
+
+ Neck:
+
+
+ Allows you to equip any necklace on the selected actor.
+
+
+ Changes the Nose Type of the selected actor.
+
+
+ Model:
+
+
+ NPC Outfits & Appearances
+
+
+ Opens a fly-out search window on the right that allows you to search for NPCs by name. 
• You will need to use Actor Refresh after clicking an entry to assume their appearance. 
• Some NPCs, such as beast tribes, Zenos and a few others are not in this section because they are classified as Demi-Humans. They can be found by searching Model Type on the first tab.
+
+
+ Off Hand:
+
+
+ Off Hand Color
+
+
+ Off Hand Scale
+
+
+ Controls the XYZ Scale of the entity's off hand weapon.
• This affects equipment such as a Shield, Quiver, Aetherpack, Sleeve, Katana Sheath, Focus and Left Hand Dagger or Fist.
+
+
+ Allows you to equip an off hand weapon. 
• In order to find an applicable off hand (except for shields), you need to search for the main hand equipment using the off hand 'View' button. For example to find a Sheath or Quiver, you need to search for the Katana or Bow that goes with it.
+
+
+ Modifies the Overall Scale of the selected actor.
+
+
+ Posing Matrix
+
+
+ R
+
+
+ Changes the Race of the selected actor.
+
+
+ Will create a random appearance.
+
+
+ Use your mouse buttons to control the cube.
+• All rotations are relative to the direction that the entity is currently facing.
+• RMB controls X-axis rotation.
+• LMB controls Y-axis rotation.
+• MMB controls Z-axis rotation.
+
+
+ Red:
+
+
+ Red Glow:
+
+
+ This toggle will make all XYZ movements relative to the entity being targeted, and not absolute based on the gameworld.
+• This setting is defaulted to on, and its state is saved between sessions.
+
+
+ This toggle will make all XYZ rotations relative to the entity being targeted, and not absolute based on the gameworld.
+• This setting is defaulted to on, and its state is saved between sessions.
+• Only affects the Realtime Rotation Cube.
+
+
+ Reset
+
+
+ Right Eye Color
+
+
+ Right Ring:
+
+
+ Allows you to equip any ring on the selected actors right hand.
+
+
+ This toggle will switch between Rotation Sliders and Numerical direct input.
+•This setting is defaulted to on, and its state is saved between sessions.
+• Turning it off will turn the XYZ Rotation sliders into numerical values.
+• Each input will accept a value between 0 and 360.
+• Both Rotation Sliders and Numerical direct input require Rotation to be frozen.
+
+
+ Save Gearset
+
+
+ Save Appearance
+
+
+ Save Appearance to a JSON file.
+
+
+ Save State
+
+
+ Creates a 'Backup' state that you can load later.
+
+
+ Skin Color
+
+
+ Changes the Skintone of the selected actor.
+
+
+ GPose
+Status Effects:
+
+
+ Allows you to apply non-standard status VFX to entities in GPose.
+1. Activate one of the basic Statuses in the GPose menu (Such as Pyretic)
+2. Select the new VFX you want from the drop-down menu.
+3. Remove the Status you selected using the GPose menu.
+• To choose a new effect or remove the current one, hit Reset or overwrite it with another Status (Such as Deep Freeze).
+
+
+ Target Mode:
+
+
+ Allows you to change values for your selected target without using the Entity List.
+•This is handy for busy areas where the Entity List constantly shifting. You will need to uncheck this and use the normal method to apply the changes you make, though.
+
+
+ Changes the Title of the selected actor.
+
+
+ Transformation Data
+
+
+ Modifies the transparency of the selected entity.
+• Reducing the transparency of an actor does not affect their main or offhand weapons. You can set the XYZ scale of their weapons to 0 in the Equipment tab.
+• Setting this to 0 for an entity in GPose can cause the system to forget that they're targetable. If you plan to still use them, set it to 0.03.
+
+
+ Twitter
+
+
+ Unfreeze All
+
+
+ Uncheck and unfreeze all selections.
+
+
+ Variant
+
+
+ Visual Effects
+
+
+ Changes the Voice Type of the selected actor.
+
+
+ Wet:
+
+
+ Gives the target entity the effect that you get from being in water, or in rain.
+• This effect will wear off over time if toggled off.
+
+
+ World
+
+
+ Wrists:
+
+
+ Allows you to equip any bracelet on the selected actor.
+
+
+ X:
+
+
+ Modifies the X Position of the selected actor.
+• You may need to Freeze the animations of your actor to properly apply this in GPose.
+
+
+ Modifies the X Rotation of the selected actor.
+• You may need to Freeze the animations of your actor to properly apply this in GPose.
+• Both Rotation Sliders and Numerical direct input require Rotation to be frozen.
+
+
+ Y:
+
+
+ Modifies the Y Position of the selected actor.
+• You may need to Freeze the animations of your actor to properly apply this in GPose.
+
+
+ Modifies the Y Rotation of the selected actor.
+• You may need to Freeze the animations of your actor to properly apply this in GPose.
+• Both Rotation Sliders and Numerical direct input require Rotation to be frozen.
+
+
+ Z:
+
+
+ Zero Scale
+
+
+ Sets the XYZ Scale to 0, effectively rendering it invisible. 
• You can undo this by inputing '1.0' in each of the fields.
+
+
+ Modifies the Z Position of the selected actor.
+• You may need to Freeze the animations of your actor to properly apply this in GPose.
+
+
+ Modifies the Z Rotation of the selected actor.
+• You may need to Freeze the animations of your actor to properly apply this in GPose.
• Both Rotation Sliders and Numerical direct input require Rotation to be frozen.
+
+
+ Arms:
+
+
+ Breasts:
+
+
+ Calves:
+
+
+ Cheeks:
+
+
+ Chest:
+
+
+ Clavicles:
+
+
+ Elbows:
+
+
+ Enable Editing:
+
+
+ Enable Physics:
+
+
+ Eyelids:
+
+
+ Eyes:
+
+
+ Face:
+
+
+ Finger Bones
+
+
+ Forearms:
+
+
+ Head Bones
+
+
+ Index Finger:
+
+
+ Index Joint:
+
+
+ Inner Brows:
+
+
+ Jaw:
+
+
+ Knees:
+
+
+ Left Arm:
+
+
+ Left Leg:
+
+
+ Lower Body Bones
+
+
+ Lower Earrings:
+
+
+ Lower Eyelids:
+
+
+ Lower Lip:
+
+
+ Middle Finger:
+
+
+ Middle Joint:
+
+
+ Mouth:
+
+
+ Nose:
+
+
+ Nostrils:
+
+
+ Outer Brows:
+
+
+ Pelvis:
+
+
+ Pinky Finger:
+
+
+ Pinky Joint:
+
+
+ Right Arm:
+
+
+ Right Leg:
+
+
+ Ring Finger:
+
+
+ Ring Joint:
+
+
+ Settings
+
+
+ Shoulders:
+
+
+ Sternum:
+
+
+ Tail:
+
+
+ Tail Joints:
+
+
+ Thumb:
+
+
+ Thumb Joint:
+
+
+ Toes:
+
+
+ Torso:
+
+
+ T-Pose Actor
+
+
+ Upper Body Bones
+
+
+ Upper Earrings:
+
+
+ Upper Lip:
+
+
+ Viera Lower Ears:
+
+
+ Viera Upper Ears:
+
+
+ Waist:
+
+
+ X Rotation:
+
+
+ Modifies the X Rotation of the selected joint.
+
+
+ Y Rotation:
+
+
+ Modifies the Y Rotation of the selected joint.
+
+
+ Z Rotation:
+
+
+ Modifies the Z Rotation of the selected joint.
+
+
+ Freeze BGM
+
+
+ BGM ID
+
+
+ Cam Angle X:
+
+
+ Cam Angle Y:
+
+
+ Camera Settings
+
+
+ Cam Rotation:
+
+
+ Cam Up/Down:
+
+
+ Cam Y Max:
+
+
+ Cam Y Min:
+
+
+ Colorfulness:
+
+
+ Colorfulness 2:
+
+
+ Contrast:
+
+
+ Contrast 2:
+
+
+ Current Zoom:
+
+
+ Default Time
+
+
+ Exposure:
+
+
+ Filmic:
+
+
+ Filters
+
+
+ Field of View:
+
+
+ Field of View 2:
+
+
+ Freeze All
+
+
+ Gamma:
+
+
+ Group Pose Filters
+
+
+ HDR:
+
+
+ Load
+
+
+ Lock Time:
+
+
+ Max Zoom:
+
+
+ Min Zoom:
+
+
+ Prop
+View
+
+
+ Refresh
+
+
+ Render Cycle
+
+
+ Remove Character Render Limit:
+
+
+ Render Toggle Switch
+
+
+ Reset to Default
+
+
+ Save
+
+
+ S-HDR:
+
+
+ Time Toggle Switch
+
+
+ Time Control:
+
+
+ Adjusts the current time for the zone. 
• Using Time Control while in GPose with 'Freeze Time/Weather' toggled on will cycle the phases of the Moon.
+
+
+ Attempts to prevent the time set using Time Control from changing.
• This is imprecise, and will still shift slightly over long periods of time.
+
+
+ Vibrance:
+
+
+ Weather:
+
+
+ Force Weather:
+
+
+ Controls the current weather for your zone.
This method uses instant transitions, and will change as soon as you select a weather from the drop down menu.
+
+
+ Weather Select
+
+
+ Controls the current weather for your zone. 
This method uses natural transitions and may a bit of time to take effect.
+
+
\ No newline at end of file
diff --git a/ConceptMatrix/Utility/ExdCsvReader.cs b/ConceptMatrix/Utility/ExdCsvReader.cs
index 459296c..24417ec 100644
--- a/ConceptMatrix/Utility/ExdCsvReader.cs
+++ b/ConceptMatrix/Utility/ExdCsvReader.cs
@@ -529,6 +529,7 @@ public void MakeItemList()
}
catch (Exception)
{
+ throw;
}
}
}
diff --git a/ConceptMatrix/Utility/SaveSettings.cs b/ConceptMatrix/Utility/SaveSettings.cs
index 1852323..ed05611 100644
--- a/ConceptMatrix/Utility/SaveSettings.cs
+++ b/ConceptMatrix/Utility/SaveSettings.cs
@@ -63,6 +63,7 @@ public void Save()
public bool RotationSliders { get; set; } = true;
public bool AdvancedMove { get; set; } = true;
public bool AltRotate { get; set; } = true;
+ public string CultureSet { get; set; } = "";
public string CharacterAoBBytes { get; set; } = "";
public string EquipmentBytes { get; set; } = "";
public WepTuple MainHandQuads { get; set; }
diff --git a/ConceptMatrix/ViewModel/CharacterDetailsViewModel.cs b/ConceptMatrix/ViewModel/CharacterDetailsViewModel.cs
index ef93839..aa248ca 100644
--- a/ConceptMatrix/ViewModel/CharacterDetailsViewModel.cs
+++ b/ConceptMatrix/ViewModel/CharacterDetailsViewModel.cs
@@ -297,13 +297,11 @@ private void Work()
{
if (!InGpose)
{
- CharacterDetails.GposeMode = false;
- m.writeMemory(GAS(baseAddr, c.EntityType), "byte", "0x02");
+ m.writeMemory(GAS(MemoryManager.Add(MemoryManager.Instance.BaseAddress, eOffset), c.EntityType), "byte", "0x02");
Task.Delay(1500).Wait();
- m.writeMemory(GAS(baseAddr, c.EntityType), "byte", "0x01");
+ m.writeMemory(GAS(MemoryManager.Add(MemoryManager.Instance.BaseAddress, eOffset), c.EntityType), "byte", "0x01");
CharacterDetails.GposeMode = true;
- Task.Delay(50).Wait();
- m.writeMemory(GAS(baseAddr, c.EntityType), "byte", "0x01");
+ m.writeMemory(GAS(MemoryManager.Instance.GposeAddress, c.EntityType), "byte", "0x01");
InGpose = true;
}
}
diff --git a/ConceptMatrix/Views/CharacterDetailsView.xaml b/ConceptMatrix/Views/CharacterDetailsView.xaml
index a15ea21..79c73cd 100644
--- a/ConceptMatrix/Views/CharacterDetailsView.xaml
+++ b/ConceptMatrix/Views/CharacterDetailsView.xaml
@@ -9,6 +9,7 @@
xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
x:Class="ConceptMatrix.Views.CharacterDetailsView"
+ xmlns:resx="clr-namespace:ConceptMatrix.Resx"
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
TextElement.FontWeight="Medium"
TextElement.FontSize="13"
@@ -27,11 +28,11 @@
-
-
+
+
-
+
@@ -79,217 +80,217 @@
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -304,80 +305,80 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
diff --git a/ConceptMatrix/Views/CharacterDetailsView2.xaml b/ConceptMatrix/Views/CharacterDetailsView2.xaml
index b30ba71..c1faa9b 100644
--- a/ConceptMatrix/Views/CharacterDetailsView2.xaml
+++ b/ConceptMatrix/Views/CharacterDetailsView2.xaml
@@ -6,337 +6,338 @@
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"
xmlns:Views="clr-namespace:ConceptMatrix.Views"
+ xmlns:resx="clr-namespace:ConceptMatrix.Resx"
TextElement.FontSize="13.25"
mc:Ignorable="d" d:DesignWidth="1115" Height="530">
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
-
-
+
+
+
-
-
+
+
-