@@ -128,23 +128,23 @@ If you want to use an existing theme, add the DebugUI uss to the Style Sheets of
128128
129129### Label
130130
131- ![ img] ( docs/images/example-label.png )
131+ < img src = " https://github.com/AnnulusGames/DebugUI/blob/main/ docs/images/example-label.png" width = " 400 " >
132132
133133``` cs
134134builder .AddLabel (" Label" );
135135```
136136
137137### Button
138138
139- ![ img] ( docs/images/example-button.png )
139+ < img src = " https://github.com/AnnulusGames/DebugUI/blob/main/ docs/images/example-button.png" width = " 400 " >
140140
141141``` cs
142142builder .AddButton (" Button" , () => Debug .Log (" Hello!" ));
143143```
144144
145145### Field
146146
147- ![ img] ( docs/images/example-field.png )
147+ < img src = " https://github.com/AnnulusGames/DebugUI/blob/main/ docs/images/example-field.png" width = " 400 " >
148148
149149``` cs
150150float floatValue ;
@@ -161,7 +161,7 @@ builder.AddField("Read-Only Field", () => floatValue);
161161
162162### Slider
163163
164- ![ img] ( docs/images/example-slider.png )
164+ < img src = " https://github.com/AnnulusGames/DebugUI/blob/main/ docs/images/example-slider.png" width = " 400 " >
165165
166166``` cs
167167float floatValue ;
@@ -173,7 +173,7 @@ builder.AddSlider("Slider Int", 0, 100, () => intValue, x => intValue = x);
173173
174174### Progress Bar
175175
176- ![ img] ( docs/images/example-progress.png )
176+ < img src = " https://github.com/AnnulusGames/DebugUI/blob/main/ docs/images/example-progress.png" width = " 400 " >
177177
178178``` cs
179179float floatValue ;
@@ -183,7 +183,7 @@ builder.AddProgressBar("Progress", 0f, 1f, () => floatValue);
183183
184184### Image
185185
186- ![ img] ( docs/images/example-image.png )
186+ < img src = " https://github.com/AnnulusGames/DebugUI/blob/main/ docs/images/example-image.png" width = " 400 " >
187187
188188``` cs
189189Texture2D texture2D ;
@@ -199,7 +199,7 @@ builder.AddImage("Dynamic", () => spriteRenderer.sprite);
199199
200200### Foldout
201201
202- ![ img] ( docs/images/example-foldout.png )
202+ < img src = " https://github.com/AnnulusGames/DebugUI/blob/main/ docs/images/example-foldout.png" width = " 400 " >
203203
204204``` cs
205205float floatValue ;
0 commit comments