• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

djeedai / bevy_hanabi / 8129319978
66%

Build:
DEFAULT BRANCH: main
Ran 03 Mar 2024 09:51AM UTC
Jobs 1
Files 25
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

03 Mar 2024 09:47AM UTC coverage: 55.704% (-0.2%) from 55.867%
8129319978

push

github

web-flow
Improve serialization format of `EffectAsset` (#294)

This change makes a few improvements to the serialized representation of
an `EffectAsset`:
- `LiteralExpr`, `ExprHandle`, and `Module` are now
  `#[serde(transparent)]`, which makes them less verbose.
- `VectorValue` is serialized as its glam math type representation,
  making it a lot more readable in text format (_e.g._ RON).

Before:

```
module: (
    expressions: [
        Literal((
            value: Vector((
                vector_type: (
                    elem_type: Float,
                    count: 3,
                ),
                storage: (1067030938, 3227307213, 1118770935, 0),
            )),
        )),
        Literal((
            value: Vector((
                vector_type: (
                    elem_type: Bool,
                    count: 2,
                ),
                storage: (0, 4294967295, 0, 0),
            )),
        )),
        Binary(
            op: Add,
            left: (
                index: 2,
            ),
            right: (
                index: 1,
            ),
        ),
    ],
),
```

After:

```
module: [
    Literal(Vector(Vec3((1.2, -3.45, 87.54485)))),
    Literal(Vector(BVec2((false, true)))),
    Binary(
        op: Add,
        left: 2,
        right: 1,
    ),
]
```

12 of 37 new or added lines in 1 file covered. (32.43%)

2964 of 5321 relevant lines covered (55.7%)

24.19 hits per line

Jobs
ID Job ID Ran Files Coverage
1 8129319978.1 03 Mar 2024 09:51AM UTC 0
55.7
GitHub Action Run
Source Files on build 8129319978
Detailed source file information is not available for this build.
  • Back to Repo
  • 9d8d81ff on github
  • Prev Build on main (#8124233195)
  • Next Build on main (#8161498802)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc