#[repr(i32)]pub enum UVMappingMode {
Show 19 variants
ExplicitUV0 = 0,
ExplicitUV1 = 1,
ReflectCubicEnvio = 2,
ReflectSphericalEnvio = 3,
PlanarLocalZ = 4,
PlanarWorldZ = 5,
ParticleFlipbook = 6,
CubicEnvio = 7,
SphericalEnvio = 8,
ExplicitUV2 = 9,
ExplicitUV3 = 10,
PlanarLocalX = 11,
PlanarLocalY = 12,
PlanarWorldX = 13,
PlanarWorldY = 14,
ScreenSpace = 15,
TriPlanarLocal = 16,
TriPlanarWorld = 17,
TriPlanarWorldLocalZ = 18,
}Expand description
UV mapping source / projection mode (LAYR.uvMapping)
Variants§
ExplicitUV0 = 0
UV coordinate set 0
ExplicitUV1 = 1
UV coordinate set 1
ReflectCubicEnvio = 2
Cubic environment reflection
ReflectSphericalEnvio = 3
Spherical environment reflection
PlanarLocalZ = 4
Planar local UVs (Z plane)
PlanarWorldZ = 5
Planar world UVs (Z plane)
ParticleFlipbook = 6
Particle flipbook UVs
CubicEnvio = 7
Cubic environment mapping
SphericalEnvio = 8
Spherical environment mapping
ExplicitUV2 = 9
UV coordinate set 2
ExplicitUV3 = 10
UV coordinate set 3
PlanarLocalX = 11
Planar local UVs (X plane)
PlanarLocalY = 12
Planar local UVs (Y plane)
PlanarWorldX = 13
Planar world UVs (X plane)
PlanarWorldY = 14
Planar world UVs (Y plane)
ScreenSpace = 15
Screen-space UVs
TriPlanarLocal = 16
Tri-planar blending (local space)
TriPlanarWorld = 17
Tri-planar blending (world space)
TriPlanarWorldLocalZ = 18
Tri-planar world with local Z
Trait Implementations§
Source§impl Clone for UVMappingMode
impl Clone for UVMappingMode
Source§fn clone(&self) -> UVMappingMode
fn clone(&self) -> UVMappingMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UVMappingMode
Source§impl Debug for UVMappingMode
impl Debug for UVMappingMode
impl Eq for UVMappingMode
Source§impl Hash for UVMappingMode
impl Hash for UVMappingMode
Source§impl PartialEq for UVMappingMode
impl PartialEq for UVMappingMode
impl StructuralPartialEq for UVMappingMode
Auto Trait Implementations§
impl Freeze for UVMappingMode
impl RefUnwindSafe for UVMappingMode
impl Send for UVMappingMode
impl Sync for UVMappingMode
impl Unpin for UVMappingMode
impl UnsafeUnpin for UVMappingMode
impl UnwindSafe for UVMappingMode
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