pub enum LayerJoin {
Under,
Over,
}Expand description
Where a preset’s second scene joins the composite (ADR-0090): before the post chain, sharing every stage with the main scene, or between the kaleidoscope and bloom in its own offscreen (Phase 3).
Variants§
Under
The layer draws into the same scene target as the main scene, before the chain — one substance, shared trails/fold/bloom. The default.
Over
The layer renders into its own offscreen and blends into the chain between the kaleidoscope and bloom — crisp geometry, shared glow.
Implementations§
Source§impl LayerJoin
impl LayerJoin
Trait Implementations§
impl Copy for LayerJoin
impl Eq for LayerJoin
impl StructuralPartialEq for LayerJoin
Auto Trait Implementations§
impl Freeze for LayerJoin
impl RefUnwindSafe for LayerJoin
impl Send for LayerJoin
impl Sync for LayerJoin
impl Unpin for LayerJoin
impl UnsafeUnpin for LayerJoin
impl UnwindSafe for LayerJoin
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.