pybevy 0.2.1

PyBevy: A Python Real-Time Engine Built on Bevy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# ECS Examples

PyBevy ports of Bevy [ecs examples](https://github.com/bevyengine/bevy/tree/v0.18.0/examples/ecs).

| PyBevy | Bevy source |
|--------|-------------|
| [change_detection.py]change_detection.py | [change_detection.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/change_detection.rs |
| [ecs_guide.py]ecs_guide.py | [ecs_guide.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/ecs_guide.rs |
| [fixed_timestep.py]fixed_timestep.py | [fixed_timestep.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/fixed_timestep.rs |
| [hierarchy.py]hierarchy.py | [hierarchy.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/hierarchy.rs |
| [message.py]message.py | [message.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/message.rs |
| [removal_detection.py]removal_detection.py | [removal_detection.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/removal_detection.rs |
| [startup_system.py]startup_system.py | [startup_system.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/startup_system.rs |
| [system_closure.py]system_closure.py | [system_closure.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/system_closure.rs |
| [system_param.py]system_param.py | [system_param.rs]https://github.com/bevyengine/bevy/blob/v0.18.0/examples/ecs/system_param.rs |