Esempio n. 1
0
        /// <summary>
        /// Returns an array of all platform folder names
        /// </summary>
        /// <param name="Platform">The platform to get the included folder names for</param>
        /// <returns>All platform folder names</returns>
        public static FileSystemName[] GetIncludedFolderNames(UnrealTargetPlatform Platform)
        {
            UEBuildPlatform BuildPlatform = UEBuildPlatform.GetBuildPlatform(Platform, false);

            return(BuildPlatform.GetIncludedFolderNames());
        }
Esempio n. 2
0
        /// <summary>
        /// Returns an array of all platform folder names
        /// </summary>
        /// <param name="Platform">The platform to get the included folder names for</param>
        /// <returns>All platform folder names</returns>
        public static string[] GetIncludedFolderNames(UnrealTargetPlatform Platform)
        {
            UEBuildPlatform BuildPlatform = UEBuildPlatform.GetBuildPlatform(Platform, false);

            return(BuildPlatform.GetIncludedFolderNames().ToArray());
        }