Exemple #1
0
        public static bool CreateAsset(NewAssetType type, string outputPath)
        {
#if UNIT_TEST_COMPILANT
            throw new NotImplementedException("Unit tests, don't support methods calls. Only properties can be get or set.");
#else
            return(Internal_CreateAsset(type, outputPath));
#endif
        }
 /// <summary>
 /// Creates new asset at the target location.
 /// </summary>
 /// <param name="type">New asset type.</param>
 /// <param name="outputPath">Output asset path.</param>
 public static bool CreateAsset(NewAssetType type, string outputPath)
 {
     return(Internal_CreateAsset(type, outputPath));
 }