美文网首页
UE 插件配置文件添加插件列表

UE 插件配置文件添加插件列表

作者: WOTTOW | 来源:发表于2023-07-20 11:38 被阅读0次

这里的CableComponent、CustomMeshComponent、ProceduralMeshComponent都是UE里面自带的插件

{
    "FileVersion": 3,
    "Version": 1,
    "VersionName": "1.0",
    "FriendlyName": "CustomLinePlugins",
    "Description": "",
    "Category": "Other",
    "CreatedBy": "",
    "CreatedByURL": "",
    "DocsURL": "",
    "MarketplaceURL": "",
    "SupportURL": "",
    "CanContainContent": true,
    "IsBetaVersion": false,
    "IsExperimentalVersion": false,
    "Installed": false,
    "Plugins": [
        {
            "Name": "CableComponent",
            "Enabled": true
        },
        {
            "Name": "CustomMeshComponent",
            "Enabled": true
        },
        {
            "Name": "ProceduralMeshComponent",
            "Enabled": true
        }
    ],
    "Modules": [
        {
            "Name": "CustomLinePlugins",
            "Type": "Runtime",
            "LoadingPhase": "Default",
            "PlatformAllowList": [
                "Win64"
            ]
        }
    ]
}

相关文章

网友评论

      本文标题:UE 插件配置文件添加插件列表

      本文链接:https://www.haomeiwen.com/subject/jakeydtx.html