pub type IsVolumeRider = Is<VolumeRider>;
Aliased Type§
struct IsVolumeRider { /* private fields */ }
Trait Implementations§
Source§impl NetSync for IsVolumeRider
impl NetSync for IsVolumeRider
Source§const SYNC_FROM: SyncFrom = SyncFrom::AnyEntity
const SYNC_FROM: SyncFrom = SyncFrom::AnyEntity
Determines what for entities this component is synced to the client. Read more
Source§fn pre_insert(&mut self, world: &World)
fn pre_insert(&mut self, world: &World)
Allows making modifications before the synced component is inserted on
the client.
Source§fn pre_modify(&mut self, world: &World)
fn pre_modify(&mut self, world: &World)
Allows making modifications before the synced component is overwritten
with this version on the client.
Source§impl TryFrom<EcsCompPacket> for IsVolumeRider
impl TryFrom<EcsCompPacket> for IsVolumeRider
Source§fn try_from(other: EcsCompPacket) -> Result<IsVolumeRider, Self::Error>
fn try_from(other: EcsCompPacket) -> Result<IsVolumeRider, Self::Error>
Performs the conversion.