bevy/crates/bevy_core/src
TehPers deb9f23667 Implement Byteable and RenderResource for [T; N] (#1872)
Implements `Byteable` and `RenderResource` for any array containing `Byteable` elements. This allows `RenderResources` to be implemented on structs with arbitrarily-sized arrays, among other things:

```rust
#[derive(RenderResources, TypeUuid)]
#[uuid = "2733ff34-8f95-459f-bf04-3274e686ac5f"]
struct Foo {
    buffer: [i32; 256],
}
```
2021-04-14 22:20:25 +00:00
..
time Reliable change detection (#1471) 2021-03-19 17:53:26 +00:00
bytes.rs Implement Byteable and RenderResource for [T; N] (#1872) 2021-04-14 22:20:25 +00:00
float_ord.rs format comments (#1612) 2021-03-11 00:27:30 +00:00
label.rs format comments (#1612) 2021-03-11 00:27:30 +00:00
lib.rs format comments (#1612) 2021-03-11 00:27:30 +00:00
name.rs Bevy ECS V2 (#1525) 2021-03-05 07:54:35 +00:00
task_pool_options.rs use std clamp instead of Bevy's (#1644) 2021-03-13 18:07:14 +00:00