Version: 2020.1
public SketchUpImportScene[] GetScenes ();

返回

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

描述

此方法会返回表示 SketchUp 场景的 SketchUpImportScene 的数组。

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 文件导入的游戏对象为例,并打印 SketchUp 文件中场景的名称。

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961