Skip to content

Commit

Permalink
fix scenes
Browse files Browse the repository at this point in the history
1. find and replace "Hsla" (vim :%s/Hsla//g )
2.
replace:
```
    "bevy_render::camera::clear_color::ClearColor": (Rgba(
      red: 0.0,
      green: 0.0,
      blue: 0.0,
      alpha: 1.0,
    )),
```
with:
```
    "bevy_render::camera::clear_color::ClearColor": (Hsla((
      hue: 0.0,
      saturation: 0.0,
      lightness: 0.0,
      alpha: 1.0,
    ))),
```
  • Loading branch information
tomara-x committed Jun 18, 2024
1 parent fc4e080 commit d20a5e6
Show file tree
Hide file tree
Showing 22 changed files with 12,163 additions and 4,170 deletions.
530 changes: 265 additions & 265 deletions assets/2mono

Large diffs are not rendered by default.

1,266 changes: 633 additions & 633 deletions assets/amara

Large diffs are not rendered by default.

98 changes: 49 additions & 49 deletions assets/ar

Large diffs are not rendered by default.

588 changes: 294 additions & 294 deletions assets/comfy-anger

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions assets/contains
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
(
resources: {
"bevy_render::camera::clear_color::ClearColor": (Rgba(
red: 0.0,
green: 0.0,
blue: 0.0,
"bevy_render::camera::clear_color::ClearColor": (Hsla((
hue: 0.0,
saturation: 0.0,
lightness: 0.0,
alpha: 1.0,
)),
"quartz::components::DefaultDrawColor": (Hsla(
))),
"quartz::components::DefaultDrawColor": ((
hue: 1.0,
saturation: 1.0,
lightness: 0.84,
alpha: 1.0,
)),
"quartz::components::DefaultDrawVerts": (4),
"quartz::components::HighlightColor": (Hsla(
"quartz::components::HighlightColor": ((
hue: 0.0,
saturation: 1.0,
lightness: 0.5,
alpha: 1.0,
)),
"quartz::components::ConnectionColor": (Hsla(
"quartz::components::ConnectionColor": ((
hue: 0.0,
saturation: 1.0,
lightness: 1.0,
alpha: 0.7,
)),
"quartz::components::CommandColor": (Hsla(
"quartz::components::CommandColor": ((
hue: 0.0,
saturation: 0.0,
lightness: 0.7,
Expand Down Expand Up @@ -54,7 +54,7 @@
z: 1.0,
),
),
"quartz::components::Col": (Hsla(
"quartz::components::Col": ((
hue: 1.0,
saturation: 1.0,
lightness: 0.84,
Expand Down Expand Up @@ -97,7 +97,7 @@
z: 1.0,
),
),
"quartz::components::Col": (Hsla(
"quartz::components::Col": ((
hue: 1.0,
saturation: 1.0,
lightness: 0.84,
Expand Down Expand Up @@ -136,7 +136,7 @@
z: 1.0,
),
),
"quartz::components::Col": (Hsla(
"quartz::components::Col": ((
hue: 1.0,
saturation: 1.0,
lightness: 0.84,
Expand Down Expand Up @@ -174,7 +174,7 @@
z: 1.0,
),
),
"quartz::components::Col": (Hsla(
"quartz::components::Col": ((
hue: 0.0,
saturation: 0.0,
lightness: 0.2,
Expand Down Expand Up @@ -208,7 +208,7 @@
z: 1.0,
),
),
"quartz::components::Col": (Hsla(
"quartz::components::Col": ((
hue: 0.0,
saturation: 0.0,
lightness: 0.8,
Expand Down Expand Up @@ -244,7 +244,7 @@
z: 1.0,
),
),
"quartz::components::Col": (Hsla(
"quartz::components::Col": ((
hue: 0.0,
saturation: 0.0,
lightness: 0.2,
Expand Down Expand Up @@ -278,7 +278,7 @@
z: 1.0,
),
),
"quartz::components::Col": (Hsla(
"quartz::components::Col": ((
hue: 0.0,
saturation: 0.0,
lightness: 0.8,
Expand Down
Loading

0 comments on commit d20a5e6

Please sign in to comment.