Files
Carter Anderson c516bd8f48 bsn: support inline macros in field value position (#24524)
# Objective

`bsn!` currently requires surrounding macros in "field value position"
with `{}`:
```rust
bsn! {
  Foo { value: {vec![ 100, 200 ]} }
}
```
This is annoying!

## Solution

Support macros in field-value-position:

```rust
bsn! {
  Foo { value: vec![ 100, 200 ] }
}
```

## Testing

- Added a test that checks that this works
- Ported bsn! examples to use this
2026-06-04 00:28:58 +00:00
..
2026-02-17 02:04:27 +00:00

bevy_city

A procedurally generated city using assets from kenney

This project was inspired by https://flecs-hub.github.io/traffic/etc/. Currently it doesn't do any traffic simulation but the goal is to have a similar simulation but using bevy_ecs.