pub struct MoveEntityCommand {
pub entity_ids: Vec<EntityId>,
pub delta: Vec3,
}Expand description
Move one or more entities by a delta vector.
Fields§
§entity_ids: Vec<EntityId>§delta: Vec3Trait Implementations§
Source§impl Debug for MoveEntityCommand
impl Debug for MoveEntityCommand
Source§impl EditorCommand for MoveEntityCommand
impl EditorCommand for MoveEntityCommand
Auto Trait Implementations§
impl Freeze for MoveEntityCommand
impl RefUnwindSafe for MoveEntityCommand
impl Send for MoveEntityCommand
impl Sync for MoveEntityCommand
impl Unpin for MoveEntityCommand
impl UnsafeUnpin for MoveEntityCommand
impl UnwindSafe for MoveEntityCommand
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