concinnity-core 0.19.24

Runtime vocabulary for the Concinnity engine: GPU layouts, ECS components, registry, CPU kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/components/prop_instance.rs

/// Marks an entity that was authored as a `Prop`.
///
/// Runtime-only zero-size tag. The `Prop` column is drained once its
/// placement has been decomposed into per-instance components, so this is
/// what identifies a prop's entity from the first tick onward. A behavior
/// scoped to `"Prop"` resolves to this tag, matching model- and mesh-backed
/// props alike.
#[derive(Debug, Clone, Copy, Default)]
pub struct PropInstance;