bevy/release-content/migration-guides/delete_component_access.md
andriyDev 0381a798e2
Delete System::component_access(). (#19496)
# Objective

- Cleanup related to #19495.

## Solution

- Delete `System::component_access()`. It is redundant with
`System::component_access_set().combined_access()`.

## Testing

- None. There are no callers of this function.
2025-06-09 22:54:52 +00:00

11 lines
365 B
Markdown

---
title: `System::component_access` has been deleted.
pull_requests: [19496]
---
`System::component_access` has been deleted. If you were calling this method, you can simply use
`my_system.component_access_set().combined_access()` to get the same result.
If you were manually implementing this, it should be equivalent to `System::component_access_set`
anyway.