forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathletter_spacing.rs
More file actions
275 lines (257 loc) · 9.99 KB
/
letter_spacing.rs
File metadata and controls
275 lines (257 loc) · 9.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
//! This example demonstrates the `LetterSpacing` component in Bevy's text system.
//!
//! Use the left and right arrow keys to adjust the letter spacing of the text.
use bevy::prelude::*;
use bevy::text::{LetterSpacing, RemSize};
#[derive(Component)]
struct LetterSpacingLabel;
#[derive(Component)]
struct AnimatedLetterSpacing;
#[derive(Resource, Default)]
enum SpacingMode {
#[default]
Px,
Rem,
}
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.init_resource::<SpacingMode>()
.add_systems(Startup, setup)
.add_systems(Update, (update_letter_spacing, toggle_mode))
.run();
}
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
commands.spawn(Camera2d);
let font = asset_server.load("fonts/FiraSans-Bold.ttf");
commands
.spawn(Node {
width: percent(100),
height: percent(100),
..default()
})
.with_children(|parent| {
parent
.spawn(Node {
width: percent(100),
height: percent(100),
align_items: AlignItems::Center,
padding: UiRect::axes(vw(5), vh(10)),
row_gap: vh(6),
flex_direction: FlexDirection::Column,
..default()
})
.with_children(|parent| {
parent.spawn((
Text::new("HELLO"),
Underline,
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(6.0),
..default()
},
Node {
padding: vh(2).bottom(),
..default()
},
));
// Left justified
parent
.spawn(Node {
flex_direction: FlexDirection::Column,
width: percent(100.0),
..default()
})
.with_children(|parent| {
parent.spawn((
Text::new("Justify::Left"),
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(2.0),
..default()
},
));
parent.spawn((
Text::new("letter spacing"),
AnimatedLetterSpacing,
TextLayout::new_with_justify(Justify::Left),
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(6.0),
..default()
},
Node {
width: percent(100.0),
..default()
},
// Custom `LetterSpacing` can be added to any text entity as a component
LetterSpacing::Px(0.0),
));
});
// Center justified
parent
.spawn(Node {
flex_direction: FlexDirection::Column,
width: percent(100.0),
..default()
})
.with_children(|parent| {
parent.spawn((
Text::new("Justify::Center"),
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(2.0),
..default()
},
));
parent.spawn((
Text::new("letter spacing"),
AnimatedLetterSpacing,
TextLayout::new_with_justify(Justify::Center),
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(6.0),
..default()
},
Node {
width: percent(100.0),
..default()
},
// Custom `LetterSpacing` can be added to any text entity as a component
LetterSpacing::Px(0.0),
));
});
// Right justified
parent
.spawn(Node {
flex_direction: FlexDirection::Column,
width: percent(100.0),
..default()
})
.with_children(|parent| {
parent.spawn((
Text::new("Justify::Right"),
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(2.0),
..default()
},
));
parent.spawn((
Text::new("letter spacing"),
AnimatedLetterSpacing,
TextLayout::new_with_justify(Justify::Right),
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(6.0),
..default()
},
Node {
width: percent(100.0),
..default()
},
// Custom `LetterSpacing` can be added to any text entity as a component
LetterSpacing::Px(0.0),
));
});
});
parent.spawn((
Text::new("LetterSpacing::Px(0.0)"),
LetterSpacingLabel,
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(3.0),
..default()
},
Node {
position_type: PositionType::Absolute,
bottom: vh(2.0),
left: vw(2.0),
..default()
},
));
parent.spawn((
Text::new("← → to adjust Space to toggle Px / Rem"),
TextFont {
font: font.clone().into(),
font_size: FontSize::Vh(2.5),
..default()
},
Node {
position_type: PositionType::Absolute,
bottom: vh(2.0),
right: vw(2.0),
..default()
},
));
});
}
fn toggle_mode(
keyboard: Res<ButtonInput<KeyCode>>,
mut mode: ResMut<SpacingMode>,
rem_size: Res<RemSize>,
mut query: Query<&mut LetterSpacing, With<AnimatedLetterSpacing>>,
mut label_query: Query<&mut Text, With<LetterSpacingLabel>>,
) {
if !keyboard.just_pressed(KeyCode::Space) {
return;
}
for mut spacing in &mut query {
let new_spacing = match *spacing {
LetterSpacing::Px(v) => {
*mode = SpacingMode::Rem;
LetterSpacing::Rem(v / rem_size.0)
}
LetterSpacing::Rem(v) => {
*mode = SpacingMode::Px;
LetterSpacing::Px(v * rem_size.0)
}
};
*spacing = new_spacing;
}
for mut text in &mut label_query {
match *mode {
SpacingMode::Px => {
if let Some(LetterSpacing::Px(v)) = query.iter().next().copied() {
text.0 = format!("LetterSpacing::Px({:.1})", v);
}
}
SpacingMode::Rem => {
if let Some(LetterSpacing::Rem(v)) = query.iter().next().copied() {
text.0 = format!("LetterSpacing::Rem({:.2})", v);
}
}
}
}
}
fn update_letter_spacing(
keyboard: Res<ButtonInput<KeyCode>>,
mut query: Query<&mut LetterSpacing, With<AnimatedLetterSpacing>>,
mut label_query: Query<&mut Text, With<LetterSpacingLabel>>,
) {
let delta = if keyboard.pressed(KeyCode::ArrowRight) {
0.5
} else if keyboard.pressed(KeyCode::ArrowLeft) {
-0.5
} else {
return;
};
for mut spacing in &mut query {
match *spacing {
LetterSpacing::Px(current) => {
let new_value = (current + delta).clamp(-100.0, 100.0);
*spacing = LetterSpacing::Px(new_value);
for mut text in &mut label_query {
text.0 = format!("LetterSpacing::Px({:.1})", new_value);
}
}
LetterSpacing::Rem(current) => {
let new_value = (current + delta * 0.1).clamp(-10.0, 10.0);
*spacing = LetterSpacing::Rem(new_value);
for mut text in &mut label_query {
text.0 = format!("LetterSpacing::Rem({:.2})", new_value);
}
}
}
}
}