Version: 2021.3

StaticEditorFlags.OffMeshLinkGeneration

切换到手册

描述

在预计算导航数据时,尝试生成一个从该 GameObject 开始的网格外链接。

有关更多信息,请参阅有关[[wiki:nav-BuildingOffMeshLinksAutomatically|自动构建网格外链接]的文档。

using UnityEngine;
using UnityEditor;
public class StaticEditorFlagsExample
{
    [MenuItem("Examples/Create GameObject and set Static Editor Flags")]
    static void CreateGameObjectAndSetStaticEditorFlags()
    {
        // Create a GameObject
        var go = new GameObject("Example");
        // Set the GameObject's StaticEditorFlags
        var flags = StaticEditorFlags.OffMeshLinkGeneration;
        GameObjectUtility.SetStaticEditorFlags(go, flags);
    }
}
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961