pub struct Block {Show 24 fields
pub id: u32,
pub name: String,
pub rotatable: bool,
pub y_rotatable: bool,
pub is_block: bool,
pub is_empty: bool,
pub is_fluid: bool,
pub is_light: bool,
pub is_plant: bool,
pub is_opaque: bool,
pub red_light_level: u32,
pub green_light_level: u32,
pub blue_light_level: u32,
pub is_plantable: bool,
pub transparent_standalone: bool,
pub faces: Vec<BlockFace>,
pub aabbs: Vec<AABB>,
pub is_see_through: bool,
pub is_px_transparent: bool,
pub is_nx_transparent: bool,
pub is_py_transparent: bool,
pub is_ny_transparent: bool,
pub is_pz_transparent: bool,
pub is_nz_transparent: bool,
}Expand description
Serializable struct representing block data.
Fields
id: u32ID of the block.
name: StringName of the block.
rotatable: boolWhether or not the block is rotatable.
y_rotatable: boolWhether or not can the block rotate on the y-axis relative to it’s overall rotation.
is_block: boolIs the block a block?
is_empty: boolIs the block empty space?
is_fluid: boolIs the block a fluid?
is_light: boolDoes the block emit light?
is_plant: boolIs the block a type of plant?
is_opaque: boolIs the block opaque?
red_light_level: u32Red-light level of the block.
green_light_level: u32Green-light level of the block.
blue_light_level: u32Blue-light level of the block.
is_plantable: boolCan plants grow on this block?
transparent_standalone: boolDo faces of this transparent block need to be rendered?
faces: Vec<BlockFace>The faces that this block has to render.
aabbs: Vec<AABB>Bounding boxes of this block.
is_see_through: boolIs the block overall see-through? Opacity equals 0.1 or something?
is_px_transparent: boolIs the block transparent looking from the positive x-axis.
is_nx_transparent: boolIs the block transparent looking from the negative x-axis.
is_py_transparent: boolIs the block transparent looking from the positive y-axis.
is_ny_transparent: boolIs the block transparent looking from the negative y-axis.
is_pz_transparent: boolIs the block transparent looking from the positive z-axis.
is_nz_transparent: boolIs the block transparent looking from the negative z-axis.
Implementations
sourceimpl Block
impl Block
pub fn new(name: &str) -> BlockBuilder
pub fn get_rotated_transparency(&self, rotation: &BlockRotation) -> [bool; 6]
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Block
impl<'de> Deserialize<'de> for Block
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Block
impl Send for Block
impl Sync for Block
impl Unpin for Block
impl UnwindSafe for Block
Blanket Implementations
impl<T> Any for T where
T: Any,
impl<T> Any for T where
T: Any,
fn get_type_id(&self) -> TypeId
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<C, M> ConvertSaveload<M> for C where
C: Clone + Serialize + DeserializeOwned,
impl<C, M> ConvertSaveload<M> for C where
C: Clone + Serialize + DeserializeOwned,
type Data = C
type Data = C
(De)Serializable data representation for data type
type Error = Infallible
type Error = Infallible
Error may occur during serialization or deserialization of component
sourcefn convert_into<F>(
&self,
F
) -> Result<<C as ConvertSaveload<M>>::Data, <C as ConvertSaveload<M>>::Error> where
F: FnMut(Entity) -> Option<M>,
fn convert_into<F>(
&self,
F
) -> Result<<C as ConvertSaveload<M>>::Data, <C as ConvertSaveload<M>>::Error> where
F: FnMut(Entity) -> Option<M>,
Convert this data type into serializable form (Data) using
entity to marker mapping function Read more
sourcefn convert_from<F>(
data: <C as ConvertSaveload<M>>::Data,
F
) -> Result<C, <C as ConvertSaveload<M>>::Error> where
F: FnMut(M) -> Option<Entity>,
fn convert_from<F>(
data: <C as ConvertSaveload<M>>::Data,
F
) -> Result<C, <C as ConvertSaveload<M>>::Error> where
F: FnMut(M) -> Option<Entity>,
Convert this data from a deserializable form (Data) using
entity to marker mapping function Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s. Read more
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if self is actually part of its subset T (and can be converted to it).
fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as self.to_subset but without any property checks. Always succeeds.
fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts self to the equivalent element of its superset.
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more