@@ -16,14 +16,14 @@ public XATWindow(XATPlugin plugin) : base($" {XATPlugin.PluginName} - Attention!
16
16
17
17
SizeConstraints = new WindowSizeConstraints
18
18
{
19
- MinimumSize = new Vector2 ( 520 , 265 ) ,
20
- MaximumSize = new Vector2 ( 520 , 265 )
19
+ MinimumSize = new Vector2 ( 520 , 360 ) ,
20
+ MaximumSize = new Vector2 ( 520 , 360 )
21
21
} ;
22
22
}
23
23
24
24
public override void Draw ( )
25
25
{
26
- var segmentSize = ImGui . GetWindowSize ( ) . X / 3.45f ;
26
+ var segmentSize = ImGui . GetWindowSize ( ) . X / 4.5f ;
27
27
var buttonSize = new Vector2 ( segmentSize , ImGui . GetTextLineHeight ( ) * 1.8f ) ;
28
28
29
29
using ( var textGroup = ImRaii . Group ( ) )
@@ -32,20 +32,24 @@ public override void Draw()
32
32
{
33
33
var text = $ """
34
34
35
- The XAT Plugin has been merged with Brio 0.4.0!
35
+ The XAT Plugin has been merged into Brio 0.4.0!
36
36
37
37
Once you have installed Brio you can find the XAT Cutscene Control
38
38
under the `Advanced Animation Control` Window, found by clicking
39
39
the 'point up-right' button on the Animation Control Tab!
40
40
41
- For additional help, you may DM me on Twitter/Discord or, join the Discord.
41
+ For additional help, you can view the help page,
42
+ you may DM me on Twitter/Discord or, join the Discord.
43
+
44
+ After you have installed Brio, please uninstall the XAT plugin!
42
45
43
46
Thank You!
44
47
45
48
49
+
46
50
""" ;
47
51
48
- ImGui . PushTextWrapPos ( segmentSize * 3 ) ;
52
+ ImGui . PushTextWrapPos ( segmentSize * 4 ) ;
49
53
ImGui . TextWrapped ( text ) ;
50
54
ImGui . PopTextWrapPos ( ) ;
51
55
}
@@ -71,6 +75,12 @@ Thank You!
71
75
Process . Start ( new ProcessStartInfo { FileName = "https://twitter.com/MiniatureMoosey" , UseShellExecute = true } ) ;
72
76
ImGui . PopStyleColor ( ) ;
73
77
ImGui . SameLine ( ) ;
78
+
79
+ ImGui . PushStyleColor ( ImGuiCol . Button , new Vector4 ( 110 , 84 , 148 , 255 ) / 255 ) ;
80
+ if ( ImGui . Button ( "View Help page" , buttonSize ) )
81
+ Process . Start ( new ProcessStartInfo { FileName = "https://etheirys-tools.gitbook.io/brio" , UseShellExecute = true } ) ;
82
+ ImGui . PopStyleColor ( ) ;
83
+ ImGui . SameLine ( ) ;
74
84
}
75
85
}
76
86
}
0 commit comments