mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Update some tutorials.
This commit is contained in:
parent
1a1cbb5404
commit
8b156c7d58
3 changed files with 11 additions and 3 deletions
2
OtterGui
2
OtterGui
|
|
@ -1 +1 @@
|
|||
Subproject commit 750f7415d07334530ad12db10f3dd28fd7e1f130
|
||||
Subproject commit 1e0d04b90043faad979c3e7316a733870eb16108
|
||||
|
|
@ -71,6 +71,7 @@ public partial class ConfigWindow
|
|||
{
|
||||
if( Penumbra.Config.HideRedrawBar )
|
||||
{
|
||||
SkipTutorial( BasicTutorialSteps.Redrawing );
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,6 +44,14 @@ public partial class ConfigWindow
|
|||
Penumbra.Config.Save();
|
||||
} );
|
||||
|
||||
[MethodImpl( MethodImplOptions.AggressiveInlining )]
|
||||
public static void SkipTutorial( BasicTutorialSteps step )
|
||||
=> Tutorial.Skip( ( int )step, Penumbra.Config.TutorialStep, v =>
|
||||
{
|
||||
Penumbra.Config.TutorialStep = v;
|
||||
Penumbra.Config.Save();
|
||||
} );
|
||||
|
||||
public enum BasicTutorialSteps
|
||||
{
|
||||
GeneralTooltips,
|
||||
|
|
@ -88,8 +96,7 @@ public partial class ConfigWindow
|
|||
+ "The mod directory should be a short path - like 'C:\\FFXIVMods' - on your fastest available drive. Faster drives improve performance.\n\n"
|
||||
+ "The folder should be an empty folder no other applications write to." )
|
||||
.Register( "Initial Setup, Step 2: Enable Mods", "Do not forget to enable your mods in case they are not." )
|
||||
.Register( "Advanced Settings", "When you are just starting, you should leave this off.\n\n"
|
||||
+ "If you need to do any editing of your mods, you will have to turn it on later." )
|
||||
.Deprecated()
|
||||
.Register( "General Settings", "Look through all of these settings before starting, they might help you a lot!\n\n"
|
||||
+ "If you do not know what some of these do yet, return to this later!" )
|
||||
.Register( "Initial Setup, Step 3: Collections", "Collections are lists of settings for your installed mods.\n\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue