### Construct Plugin with Custom Filter Source: https://github.com/aevyrie/big_space/blob/main/CHANGELOG.md Shows how to construct a plugin with a custom filter using the `new()` method, as opposed to the default empty filter tuple. ```rust GridHashPlugin::>::new() ``` -------------------------------- ### Default Plugin Filter Adjustment Source: https://github.com/aevyrie/big_space/blob/main/CHANGELOG.md Illustrates the change in default plugin filters, where specifying the default empty filter tuple turbofish is no longer required. ```rust GridHashPlugin::<()>::default() -> GridHashPlugin::default() ``` ```rust GridPartitionPlugin::<()>::default() -> GridPartitionPlugin::default() ``` -------------------------------- ### Enable BigSpace Validation Plugin Source: https://github.com/aevyrie/big_space/blob/main/CHANGELOG.md Demonstrates how to enable or disable the BigSpace validation plugin. It is enabled by default when debug assertions are active, but can be overridden. ```rust BigSpaceDefaultPlugins .build() .enable::() ``` -------------------------------- ### Disable Bevy Transform Plugin Source: https://github.com/aevyrie/big_space/blob/main/CHANGELOG.md When upgrading to Bevy 0.16, you may need to disable Bevy's built-in transform system. This snippet shows how to do so during plugin building. ```rust DefaultPlugins.build().disable::(), ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.