pub struct SketchUpImportScene {
pub camera: SketchUpImportCamera,
pub name: String,
}Expand description
SketchUpImportScene is a sub class of the Unity engine since version 5.1.0f1. Exert from Unity’s scripting documentation: Structure to hold scene data extracted from a SketchUp file. When importing a SketchUp file, Unity retrieves all the scenes in the SketchUp file.This can be extracted later from SketchUpImporter with SketchUpImporter.GetScenes.
Fields§
§camera: SketchUpImportCameraThe camera data of the SketchUp scene.
name: StringThe name of the SketchUp scene.
Trait Implementations§
Source§impl Debug for SketchUpImportScene
impl Debug for SketchUpImportScene
Source§impl<'de> Deserialize<'de> for SketchUpImportScene
impl<'de> Deserialize<'de> for SketchUpImportScene
Source§fn 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 Freeze for SketchUpImportScene
impl RefUnwindSafe for SketchUpImportScene
impl Send for SketchUpImportScene
impl Sync for SketchUpImportScene
impl Unpin for SketchUpImportScene
impl UnwindSafe for SketchUpImportScene
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