File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,17 @@ use std::collections::BTreeMap;
20
20
/// This can be changed by [specifying a filter](DynamicSceneBuilder::with_filter) or by explicitly
21
21
/// [allowing](DynamicSceneBuilder::allow)/[denying](DynamicSceneBuilder::deny) certain components.
22
22
///
23
+ /// Extraction happens immediately and uses the filter as it exists during the time of extraction.
24
+ ///
23
25
/// # Resource Extraction
24
26
///
25
27
/// By default, all resources registered with [`ReflectResource`] type data in a world's [`AppTypeRegistry`] will be extracted.
26
28
/// (this type data is added automatically during registration if [`Reflect`] is derived with the `#[reflect(Resource)]` attribute).
27
29
/// This can be changed by [specifying a filter](DynamicSceneBuilder::with_resource_filter) or by explicitly
28
30
/// [allowing](DynamicSceneBuilder::allow_resource)/[denying](DynamicSceneBuilder::deny_resource) certain resources.
29
31
///
32
+ /// Extraction happens immediately and uses the filter as it exists during the time of extraction.
33
+ ///
30
34
/// # Entity Order
31
35
///
32
36
/// Extracted entities will always be stored in ascending order based on their [index](Entity::index).
You can’t perform that action at this time.
0 commit comments