Skip to content

Commit

Permalink
chore: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nixon-voxell committed Sep 16, 2024
1 parent ab64e00 commit e908d17
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Empty file added CHANGELOG.md
Empty file.
2 changes: 0 additions & 2 deletions assets/typst/hello_world.typ
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#polygon(
fill: blue.transparentize(94%),
stroke: blue,
// closed: true,
(0%, 0%),
(0%, (calc.sin(animate) * wave_height) + -50%),
(10%, (calc.sin(animate + PI * 0.1) * wave_height) + -50%),
Expand All @@ -50,7 +49,6 @@
#polygon(
fill: red.transparentize(94%),
stroke: red,
// closed: true,
(0%, 0%),
(0%, (calc.cos(animate) * wave_height) + -50%),
(10%, (calc.cos(animate + PI * 0.1) * wave_height) + -50%),
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn setup(mut commands: Commands) {
}

fn main_func(
q_window: Query<Ref<Window>, (With<PrimaryWindow>, Changed<Window>)>,
q_window: Query<&Window, (With<PrimaryWindow>, Changed<Window>)>,
mut main_func: ResMut<MainFunc>,
time: Res<Time>,
) {
Expand Down

0 comments on commit e908d17

Please sign in to comment.