版本: Unity 6 (6000.0)
语言英语
  • C#

SketchUpImporter.GetScenes

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读用户提出的每个建议更改,并在适用时进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册

声明

public SketchUpImportScene[] GetScenes();

返回值

SketchUpImportScene[] 从 SketchUp 文件中提取的场景数组。

描述

此方法返回一个 SketchUpImportScene 数组,它代表 SketchUp 场景。

SketchUpImportScene 是用于表示从 SketchUp 文件中提取的场景的结构。

using UnityEngine;
using UnityEditor;

public class SketchUpUtility { public static void PrintSketchUpSceneName(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; }

SketchUpImportScene[] scenes = importer.GetScenes(); // get all the scenes

foreach (SketchUpImportScene scene in scenes) { Debug.Log(scene.name); } } }

上面的示例采用从 SketchUp 文件导入的 GameObject,并打印 SketchUp 文件中场景的名称。