Derives from AssetImporter to handle importing of SketchUp files.
From the SketchUpImporter, you can access certain properties that are extracted from the SketchUp file.
The following is an example of showing the geo coordinate extracted from the SketchUp file.
#pragma strict public class SketchUpUtility { public static function ShowGeoCoordinate(go: GameObject) { var assetPath: String = AssetDatabase.GetAssetPath(go); // get SketchUpImporter var importer: SketchUpImporter = AssetImporter.GetAtPath(assetPath) as SketchUpImporter; if (importer == null) { Debug.Log("This object is not imported by SketchUpImporter"); return ; } Debug.Log(String.Format("Lat:{0} Long:{1} NorthCorrection:{2}", importer.latitude, importer.longitude, importer.northCorrection)); } }
using UnityEngine; using UnityEditor;
public class SketchUpUtility { public static void ShowGeoCoordinate(GameObject go) { string assetPath = AssetDatabase.GetAssetPath(go); // get asset path // get SketchUpImporter SketchUpImporter importer = AssetImporter.GetAtPath(assetPath) as SketchUpImporter; if(importer == null) { Debug.Log("This object is not imported by SketchUpImporter"); return; } Debug.Log(string.Format("Lat:{0} Long:{1} NorthCorrection:{2}", importer.latitude, importer.longitude, importer.northCorrection)); } }
latitude | Retrieves the latitude Geo Coordinate imported from the SketchUp file. |
longitude | Retrieves the longitude Geo Coordinate imported from the SketchUp file. |
northCorrection | Retrieves the north correction value imported from the SketchUp file. |
GetDefaultCamera | The default camera or the camera of the active scene which the SketchUp file was saved with. |
GetScenes | The method returns an array of SketchUpImportScene which represents SketchUp scenes. |
assetBundleName | Get or set the AssetBundle name. |
assetBundleVariant | Get or set the AssetBundle variant. |
assetPath | The path name of the asset for this importer. (Read Only) |
userData | Get or set any user data. |
addCollider | Add mesh colliders to imported meshes. |
animationCompression | Animation compression setting. |
animationPositionError | Allowed error of animation position compression. |
animationRotationError | Allowed error of animation rotation compression. |
animationScaleError | Allowed error of animation scale compression. |
animationType | Animator generation mode. |
animationWrapMode | The default wrap mode for the generated animation clips. |
bakeIK | Bake Inverse Kinematics (IK) when importing. |
clipAnimations | Animation clips to split animation into. |
defaultClipAnimations | Generate a list of all default animation clip based on TakeInfo. |
extraExposedTransformPaths | Animation optimization setting. |
fileScale | File scale factor (if available) or default one. (Read-only). |
generateAnimations | Animation generation options. |
generateSecondaryUV | Generate secondary UV set for lightmapping. |
globalScale | Global scale factor for importing. |
humanDescription | The human description that is used to generate an Avatar during the import process. |
humanoidOversampling | Controls how much oversampling is used when importing humanoid animations for retargeting. |
importAnimation | Import animation from file. |
importBlendShapes | Controls import of BlendShapes. |
importedTakeInfos | Generates the list of all imported take. |
importMaterials | Import materials from file. |
importNormals | Use normals vectors from file. |
importTangents | Use tangent vectors from file. |
isBakeIKSupported | Is Bake Inverse Kinematics (IK) supported by this importer. |
isFileScaleUsed | Is FileScale was used when importing. |
isReadable | Are mesh vertices and indices accessible from script? |
isTangentImportSupported | Is import of tangents supported by this importer. |
isUseFileUnitsSupported | Is useFileUnits supported for this asset. |
materialName | Material naming setting. |
materialSearch | Existing material search setting. |
meshCompression | Mesh compression setting. |
motionNodeName | The path of the transform used to generation the motion of the animation. |
normalSmoothingAngle | Smoothing angle (in degrees) for calculating normals. |
optimizeGameObjects | Animation optimization setting. |
optimizeMesh | Vertex optimization setting. |
referencedClips | Generates the list of all imported Animations. |
resampleCurves | If set to false, the importer will not resample curves when possible. Read more about animation curve resampling.Notes:- Some unsupported FBX features (such as PreRotation or PostRotation on transforms) will override this setting. In these situations, animation curves will still be resampled even if the setting is disabled. For best results, avoid using PreRotation, PostRotation and GetRotationPivot.- This option was introduced in Version 5.3. Prior to this version, Unity's import behaviour was as if this option was always enabled. Therefore enabling the option gives the same behaviour as pre-5.3 animation import. |
secondaryUVAngleDistortion | Threshold for angle distortion (in degrees) when generating secondary UV. |
secondaryUVAreaDistortion | Threshold for area distortion when generating secondary UV. |
secondaryUVHardAngle | Hard angle (in degrees) for generating secondary UV. |
secondaryUVPackMargin | Margin to be left between charts when packing secondary UV. |
sourceAvatar | Imports the HumanDescription from the given Avatar. |
swapUVChannels | Swap primary and secondary UV channels when importing. |
transformPaths | Generates the list of all imported Transforms. |
useFileUnits | Detect file units and import as 1FileUnit=1UnityUnit, otherwise it will import as 1cm=1UnityUnit. |
hideFlags | Should the object be hidden, saved with the scene or modifiable by the user? |
name | The name of the object. |
SaveAndReimport | Save asset importer settings if asset importer is dirty. |
SetAssetBundleNameAndVariant | Set the AssetBundle name and variant. |
GetInstanceID | Returns the instance id of the object. |
ToString | Returns the name of the game object. |
GetAtPath | Retrieves the asset importer for the asset at path. |
Destroy | Removes a gameobject, component or asset. |
DestroyImmediate | Destroys the object obj immediately. |
DontDestroyOnLoad | Makes the object target not be destroyed automatically when loading a new scene. |
FindObjectOfType | Returns the first active loaded object of Type type. |
FindObjectsOfType | Returns a list of all active loaded objects of Type type. |
Instantiate | Returns a copy of the object original. |
bool | Does the object exist? |
operator != | Compares if two objects refer to a different object. |
operator == | Compares two object references to see if they refer to the same object. |