From 27092237e0efcd8885b514a03c8e9c94f1f00dfc Mon Sep 17 00:00:00 2001 From: CodeSmile-0000011110110111 Date: Thu, 1 Feb 2024 12:02:47 +0000 Subject: [PATCH] deploy: d4264f1824b7af096750cebc8a65a13f0a22d31b --- html/_asset_8_file_8cs_source.html | 73 +- ...ase_a7c993d64861e62fbdcff3700690b2318.html | 4 +- ...ile_editor_1_1_asset_1_1_file-members.html | 4 +- ..._code_smile_editor_1_1_asset_1_1_file.html | 12 +- ...ss_code_smile_editor_1_1_asset_1_1_file.js | 4 +- ...ile_ae11a13bfe131ec8b20a5a5667e75ec97.html | 2 +- ...ile_af2ccad52b2993c46962c3dea1c2ef54d.html | 152 ++ ...ile_aff6427c4b634d2e4ff4d23995a3319f0.html | 152 ++ html/doxygen_crawl.html | 22 +- ...le_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html | 9 +- html/navtreeindex0.js | 6 +- html/navtreeindex1.js | 4 +- html/search/all_0.js | 12 +- html/search/all_1.js | 11 +- html/search/all_11.js | 51 +- html/search/all_14.js | 2 +- html/search/all_15.js | 3 +- html/search/all_1f.js | 2 +- html/search/all_2.js | 2 +- html/search/all_3.js | 3 +- html/search/all_9.js | 2 +- html/search/functions_7.js | 2 +- html/sitemap.xml | 38 +- latex/_asset_8_file_8cs_source.tex | 73 +- ...de_smile_editor_1_1_asset_1_1_database.tex | 4 +- ...s_code_smile_editor_1_1_asset_1_1_file.tex | 100 +- ...ile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.tex | 7 +- latex/refman.aux | 1220 ++++++++--------- latex/refman.idx | 914 ++++++------ latex/refman.ilg | 2 +- latex/refman.ind | 806 +++++------ latex/refman.log | 449 +++--- latex/refman.toc | 648 ++++----- 33 files changed, 2561 insertions(+), 2234 deletions(-) create mode 100644 html/class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html create mode 100644 html/class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html diff --git a/html/_asset_8_file_8cs_source.html b/html/_asset_8_file_8cs_source.html index 4412ba4b..f222f5c3 100644 --- a/html/_asset_8_file_8cs_source.html +++ b/html/_asset_8_file_8cs_source.html @@ -198,11 +198,11 @@
305 where T : Object => Load<T>(path);
306
320 public static void
-
321 Import([NotNull] Path[] paths, ImportAssetOptions options = ImportAssetOptions.Default) =>
-
322 Import(Path.ToStrings(paths), options);
+
321 Import([NotNull] IEnumerable<Path> paths, ImportAssetOptions options = ImportAssetOptions.Default) =>
+
322 Import(Path.ToStrings(paths.ToArray()), options);
323
337 public static void
-
338 Import([NotNull] String[] paths, ImportAssetOptions options = ImportAssetOptions.Default) => BatchEditing(
+
338 Import([NotNull] IEnumerable<string> paths, ImportAssetOptions options = ImportAssetOptions.Default) => BatchEditing(
339 () =>
340 {
341 foreach (var path in paths)
@@ -455,38 +455,47 @@
1048
1049 destinationPath.CreateFolders();
1050
-
1051 var success = AssetDatabase.CopyAsset(sourcePath, destinationPath);
-
1052 SetLastErrorMessage(success ? String.Empty : $"failed to copy {sourcePath} to {destinationPath}");
-
1053 return success;
-
1054 }
-
1055
-
1056 private static void SaveInternal([NotNull] Object asset, Boolean forceSave = false)
-
1057 {
-
1058 ThrowIf.ArgumentIsNull(asset, nameof(asset));
-
1059 ThrowIf.NotInDatabase(asset);
-
1060
-
1061 if (forceSave)
-
1062 EditorUtility.SetDirty(asset);
-
1063
-
1064 AssetDatabase.SaveAssetIfDirty(asset);
-
1065 }
-
1066
-
1067 private static void ImportIfNotImported([NotNull] Path path,
-
1068 ImportAssetOptions options = ImportAssetOptions.Default)
-
1069 {
-
1070 // Not in database but on disk? => Import path
-
1071 // Cannot determine if existing file has been updated though.
-
1072 if (path.Exists == false && path.ExistsInFileSystem)
-
1073 Import(path, options);
+
1051#if UNITY_2022_1_OR_NEWER
+
1052 var success = AssetDatabase.CopyAsset(sourcePath, destinationPath);
+
1053 SetLastErrorMessage(success ? String.Empty : $"failed to copy {sourcePath} to {destinationPath}");
+
1054 return success;
+
1055#else
+
1056 // in Unity 2021 we have to load, clone and create instead
+
1057 // because object and file name have to match (likely a bug in that version)
+
1058 var original = LoadMain<Object>(sourcePath);
+
1059 var copy = Object.Instantiate(original);
+
1060 copy = Create(copy, destinationPath);
+
1061 return copy != null;
+
1062#endif
+
1063 }
+
1064
+
1065 private static void SaveInternal([NotNull] Object asset, Boolean forceSave = false)
+
1066 {
+
1067 ThrowIf.ArgumentIsNull(asset, nameof(asset));
+
1068 ThrowIf.NotInDatabase(asset);
+
1069
+
1070 if (forceSave)
+
1071 EditorUtility.SetDirty(asset);
+
1072
+
1073 AssetDatabase.SaveAssetIfDirty(asset);
1074 }
1075
-
1076#if !UNITY_2022_2_OR_NEWER // dummy for LoadAsync in earlier versions
-
1077 public class AssetDatabaseLoadOperation {}
-
1078#endif
-
1079 }
+
1076 private static void ImportIfNotImported([NotNull] Path path,
+
1077 ImportAssetOptions options = ImportAssetOptions.Default)
+
1078 {
+
1079 // Not in database but on disk? => Import path
+
1080 // Cannot determine if existing file has been updated though.
+
1081 if (path.Exists == false && path.ExistsInFileSystem)
+
1082 Import(path, options);
+
1083 }
+
1084
+
1085#if !UNITY_2022_2_OR_NEWER // dummy for LoadAsync in earlier versions
+
1086 public class AssetDatabaseLoadOperation {}
+
1087#endif
+
1088 }
-
1080 }
-
1081}
+
1089 }
+
1090}
static void OpenExternal(Int32 instanceId, Int32 lineNumber=-1, Int32 columnNumber=-1)
Opens the asset in the application associated with the file's extension.
static IList< String > PathsNotDeleted
The paths that failed to be deleted or trashed. Is an empty list if no failure occured on the last ca...
Definition Asset.File.cs:46
static void Save([NotNull] Object asset)
Saves the object to disk if it is dirty.
diff --git a/html/class_code_smile_editor_1_1_asset_1_1_database_a7c993d64861e62fbdcff3700690b2318.html b/html/class_code_smile_editor_1_1_asset_1_1_database_a7c993d64861e62fbdcff3700690b2318.html index 9df0ff89..cab77b52 100644 --- a/html/class_code_smile_editor_1_1_asset_1_1_database_a7c993d64861e62fbdcff3700690b2318.html +++ b/html/class_code_smile_editor_1_1_asset_1_1_database_a7c993d64861e62fbdcff3700690b2318.html @@ -119,7 +119,7 @@

Scans for external file system modifications and updates the Database accordingly. Prefer to use CodeSmileEditor.Asset.File.Import within CodeSmileEditor.Asset.File.BatchEditing. CAUTION: ImportAll ('Refresh') unloads unused resources. This can degrade editor performance!

-

For best performance, prefer to use CodeSmileEditor.Asset.File.Import(String[],ImportAssetOptions) to import multiple assets in a batch operation.

+

For best performance, prefer to use CodeSmileEditor.Asset.File.Import(String[],ImportAssetOptions) to import multiple assets in a batch operation.

When to call ImportAll (same as AssetDatabase.Refresh):

  • After System.IO.File/Directory or similar methods modified files/folders in the project.
  • After running an external process that possibly modified files/folders in the project. There is no need to call ImportAll / 'Refresh' in any other situation!
  • @@ -143,7 +143,7 @@

    See also
    diff --git a/html/class_code_smile_editor_1_1_asset_1_1_file-members.html b/html/class_code_smile_editor_1_1_asset_1_1_file-members.html index d01f3a41..e8fa6db3 100644 --- a/html/class_code_smile_editor_1_1_asset_1_1_file-members.html +++ b/html/class_code_smile_editor_1_1_asset_1_1_file-members.html @@ -130,8 +130,8 @@ GetMainType(GUID guid)Asset.Filestatic GetSubType([NotNull] Path path, Int64 fileId)Asset.Filestatic Import([NotNull] Path path, ImportAssetOptions options=ImportAssetOptions.Default)Asset.Filestatic - Import([NotNull] Path[] paths, ImportAssetOptions options=ImportAssetOptions.Default)Asset.Filestatic - Import([NotNull] String[] paths, ImportAssetOptions options=ImportAssetOptions.Default)Asset.Filestatic + Import([NotNull] IEnumerable< Path > paths, ImportAssetOptions options=ImportAssetOptions.Default)Asset.Filestatic + Import([NotNull] IEnumerable< string > paths, ImportAssetOptions options=ImportAssetOptions.Default)Asset.Filestatic ImportAndLoad< T >([NotNull] Path path, ImportAssetOptions options=ImportAssetOptions.Default)Asset.Filestatic Load< T >([NotNull] Path path)Asset.Filestatic LoadAsync([NotNull] Path path, Int64 localFileId)Asset.Filestatic diff --git a/html/class_code_smile_editor_1_1_asset_1_1_file.html b/html/class_code_smile_editor_1_1_asset_1_1_file.html index 5ccc84e8..7d9ab37e 100644 --- a/html/class_code_smile_editor_1_1_asset_1_1_file.html +++ b/html/class_code_smile_editor_1_1_asset_1_1_file.html @@ -203,15 +203,15 @@ static Type GetSubType ([NotNull] Path path, Int64 fileId)  Gets the type of a sub asset by the main asset's path and the local file ID of the sub-asset.
      +static void Import ([NotNull] IEnumerable< Path > paths, ImportAssetOptions options=ImportAssetOptions.Default) + Imports multiple paths that were created or modified 'externally'. Externally refers to any means other than AssetDatabase methods such as System.IO or batch scripts.
    +  +static void Import ([NotNull] IEnumerable< string > paths, ImportAssetOptions options=ImportAssetOptions.Default) + Imports multiple paths that were created or modified 'externally'. Externally refers to any means other than AssetDatabase methods such as System.IO or batch scripts.
    +  static void Import ([NotNull] Path path, ImportAssetOptions options=ImportAssetOptions.Default)  Imports a file at a given path that was created or modified 'externally'. Externally refers to any means other than AssetDatabase methods such as System.IO or batch scripts.
      -static void Import ([NotNull] Path[] paths, ImportAssetOptions options=ImportAssetOptions.Default) - Imports multiple paths that were created or modified 'externally'. Externally refers to any means other than AssetDatabase methods such as System.IO or batch scripts.
    -  -static void Import ([NotNull] String[] paths, ImportAssetOptions options=ImportAssetOptions.Default) - Imports multiple paths that were created or modified 'externally'. Externally refers to any means other than AssetDatabase methods such as System.IO or batch scripts.
    -  static T ImportAndLoad< T > ([NotNull] Path path, ImportAssetOptions options=ImportAssetOptions.Default)  Imports a file at a given path that was created or modified 'externally', then loads and returns the asset object. See CodeSmileEditor.Asset.File.Import for more info.
      diff --git a/html/class_code_smile_editor_1_1_asset_1_1_file.js b/html/class_code_smile_editor_1_1_asset_1_1_file.js index e6fb9f16..75ab4641 100644 --- a/html/class_code_smile_editor_1_1_asset_1_1_file.js +++ b/html/class_code_smile_editor_1_1_asset_1_1_file.js @@ -28,9 +28,9 @@ var class_code_smile_editor_1_1_asset_1_1_file = [ "GetMainType", "class_code_smile_editor_1_1_asset_1_1_file_a3192f3d24b4397b10f50ef366ee3feba.html#a3192f3d24b4397b10f50ef366ee3feba", null ], [ "GetMainType", "class_code_smile_editor_1_1_asset_1_1_file_a82b0bb0beb5f5422951631789bca4256.html#a82b0bb0beb5f5422951631789bca4256", null ], [ "GetSubType", "class_code_smile_editor_1_1_asset_1_1_file_ab9e60595a8cc5748f38f91b3ed83aeca.html#ab9e60595a8cc5748f38f91b3ed83aeca", null ], + [ "Import", "class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html#af2ccad52b2993c46962c3dea1c2ef54d", null ], + [ "Import", "class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html#aff6427c4b634d2e4ff4d23995a3319f0", null ], [ "Import", "class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html#ae11a13bfe131ec8b20a5a5667e75ec97", null ], - [ "Import", "class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188.html#ae3c1d18d1f26557851b440b5704d2188", null ], - [ "Import", "class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a.html#a39290f9fb99198f7df818bc5cafb0e1a", null ], [ "ImportAndLoad< T >", "class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0.html#a4dc6aff1e32f03b26ec0e310fb4233c0", null ], [ "Load< T >", "class_code_smile_editor_1_1_asset_1_1_file_a4f89e334c74903942522d0e0066d28b7.html#a4f89e334c74903942522d0e0066d28b7", null ], [ "LoadAsync", "class_code_smile_editor_1_1_asset_1_1_file_a1de889c18256fc25aa6f53507d448050.html#a1de889c18256fc25aa6f53507d448050", null ], diff --git a/html/class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html b/html/class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html index e11b9a6d..f9c325ae 100644 --- a/html/class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html +++ b/html/class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html @@ -96,7 +96,7 @@
    -

    ◆ Import() [1/3]

    +

    ◆ Import() [3/3]

    diff --git a/html/class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html b/html/class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html new file mode 100644 index 00000000..a62d8061 --- /dev/null +++ b/html/class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html @@ -0,0 +1,152 @@ + + + + + + + +CodeSmile AssetDatabase: CodeSmileEditor.Asset.File.Import + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    CodeSmile AssetDatabase 1.9 +
    +
    Unity's AssetDatabase in enjoyable, consistent, concise, convenient, comprehensible, safe, documented form.
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +

    ◆ Import() [1/3]

    + +
    +
    + + + + + +
    + + + + + + + + + + + +
    static void Import ([NotNull] IEnumerable< Path > paths,
    ImportAssetOptions options = ImportAssetOptions.Default )
    +
    +static
    +
    + +

    Imports multiple paths that were created or modified 'externally'. Externally refers to any means other than AssetDatabase methods such as System.IO or batch scripts.

    +

    Internally runs BatchEditing to batch the import operations.

    +
    Parameters
    + + + +
    pathsPaths to assets.
    optionsImportAssetOptions
    +
    +
    +
    See also
    + + +
    +
    +
    +
    + + + + diff --git a/html/class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html b/html/class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html new file mode 100644 index 00000000..75b231ee --- /dev/null +++ b/html/class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html @@ -0,0 +1,152 @@ + + + + + + + +CodeSmile AssetDatabase: CodeSmileEditor.Asset.File.Import + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    CodeSmile AssetDatabase 1.9 +
    +
    Unity's AssetDatabase in enjoyable, consistent, concise, convenient, comprehensible, safe, documented form.
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    +
    + +
    + +

    ◆ Import() [2/3]

    + +
    +
    + + + + + +
    + + + + + + + + + + + +
    static void Import ([NotNull] IEnumerable< string > paths,
    ImportAssetOptions options = ImportAssetOptions.Default )
    +
    +static
    +
    + +

    Imports multiple paths that were created or modified 'externally'. Externally refers to any means other than AssetDatabase methods such as System.IO or batch scripts.

    +

    Internally runs BatchEditing to batch the import operations.

    +
    Parameters
    + + + +
    pathsPaths to assets.
    optionsImportAssetOptions
    +
    +
    +
    See also
    + + +
    +
    +
    +
    + + + + diff --git a/html/doxygen_crawl.html b/html/doxygen_crawl.html index 8cbcaecb..28f352cd 100644 --- a/html/doxygen_crawl.html +++ b/html/doxygen_crawl.html @@ -8,25 +8,25 @@ - - - + + - + + + - + - - - - + + + @@ -176,9 +176,9 @@ + + - - diff --git a/html/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html b/html/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html index 79bc1228..12d6ffa6 100644 --- a/html/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html +++ b/html/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html @@ -99,8 +99,8 @@

    -

    -v1.9.0 - Jan 31, 2024

    +

    +v1.9.1 - Feb 01, 2024

    • API Changes: These static methods have been MOVED from Asset to Asset.File:
      • GetMainType
      • @@ -108,9 +108,12 @@

      • GetGuid
      • GetFileId
      • GetGuidAndFileId
      • +
      • Rationale: These methods hindered API discovery via auto-completion by cluttering the Asset namespace, and they truly belong to the File API since they query asset file attributes.
    • -
    • Rationale: These methods hindered API discovery via auto-completion by cluttering the Asset namespace, and they truly belong to the File API since they query asset file attributes.
    • +
    • Fixed: 2021.3 shows warning when copying (duplicate, save as new) an asset, complaining that filename must match asset object name. This is likely a bug in Unity.
    • +
    • Fixed the same 2021.3 issue in workflow sample. Also required importing batched asset after copying them.
    • +
    • Asset.File.Import takes IEnumerable as input (not just array)

    v1.8.6 - Jan 30, 2024

    diff --git a/html/navtreeindex0.js b/html/navtreeindex0.js index 182a8e74..fe731003 100644 --- a/html/navtreeindex0.js +++ b/html/navtreeindex0.js @@ -62,7 +62,6 @@ var NAVTREEINDEX0 = "class_code_smile_editor_1_1_asset_1_1_file_a2bdf010d46d8dd5ea6420e4bdc75c9aa.html#a2bdf010d46d8dd5ea6420e4bdc75c9aa":[3,0,0,0,3,1], "class_code_smile_editor_1_1_asset_1_1_file_a3192f3d24b4397b10f50ef366ee3feba.html#a3192f3d24b4397b10f50ef366ee3feba":[3,0,0,0,3,25], "class_code_smile_editor_1_1_asset_1_1_file_a34bfcab396a4bfed873f01e8622033ab.html#a34bfcab396a4bfed873f01e8622033ab":[3,0,0,0,3,41], -"class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a.html#a39290f9fb99198f7df818bc5cafb0e1a":[3,0,0,0,3,30], "class_code_smile_editor_1_1_asset_1_1_file_a397f277ed8b22e8ee60662f7b8b3ef06.html#a397f277ed8b22e8ee60662f7b8b3ef06":[3,0,0,0,3,14], "class_code_smile_editor_1_1_asset_1_1_file_a3d74dc290eb0f6815b0f1eac29c6c2e6.html#a3d74dc290eb0f6815b0f1eac29c6c2e6":[3,0,0,0,3,2], "class_code_smile_editor_1_1_asset_1_1_file_a3e3543e7c5f85939c0a53e5e0a95fb80.html#a3e3543e7c5f85939c0a53e5e0a95fb80":[3,0,0,0,3,19], @@ -95,10 +94,11 @@ var NAVTREEINDEX0 = "class_code_smile_editor_1_1_asset_1_1_file_ac644ddb8e561a93366765ea0017771ec.html#ac644ddb8e561a93366765ea0017771ec":[3,0,0,0,3,15], "class_code_smile_editor_1_1_asset_1_1_file_aceef508c424cb6d38e755ddd6bde4dd7.html#aceef508c424cb6d38e755ddd6bde4dd7":[3,0,0,0,3,9], "class_code_smile_editor_1_1_asset_1_1_file_acfdbd887acb03dfdc27a2e7628055a8a.html#acfdbd887acb03dfdc27a2e7628055a8a":[3,0,0,0,3,7], -"class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html#ae11a13bfe131ec8b20a5a5667e75ec97":[3,0,0,0,3,28], -"class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188.html#ae3c1d18d1f26557851b440b5704d2188":[3,0,0,0,3,29], +"class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html#ae11a13bfe131ec8b20a5a5667e75ec97":[3,0,0,0,3,30], "class_code_smile_editor_1_1_asset_1_1_file_aeb2b5afda3ab0df2521ff86e9d7c80b8.html#aeb2b5afda3ab0df2521ff86e9d7c80b8":[3,0,0,0,3,20], +"class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html#af2ccad52b2993c46962c3dea1c2ef54d":[3,0,0,0,3,28], "class_code_smile_editor_1_1_asset_1_1_file_af8f67d95622e7afce379eaa04c82eaf6.html#af8f67d95622e7afce379eaa04c82eaf6":[3,0,0,0,3,21], +"class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html#aff6427c4b634d2e4ff4d23995a3319f0":[3,0,0,0,3,29], "class_code_smile_editor_1_1_asset_1_1_importer.html":[3,0,0,0,4], "class_code_smile_editor_1_1_asset_1_1_importer_a19ff837d74e7666438a7938cf0f7126d.html#a19ff837d74e7666438a7938cf0f7126d":[3,0,0,0,4,11], "class_code_smile_editor_1_1_asset_1_1_importer_a1a9a83a1db886ceb61eecb0933d27f30.html#a1a9a83a1db886ceb61eecb0933d27f30":[3,0,0,0,4,0], diff --git a/html/navtreeindex1.js b/html/navtreeindex1.js index 2656b2c5..e583120f 100644 --- a/html/navtreeindex1.js +++ b/html/navtreeindex1.js @@ -30,8 +30,8 @@ var NAVTREEINDEX1 = "class_code_smile_editor_1_1_asset_load_exception.html":[3,0,0,1], "class_code_smile_editor_1_1_asset_load_exception_a14844af4b9e1ad1822b11d8e7a99b991.html#a14844af4b9e1ad1822b11d8e7a99b991":[3,0,0,1,0], "class_code_smile_editor_1_1_asset_load_exception_a19e920f646406abb17bf92089cd69b8f.html#a19e920f646406abb17bf92089cd69b8f":[3,0,0,1,1], -"functions.html":[3,2,0,0], "functions.html":[3,2,0], +"functions.html":[3,2,0,0], "functions_b.html":[3,2,0,1], "functions_c.html":[3,2,0,2], "functions_d.html":[3,2,0,3], @@ -68,8 +68,8 @@ var NAVTREEINDEX1 = "functions_u.html":[3,2,0,16], "functions_v.html":[3,2,0,17], "hierarchy.html":[3,1], -"index.html":[0], "index.html":[], +"index.html":[0], "index.html#bam-here-it-is-":[0], "index.html#documentation--support":[0,4], "index.html#example-code-snippets":[0,3], diff --git a/html/search/all_0.js b/html/search/all_0.js index e51232dd..f5a4fcd8 100644 --- a/html/search/all_0.js +++ b/html/search/all_0.js @@ -3,12 +3,12 @@ var searchData= ['0_200_20nov_209_202023_0',['v1.0.0 - Nov 9, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v100---nov-9-2023',1,'']]], ['0_20dec_2003_202023_1',['v1.7.0 - Dec 03, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v170---dec-03-2023',1,'']]], ['0_20dec_2009_202023_2',['v1.8.0 - Dec 09, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v180---dec-09-2023',1,'']]], - ['0_20jan_2031_202024_3',['v1.9.0 - Jan 31, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v190---jan-31-2024',1,'']]], - ['0_20nov_2010_202023_4',['v1.1.0 - Nov 10, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v110---nov-10-2023',1,'']]], - ['0_20nov_2022_202023_5',['v1.2.0 - Nov 22, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v120---nov-22-2023',1,'']]], - ['0_20nov_2023_202023_6',['v1.3.0 - Nov 23, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v130---nov-23-2023',1,'']]], - ['0_20nov_2024_202023_7',['v1.4.0 - Nov 24, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v140---nov-24-2023',1,'']]], - ['0_20nov_2030_202023_8',['v1.6.0 - Nov 30, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v160---nov-30-2023',1,'']]], + ['0_20nov_2010_202023_3',['v1.1.0 - Nov 10, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v110---nov-10-2023',1,'']]], + ['0_20nov_2022_202023_4',['v1.2.0 - Nov 22, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v120---nov-22-2023',1,'']]], + ['0_20nov_2023_202023_5',['v1.3.0 - Nov 23, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v130---nov-23-2023',1,'']]], + ['0_20nov_2024_202023_6',['v1.4.0 - Nov 24, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v140---nov-24-2023',1,'']]], + ['0_20nov_2030_202023_7',['v1.6.0 - Nov 30, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v160---nov-30-2023',1,'']]], + ['01_202024_8',['v1.9.1 - Feb 01, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v191---feb-01-2024',1,'']]], ['03_202023_9',['v1.7.0 - Dec 03, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v170---dec-03-2023',1,'']]], ['05_202023_10',['v1.7.1 - Dec 05, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v171---dec-05-2023',1,'']]], ['09_202023_11',['v1.8.0 - Dec 09, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v180---dec-09-2023',1,'']]] diff --git a/html/search/all_1.js b/html/search/all_1.js index d90e6b2a..44d3fb87 100644 --- a/html/search/all_1.js +++ b/html/search/all_1.js @@ -5,9 +5,10 @@ var searchData= ['1_204_20nov_2013_202023_2',['v1.1.4 - Nov 13, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v114---nov-13-2023',1,'']]], ['1_20dec_2005_202023_3',['v1.7.1 - Dec 05, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v171---dec-05-2023',1,'']]], ['1_20dec_2021_202023_4',['v1.8.1 - Dec 21, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v181---dec-21-2023',1,'']]], - ['1_20nov_2022_202023_5',['v1.2.1 - Nov 22, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v121---nov-22-2023',1,'']]], - ['1_20nov_2024_202023_6',['1 Nov 24 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v131---nov-24-2023',1,'v1.3.1 - Nov 24, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v141---nov-24-2023',1,'v1.4.1 - Nov 24, 2023']]], - ['10_202023_7',['v1.1.0 - Nov 10, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v110---nov-10-2023',1,'']]], - ['12_202023_8',['v1.1.3 - Nov 12, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v113---nov-12-2023',1,'']]], - ['13_202023_9',['v1.1.4 - Nov 13, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v114---nov-13-2023',1,'']]] + ['1_20feb_2001_202024_5',['v1.9.1 - Feb 01, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v191---feb-01-2024',1,'']]], + ['1_20nov_2022_202023_6',['v1.2.1 - Nov 22, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v121---nov-22-2023',1,'']]], + ['1_20nov_2024_202023_7',['1 Nov 24 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v131---nov-24-2023',1,'v1.3.1 - Nov 24, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v141---nov-24-2023',1,'v1.4.1 - Nov 24, 2023']]], + ['10_202023_8',['v1.1.0 - Nov 10, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v110---nov-10-2023',1,'']]], + ['12_202023_9',['v1.1.3 - Nov 12, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v113---nov-12-2023',1,'']]], + ['13_202023_10',['v1.1.4 - Nov 13, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v114---nov-13-2023',1,'']]] ]; diff --git a/html/search/all_11.js b/html/search/all_11.js index ba7a7a3d..8a0299da 100644 --- a/html/search/all_11.js +++ b/html/search/all_11.js @@ -1,29 +1,30 @@ var searchData= [ ['features_0',['Main Features',['../index.html#main-features',1,'']]], - ['feeback_20inquiries_1',['Support, Feeback, Inquiries',['../index.html#support-feeback-inquiries',1,'']]], - ['file_2',['File',['../class_code_smile_editor_1_1_asset_1_1_file.html',1,'CodeSmileEditor::Asset']]], - ['fileexists_3',['FileExists',['../class_code_smile_editor_1_1_asset_1_1_path_ae2e7b500cc4d1f97b7c6051181aa833f.html#ae2e7b500cc4d1f97b7c6051181aa833f',1,'CodeSmileEditor::Asset::Path']]], - ['fileid_4',['FileId',['../class_code_smile_editor_1_1_asset_a2d3c3468bf091cc7260b4cdca91b4a55.html#a2d3c3468bf091cc7260b4cdca91b4a55',1,'CodeSmileEditor::Asset']]], - ['filename_5',['FileName',['../class_code_smile_editor_1_1_asset_1_1_path_a5066dd8adab56e4ea54fe46b9db3bd9a.html#a5066dd8adab56e4ea54fe46b9db3bd9a',1,'CodeSmileEditor::Asset::Path']]], - ['filenamewithoutextension_6',['FileNameWithoutExtension',['../class_code_smile_editor_1_1_asset_1_1_path_a3693da5482c390a2146fe9dc6d38b197.html#a3693da5482c390a2146fe9dc6d38b197',1,'CodeSmileEditor::Asset::Path']]], - ['find_7',['Find',['../class_code_smile_editor_1_1_asset_1_1_file_a9824149809d0caf6b7853241fe518852.html#a9824149809d0caf6b7853241fe518852',1,'CodeSmileEditor::Asset::File']]], - ['findguids_8',['FindGuids',['../class_code_smile_editor_1_1_asset_1_1_file_a6a20df93ae9409f4216c6f98cf334c30.html#a6a20df93ae9409f4216c6f98cf334c30',1,'CodeSmileEditor::Asset::File']]], - ['findpaths_9',['FindPaths',['../class_code_smile_editor_1_1_asset_1_1_file_aeb2b5afda3ab0df2521ff86e9d7c80b8.html#aeb2b5afda3ab0df2521ff86e9d7c80b8',1,'CodeSmileEditor.Asset.File.FindPaths([NotNull] String filter, String[] searchInFolders=null)'],['../class_code_smile_editor_1_1_asset_1_1_file_a3e3543e7c5f85939c0a53e5e0a95fb80.html#a3e3543e7c5f85939c0a53e5e0a95fb80',1,'CodeSmileEditor.Asset.File.FindPaths([NotNull] String filter, Path[] searchInFolders=null)']]], - ['folderexists_10',['FolderExists',['../class_code_smile_editor_1_1_asset_1_1_path_a18386e05fe0620f7baaa0c21543f455c.html#a18386e05fe0620f7baaa0c21543f455c',1,'CodeSmileEditor::Asset::Path']]], - ['folderpath_11',['FolderPath',['../class_code_smile_editor_1_1_asset_1_1_path_a86fde1a385ff90d8002ae30a7c39cab9.html#a86fde1a385ff90d8002ae30a7c39cab9',1,'CodeSmileEditor::Asset::Path']]], - ['forceremove_12',['ForceRemove',['../class_code_smile_editor_1_1_asset_1_1_bundle_a7393007e2bfa2a7dafd3e6bf47115f53.html#a7393007e2bfa2a7dafd3e6bf47115f53',1,'CodeSmileEditor::Asset::Bundle']]], - ['forcesave_13',['ForceSave',['../class_code_smile_editor_1_1_asset_a80bd55f3de91ab63e74b3f66c1d1dd4b.html#a80bd55f3de91ab63e74b3f66c1d1dd4b',1,'CodeSmileEditor.Asset.ForceSave()'],['../class_code_smile_editor_1_1_asset_1_1_file_af8f67d95622e7afce379eaa04c82eaf6.html#af8f67d95622e7afce379eaa04c82eaf6',1,'CodeSmileEditor.Asset.File.ForceSave()']]], - ['free_20gpl_20license_14',['FREE => GPL License',['../index.html#free--gpl-license',1,'']]], - ['from_20me_15',['What to expect from me?',['../index.html#what-to-expect-from-me',1,'']]], - ['frommeta_16',['FromMeta',['../class_code_smile_editor_1_1_asset_1_1_path_a18298002ca84eab9c56ac238dedc53e8.html#a18298002ca84eab9c56ac238dedc53e8',1,'CodeSmileEditor::Asset::Path']]], - ['fullassetspath_17',['FullAssetsPath',['../class_code_smile_editor_1_1_asset_1_1_path_abd29565587282b14cb265fb107ae0093.html#abd29565587282b14cb265fb107ae0093',1,'CodeSmileEditor::Asset::Path']]], - ['fulllibrarypath_18',['FullLibraryPath',['../class_code_smile_editor_1_1_asset_1_1_path_a005a32c04a661e398af4f2a6f866242a.html#a005a32c04a661e398af4f2a6f866242a',1,'CodeSmileEditor::Asset::Path']]], - ['fulllogspath_19',['FullLogsPath',['../class_code_smile_editor_1_1_asset_1_1_path_a6724fa2743590cd1a81b41b61102e7fe.html#a6724fa2743590cd1a81b41b61102e7fe',1,'CodeSmileEditor::Asset::Path']]], - ['fullpackagespath_20',['FullPackagesPath',['../class_code_smile_editor_1_1_asset_1_1_path_ad031047c157ca34623ef3d8794c321a4.html#ad031047c157ca34623ef3d8794c321a4',1,'CodeSmileEditor::Asset::Path']]], - ['fullpath_21',['FullPath',['../class_code_smile_editor_1_1_asset_1_1_path_af15b23e15a17c04d3a45a054a18d6443.html#af15b23e15a17c04d3a45a054a18d6443',1,'CodeSmileEditor::Asset::Path']]], - ['fullprojectpath_22',['FullProjectPath',['../class_code_smile_editor_1_1_asset_1_1_path_a3a4a27e26891e69d91d724cdf661656e.html#a3a4a27e26891e69d91d724cdf661656e',1,'CodeSmileEditor::Asset::Path']]], - ['fullprojectsettingspath_23',['FullProjectSettingsPath',['../class_code_smile_editor_1_1_asset_1_1_path_ac7167ec9e63c61ff6a42a820af23747c.html#ac7167ec9e63c61ff6a42a820af23747c',1,'CodeSmileEditor::Asset::Path']]], - ['fullprojecttemppath_24',['FullProjectTempPath',['../class_code_smile_editor_1_1_asset_1_1_path_a77508ff7f04d30b6160f254e53adbeb6.html#a77508ff7f04d30b6160f254e53adbeb6',1,'CodeSmileEditor::Asset::Path']]], - ['fullusersettingspath_25',['FullUserSettingsPath',['../class_code_smile_editor_1_1_asset_1_1_path_a2fcfa4fd2c52adca3fa729bf78e72d3b.html#a2fcfa4fd2c52adca3fa729bf78e72d3b',1,'CodeSmileEditor::Asset::Path']]] + ['feb_2001_202024_1',['v1.9.1 - Feb 01, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v191---feb-01-2024',1,'']]], + ['feeback_20inquiries_2',['Support, Feeback, Inquiries',['../index.html#support-feeback-inquiries',1,'']]], + ['file_3',['File',['../class_code_smile_editor_1_1_asset_1_1_file.html',1,'CodeSmileEditor::Asset']]], + ['fileexists_4',['FileExists',['../class_code_smile_editor_1_1_asset_1_1_path_ae2e7b500cc4d1f97b7c6051181aa833f.html#ae2e7b500cc4d1f97b7c6051181aa833f',1,'CodeSmileEditor::Asset::Path']]], + ['fileid_5',['FileId',['../class_code_smile_editor_1_1_asset_a2d3c3468bf091cc7260b4cdca91b4a55.html#a2d3c3468bf091cc7260b4cdca91b4a55',1,'CodeSmileEditor::Asset']]], + ['filename_6',['FileName',['../class_code_smile_editor_1_1_asset_1_1_path_a5066dd8adab56e4ea54fe46b9db3bd9a.html#a5066dd8adab56e4ea54fe46b9db3bd9a',1,'CodeSmileEditor::Asset::Path']]], + ['filenamewithoutextension_7',['FileNameWithoutExtension',['../class_code_smile_editor_1_1_asset_1_1_path_a3693da5482c390a2146fe9dc6d38b197.html#a3693da5482c390a2146fe9dc6d38b197',1,'CodeSmileEditor::Asset::Path']]], + ['find_8',['Find',['../class_code_smile_editor_1_1_asset_1_1_file_a9824149809d0caf6b7853241fe518852.html#a9824149809d0caf6b7853241fe518852',1,'CodeSmileEditor::Asset::File']]], + ['findguids_9',['FindGuids',['../class_code_smile_editor_1_1_asset_1_1_file_a6a20df93ae9409f4216c6f98cf334c30.html#a6a20df93ae9409f4216c6f98cf334c30',1,'CodeSmileEditor::Asset::File']]], + ['findpaths_10',['FindPaths',['../class_code_smile_editor_1_1_asset_1_1_file_aeb2b5afda3ab0df2521ff86e9d7c80b8.html#aeb2b5afda3ab0df2521ff86e9d7c80b8',1,'CodeSmileEditor.Asset.File.FindPaths([NotNull] String filter, String[] searchInFolders=null)'],['../class_code_smile_editor_1_1_asset_1_1_file_a3e3543e7c5f85939c0a53e5e0a95fb80.html#a3e3543e7c5f85939c0a53e5e0a95fb80',1,'CodeSmileEditor.Asset.File.FindPaths([NotNull] String filter, Path[] searchInFolders=null)']]], + ['folderexists_11',['FolderExists',['../class_code_smile_editor_1_1_asset_1_1_path_a18386e05fe0620f7baaa0c21543f455c.html#a18386e05fe0620f7baaa0c21543f455c',1,'CodeSmileEditor::Asset::Path']]], + ['folderpath_12',['FolderPath',['../class_code_smile_editor_1_1_asset_1_1_path_a86fde1a385ff90d8002ae30a7c39cab9.html#a86fde1a385ff90d8002ae30a7c39cab9',1,'CodeSmileEditor::Asset::Path']]], + ['forceremove_13',['ForceRemove',['../class_code_smile_editor_1_1_asset_1_1_bundle_a7393007e2bfa2a7dafd3e6bf47115f53.html#a7393007e2bfa2a7dafd3e6bf47115f53',1,'CodeSmileEditor::Asset::Bundle']]], + ['forcesave_14',['ForceSave',['../class_code_smile_editor_1_1_asset_a80bd55f3de91ab63e74b3f66c1d1dd4b.html#a80bd55f3de91ab63e74b3f66c1d1dd4b',1,'CodeSmileEditor.Asset.ForceSave()'],['../class_code_smile_editor_1_1_asset_1_1_file_af8f67d95622e7afce379eaa04c82eaf6.html#af8f67d95622e7afce379eaa04c82eaf6',1,'CodeSmileEditor.Asset.File.ForceSave()']]], + ['free_20gpl_20license_15',['FREE => GPL License',['../index.html#free--gpl-license',1,'']]], + ['from_20me_16',['What to expect from me?',['../index.html#what-to-expect-from-me',1,'']]], + ['frommeta_17',['FromMeta',['../class_code_smile_editor_1_1_asset_1_1_path_a18298002ca84eab9c56ac238dedc53e8.html#a18298002ca84eab9c56ac238dedc53e8',1,'CodeSmileEditor::Asset::Path']]], + ['fullassetspath_18',['FullAssetsPath',['../class_code_smile_editor_1_1_asset_1_1_path_abd29565587282b14cb265fb107ae0093.html#abd29565587282b14cb265fb107ae0093',1,'CodeSmileEditor::Asset::Path']]], + ['fulllibrarypath_19',['FullLibraryPath',['../class_code_smile_editor_1_1_asset_1_1_path_a005a32c04a661e398af4f2a6f866242a.html#a005a32c04a661e398af4f2a6f866242a',1,'CodeSmileEditor::Asset::Path']]], + ['fulllogspath_20',['FullLogsPath',['../class_code_smile_editor_1_1_asset_1_1_path_a6724fa2743590cd1a81b41b61102e7fe.html#a6724fa2743590cd1a81b41b61102e7fe',1,'CodeSmileEditor::Asset::Path']]], + ['fullpackagespath_21',['FullPackagesPath',['../class_code_smile_editor_1_1_asset_1_1_path_ad031047c157ca34623ef3d8794c321a4.html#ad031047c157ca34623ef3d8794c321a4',1,'CodeSmileEditor::Asset::Path']]], + ['fullpath_22',['FullPath',['../class_code_smile_editor_1_1_asset_1_1_path_af15b23e15a17c04d3a45a054a18d6443.html#af15b23e15a17c04d3a45a054a18d6443',1,'CodeSmileEditor::Asset::Path']]], + ['fullprojectpath_23',['FullProjectPath',['../class_code_smile_editor_1_1_asset_1_1_path_a3a4a27e26891e69d91d724cdf661656e.html#a3a4a27e26891e69d91d724cdf661656e',1,'CodeSmileEditor::Asset::Path']]], + ['fullprojectsettingspath_24',['FullProjectSettingsPath',['../class_code_smile_editor_1_1_asset_1_1_path_ac7167ec9e63c61ff6a42a820af23747c.html#ac7167ec9e63c61ff6a42a820af23747c',1,'CodeSmileEditor::Asset::Path']]], + ['fullprojecttemppath_25',['FullProjectTempPath',['../class_code_smile_editor_1_1_asset_1_1_path_a77508ff7f04d30b6160f254e53adbeb6.html#a77508ff7f04d30b6160f254e53adbeb6',1,'CodeSmileEditor::Asset::Path']]], + ['fullusersettingspath_26',['FullUserSettingsPath',['../class_code_smile_editor_1_1_asset_1_1_path_a2fcfa4fd2c52adca3fa729bf78e72d3b.html#a2fcfa4fd2c52adca3fa729bf78e72d3b',1,'CodeSmileEditor::Asset::Path']]] ]; diff --git a/html/search/all_14.js b/html/search/all_14.js index 6464cfd9..5653be92 100644 --- a/html/search/all_14.js +++ b/html/search/all_14.js @@ -2,7 +2,7 @@ var searchData= [ ['i_20create_20this_0',['Why did I create this?',['../index.html#why-did-i-create-this',1,'']]], ['icon_1',['Icon',['../class_code_smile_editor_1_1_asset_a68c0326ba0d934f74e65a06f805627e0.html#a68c0326ba0d934f74e65a06f805627e0',1,'CodeSmileEditor::Asset']]], - ['import_2',['Import',['../class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html#ae11a13bfe131ec8b20a5a5667e75ec97',1,'CodeSmileEditor.Asset.File.Import([NotNull] Path path, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188.html#ae3c1d18d1f26557851b440b5704d2188',1,'CodeSmileEditor.Asset.File.Import([NotNull] Path[] paths, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a.html#a39290f9fb99198f7df818bc5cafb0e1a',1,'CodeSmileEditor.Asset.File.Import([NotNull] String[] paths, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_package_ac41a72ed18bd8c2d23212f32791b0a2a.html#ac41a72ed18bd8c2d23212f32791b0a2a',1,'CodeSmileEditor.Asset.Package.Import()']]], + ['import_2',['Import',['../class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html#ae11a13bfe131ec8b20a5a5667e75ec97',1,'CodeSmileEditor.Asset.File.Import([NotNull] Path path, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html#af2ccad52b2993c46962c3dea1c2ef54d',1,'CodeSmileEditor.Asset.File.Import([NotNull] IEnumerable< Path > paths, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html#aff6427c4b634d2e4ff4d23995a3319f0',1,'CodeSmileEditor.Asset.File.Import([NotNull] IEnumerable< string > paths, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_package_ac41a72ed18bd8c2d23212f32791b0a2a.html#ac41a72ed18bd8c2d23212f32791b0a2a',1,'CodeSmileEditor.Asset.Package.Import()']]], ['importall_3',['ImportAll',['../class_code_smile_editor_1_1_asset_1_1_database_a7c993d64861e62fbdcff3700690b2318.html#a7c993d64861e62fbdcff3700690b2318',1,'CodeSmileEditor::Asset::Database']]], ['importandload_3c_20t_20_3e_4',['ImportAndLoad< T >',['../class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0.html#a4dc6aff1e32f03b26ec0e310fb4233c0',1,'CodeSmileEditor::Asset::File']]], ['importer_5',['Importer',['../class_code_smile_editor_1_1_asset_1_1_importer.html',1,'CodeSmileEditor::Asset']]], diff --git a/html/search/all_15.js b/html/search/all_15.js index db4fcbdb..e0cf68f3 100644 --- a/html/search/all_15.js +++ b/html/search/all_15.js @@ -3,6 +3,5 @@ var searchData= ['jan_2022_202024_0',['v1.8.3 - Jan 22, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v183---jan-22-2024',1,'']]], ['jan_2024_202024_1',['v1.8.4 - Jan 24, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v184---jan-24-2024',1,'']]], ['jan_2029_202024_2',['v1.8.5 - Jan 29, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v185---jan-29-2024',1,'']]], - ['jan_2030_202024_3',['v1.8.6 - Jan 30, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v186---jan-30-2024',1,'']]], - ['jan_2031_202024_4',['v1.9.0 - Jan 31, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v190---jan-31-2024',1,'']]] + ['jan_2030_202024_3',['v1.8.6 - Jan 30, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v186---jan-30-2024',1,'']]] ]; diff --git a/html/search/all_1f.js b/html/search/all_1f.js index bbb6293d..98319bd8 100644 --- a/html/search/all_1f.js +++ b/html/search/all_1f.js @@ -20,7 +20,7 @@ var searchData= ['v1_208_204_20jan_2024_202024_17',['v1.8.4 - Jan 24, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v184---jan-24-2024',1,'']]], ['v1_208_205_20jan_2029_202024_18',['v1.8.5 - Jan 29, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v185---jan-29-2024',1,'']]], ['v1_208_206_20jan_2030_202024_19',['v1.8.6 - Jan 30, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v186---jan-30-2024',1,'']]], - ['v1_209_200_20jan_2031_202024_20',['v1.9.0 - Jan 31, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v190---jan-31-2024',1,'']]], + ['v1_209_201_20feb_2001_202024_20',['v1.9.1 - Feb 01, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v191---feb-01-2024',1,'']]], ['versioncontrol_21',['VersionControl',['../class_code_smile_editor_1_1_asset_1_1_version_control.html',1,'CodeSmileEditor::Asset']]], ['visiblesubassets_22',['VisibleSubAssets',['../class_code_smile_editor_1_1_asset_ace611059f2ab296e1be5b51d33617000.html#ace611059f2ab296e1be5b51d33617000',1,'CodeSmileEditor::Asset']]] ]; diff --git a/html/search/all_2.js b/html/search/all_2.js index 1bd7fbad..a930d5b1 100644 --- a/html/search/all_2.js +++ b/html/search/all_2.js @@ -4,7 +4,7 @@ var searchData= ['2_201_20nov_2022_202023_1',['v1.2.1 - Nov 22, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v121---nov-22-2023',1,'']]], ['2_20dec_2026_202023_2',['v1.8.2 - Dec 26, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v182---dec-26-2023',1,'']]], ['2023_3',['2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v100---nov-9-2023',1,'v1.0.0 - Nov 9, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v110---nov-10-2023',1,'v1.1.0 - Nov 10, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v113---nov-12-2023',1,'v1.1.3 - Nov 12, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v114---nov-13-2023',1,'v1.1.4 - Nov 13, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v120---nov-22-2023',1,'v1.2.0 - Nov 22, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v121---nov-22-2023',1,'v1.2.1 - Nov 22, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v130---nov-23-2023',1,'v1.3.0 - Nov 23, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v131---nov-24-2023',1,'v1.3.1 - Nov 24, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v140---nov-24-2023',1,'v1.4.0 - Nov 24, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v141---nov-24-2023',1,'v1.4.1 - Nov 24, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v160---nov-30-2023',1,'v1.6.0 - Nov 30, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v170---dec-03-2023',1,'v1.7.0 - Dec 03, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v171---dec-05-2023',1,'v1.7.1 - Dec 05, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v180---dec-09-2023',1,'v1.8.0 - Dec 09, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v181---dec-21-2023',1,'v1.8.1 - Dec 21, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v182---dec-26-2023',1,'v1.8.2 - Dec 26, 2023']]], - ['2024_4',['2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v183---jan-22-2024',1,'v1.8.3 - Jan 22, 2024'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v184---jan-24-2024',1,'v1.8.4 - Jan 24, 2024'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v185---jan-29-2024',1,'v1.8.5 - Jan 29, 2024'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v186---jan-30-2024',1,'v1.8.6 - Jan 30, 2024'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v190---jan-31-2024',1,'v1.9.0 - Jan 31, 2024']]], + ['2024_4',['2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v183---jan-22-2024',1,'v1.8.3 - Jan 22, 2024'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v184---jan-24-2024',1,'v1.8.4 - Jan 24, 2024'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v185---jan-29-2024',1,'v1.8.5 - Jan 29, 2024'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v186---jan-30-2024',1,'v1.8.6 - Jan 30, 2024'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v191---feb-01-2024',1,'v1.9.1 - Feb 01, 2024']]], ['21_202023_5',['v1.8.1 - Dec 21, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v181---dec-21-2023',1,'']]], ['22_202023_6',['22 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v120---nov-22-2023',1,'v1.2.0 - Nov 22, 2023'],['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v121---nov-22-2023',1,'v1.2.1 - Nov 22, 2023']]], ['22_202024_7',['v1.8.3 - Jan 22, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v183---jan-22-2024',1,'']]], diff --git a/html/search/all_3.js b/html/search/all_3.js index f5b74a4a..57ec17c7 100644 --- a/html/search/all_3.js +++ b/html/search/all_3.js @@ -5,6 +5,5 @@ var searchData= ['3_20jan_2022_202024_2',['v1.8.3 - Jan 22, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v183---jan-22-2024',1,'']]], ['3_20nov_2012_202023_3',['v1.1.3 - Nov 12, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v113---nov-12-2023',1,'']]], ['30_202023_4',['v1.6.0 - Nov 30, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v160---nov-30-2023',1,'']]], - ['30_202024_5',['v1.8.6 - Jan 30, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v186---jan-30-2024',1,'']]], - ['31_202024_6',['v1.9.0 - Jan 31, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v190---jan-31-2024',1,'']]] + ['30_202024_5',['v1.8.6 - Jan 30, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v186---jan-30-2024',1,'']]] ]; diff --git a/html/search/all_9.js b/html/search/all_9.js index 299fef15..42821ec1 100644 --- a/html/search/all_9.js +++ b/html/search/all_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['9_200_20jan_2031_202024_0',['v1.9.0 - Jan 31, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v190---jan-31-2024',1,'']]], + ['9_201_20feb_2001_202024_0',['v1.9.1 - Feb 01, 2024',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v191---feb-01-2024',1,'']]], ['9_202023_1',['v1.0.0 - Nov 9, 2023',['../md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html#v100---nov-9-2023',1,'']]] ]; diff --git a/html/search/functions_7.js b/html/search/functions_7.js index 9a445a2d..b0a26976 100644 --- a/html/search/functions_7.js +++ b/html/search/functions_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['import_0',['Import',['../class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html#ae11a13bfe131ec8b20a5a5667e75ec97',1,'CodeSmileEditor.Asset.File.Import([NotNull] Path path, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188.html#ae3c1d18d1f26557851b440b5704d2188',1,'CodeSmileEditor.Asset.File.Import([NotNull] Path[] paths, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a.html#a39290f9fb99198f7df818bc5cafb0e1a',1,'CodeSmileEditor.Asset.File.Import([NotNull] String[] paths, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_package_ac41a72ed18bd8c2d23212f32791b0a2a.html#ac41a72ed18bd8c2d23212f32791b0a2a',1,'CodeSmileEditor.Asset.Package.Import()']]], + ['import_0',['Import',['../class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html#ae11a13bfe131ec8b20a5a5667e75ec97',1,'CodeSmileEditor.Asset.File.Import([NotNull] Path path, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html#af2ccad52b2993c46962c3dea1c2ef54d',1,'CodeSmileEditor.Asset.File.Import([NotNull] IEnumerable< Path > paths, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html#aff6427c4b634d2e4ff4d23995a3319f0',1,'CodeSmileEditor.Asset.File.Import([NotNull] IEnumerable< string > paths, ImportAssetOptions options=ImportAssetOptions.Default)'],['../class_code_smile_editor_1_1_asset_1_1_package_ac41a72ed18bd8c2d23212f32791b0a2a.html#ac41a72ed18bd8c2d23212f32791b0a2a',1,'CodeSmileEditor.Asset.Package.Import()']]], ['importall_1',['ImportAll',['../class_code_smile_editor_1_1_asset_1_1_database_a7c993d64861e62fbdcff3700690b2318.html#a7c993d64861e62fbdcff3700690b2318',1,'CodeSmileEditor::Asset::Database']]], ['importandload_3c_20t_20_3e_2',['ImportAndLoad< T >',['../class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0.html#a4dc6aff1e32f03b26ec0e310fb4233c0',1,'CodeSmileEditor::Asset::File']]], ['importinteractive_3',['ImportInteractive',['../class_code_smile_editor_1_1_asset_1_1_package_a99d2e4c6e164f99d46f0da6cb23d9aa9.html#a99d2e4c6e164f99d46f0da6cb23d9aa9',1,'CodeSmileEditor::Asset::Package']]], diff --git a/html/sitemap.xml b/html/sitemap.xml index 0817979c..422a6b4e 100644 --- a/html/sitemap.xml +++ b/html/sitemap.xml @@ -4,9 +4,6 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> - - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_package_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_bundle_8cs_source.html @@ -14,28 +11,34 @@ https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_database_8_cache_server_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_package_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_database_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_dependency_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_dependency_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_database_8cs_source.html https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_label_8cs_source.html + + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_importer_8cs_source.html + + + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_database_8_cache_server_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_file_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_importer_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_sub_asset_8cs_source.html https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_path_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_version_control_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_properties_8cs_source.html https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_path_8_static_8cs_source.html @@ -44,22 +47,19 @@ https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_string_extensions_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_status_8cs_source.html - - - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_properties_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_static_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_load_exception_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_throw_if_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_sub_asset_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_status_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_static_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_load_exception_8cs_source.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_throw_if_8cs_source.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/_asset_8_version_control_8cs_source.html https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.html @@ -509,13 +509,13 @@ https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/class_code_smile_editor_1_1_asset_1_1_file_ab9e60595a8cc5748f38f91b3ed83aeca.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0.html - https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a.html + https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97.html https://codesmile-0000011110110111.github.io/de.codesmile.editor.assetdatabase/html/sitemap.xml/class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0.html diff --git a/latex/_asset_8_file_8cs_source.tex b/latex/_asset_8_file_8cs_source.tex index 9eca6ea2..777a0c39 100644 --- a/latex/_asset_8_file_8cs_source.tex +++ b/latex/_asset_8_file_8cs_source.tex @@ -90,11 +90,11 @@ \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00305}00305\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ where\ T\ :\ Object\ =>\ Load(path);} \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00306}00306\ } \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00320}00320\ \ \ \ \ \ \ \ \ \ \ \ \ public\ static\ \textcolor{keywordtype}{void}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00321}\mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188_ae3c1d18d1f26557851b440b5704d2188}{00321}}\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Import([NotNull]\ \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}}[]\ paths,\ ImportAssetOptions\ options\ =\ ImportAssetOptions.Default)\ =>} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00322}00322\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Import(\mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}}.ToStrings(paths),\ options);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00321}\mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d_af2ccad52b2993c46962c3dea1c2ef54d}{00321}}\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Import([NotNull]\ IEnumerable<\mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}}>\ paths,\ ImportAssetOptions\ options\ =\ ImportAssetOptions.Default)\ =>} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00322}00322\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Import(\mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}}.ToStrings(paths.ToArray()),\ options);} \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00323}00323\ } \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00337}00337\ \ \ \ \ \ \ \ \ \ \ \ \ public\ static\ \textcolor{keywordtype}{void}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00338}\mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a_a39290f9fb99198f7df818bc5cafb0e1a}{00338}}\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Import([NotNull]\ String[]\ paths,\ ImportAssetOptions\ options\ =\ ImportAssetOptions.Default)\ =>\ \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ab0082c2158f7de6376b26a75827bd7a2_ab0082c2158f7de6376b26a75827bd7a2}{BatchEditing}}(} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00338}\mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0_aff6427c4b634d2e4ff4d23995a3319f0}{00338}}\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Import([NotNull]\ IEnumerable<\textcolor{keywordtype}{string}>\ paths,\ ImportAssetOptions\ options\ =\ ImportAssetOptions.Default)\ =>\ \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ab0082c2158f7de6376b26a75827bd7a2_ab0082c2158f7de6376b26a75827bd7a2}{BatchEditing}}(} \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00339}00339\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ()\ =>} \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00340}00340\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \{} \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l00341}00341\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keywordflow}{foreach}\ (var\ path\ \textcolor{keywordflow}{in}\ paths)} @@ -325,36 +325,45 @@ \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01048}01048\ } \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01049}01049\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ destinationPath.CreateFolders();} \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01050}01050\ } -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01051}01051\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ var\ success\ =\ AssetDatabase.CopyAsset(sourcePath,\ destinationPath);} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01052}01052\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ SetLastErrorMessage(success\ ?\ String.Empty\ :\ \$\textcolor{stringliteral}{"{}failed\ to\ copy\ \{sourcePath\}\ to\ \{destinationPath\}"{}});} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01053}01053\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keywordflow}{return}\ success;} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01054}01054\ \ \ \ \ \ \ \ \ \ \ \ \ \}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01055}01055\ } -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01056}01056\ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keyword}{private}\ \textcolor{keyword}{static}\ \textcolor{keywordtype}{void}\ SaveInternal([NotNull]\ Object\ asset,\ Boolean\ forceSave\ =\ \textcolor{keyword}{false})} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01057}01057\ \ \ \ \ \ \ \ \ \ \ \ \ \{} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01058}01058\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ThrowIf.ArgumentIsNull(asset,\ nameof(asset));} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01059}01059\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ThrowIf.NotInDatabase(asset);} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01060}01060\ } -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01061}01061\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keywordflow}{if}\ (forceSave)} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01062}01062\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ EditorUtility.SetDirty(asset);} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01063}01063\ } -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01064}01064\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ AssetDatabase.SaveAssetIfDirty(asset);} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01065}01065\ \ \ \ \ \ \ \ \ \ \ \ \ \}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01066}01066\ } -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01067}01067\ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keyword}{private}\ \textcolor{keyword}{static}\ \textcolor{keywordtype}{void}\ ImportIfNotImported([NotNull]\ Path\ path,} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01068}01068\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ImportAssetOptions\ options\ =\ ImportAssetOptions.Default)} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01069}01069\ \ \ \ \ \ \ \ \ \ \ \ \ \{} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01070}01070\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{comment}{//\ Not\ in\ database\ but\ on\ disk?\ =>\ Import\ path}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01071}01071\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{comment}{//\ Cannot\ determine\ if\ existing\ file\ has\ been\ updated\ though.}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01072}01072\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keywordflow}{if}\ (path.Exists\ ==\ \textcolor{keyword}{false}\ \&\&\ path.ExistsInFileSystem)} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01073}01073\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}{Import}}(path,\ options);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01051}01051\ \textcolor{preprocessor}{\#if\ UNITY\_2022\_1\_OR\_NEWER}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01052}01052\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ var\ success\ =\ AssetDatabase.CopyAsset(sourcePath,\ destinationPath);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01053}01053\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ SetLastErrorMessage(success\ ?\ String.Empty\ :\ \$\textcolor{stringliteral}{"{}failed\ to\ copy\ \{sourcePath\}\ to\ \{destinationPath\}"{}});} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01054}01054\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keywordflow}{return}\ success;} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01055}01055\ \textcolor{preprocessor}{\#else}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01056}01056\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{comment}{//\ in\ Unity\ 2021\ we\ have\ to\ load,\ clone\ and\ create\ instead}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01057}01057\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{comment}{//\ because\ object\ and\ file\ name\ have\ to\ match\ (likely\ a\ bug\ in\ that\ version)}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01058}01058\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ var\ original\ =\ LoadMain(sourcePath);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01059}01059\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ var\ copy\ =\ Object.Instantiate(original);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01060}01060\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ copy\ =\ \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d222_a64bf135da6d9a9b8a5b59c50e839d222}{Create}}(copy,\ destinationPath);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01061}01061\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keywordflow}{return}\ copy\ !=\ \textcolor{keyword}{null};} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01062}01062\ \textcolor{preprocessor}{\#endif}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01063}01063\ \ \ \ \ \ \ \ \ \ \ \ \ \}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01064}01064\ } +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01065}01065\ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keyword}{private}\ \textcolor{keyword}{static}\ \textcolor{keywordtype}{void}\ SaveInternal([NotNull]\ Object\ asset,\ Boolean\ forceSave\ =\ \textcolor{keyword}{false})} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01066}01066\ \ \ \ \ \ \ \ \ \ \ \ \ \{} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01067}01067\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ThrowIf.ArgumentIsNull(asset,\ nameof(asset));} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01068}01068\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ThrowIf.NotInDatabase(asset);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01069}01069\ } +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01070}01070\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keywordflow}{if}\ (forceSave)} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01071}01071\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ EditorUtility.SetDirty(asset);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01072}01072\ } +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01073}01073\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ AssetDatabase.SaveAssetIfDirty(asset);} \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01074}01074\ \ \ \ \ \ \ \ \ \ \ \ \ \}} \DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01075}01075\ } -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01076}01076\ \textcolor{preprocessor}{\#if\ !UNITY\_2022\_2\_OR\_NEWER\ }\textcolor{comment}{//\ dummy\ for\ LoadAsync\ in\ earlier\ versions}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01077}01077\ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keyword}{public}\ \textcolor{keyword}{class\ }AssetDatabaseLoadOperation\ \{\}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01078}01078\ \textcolor{preprocessor}{\#endif}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01079}01079\ \ \ \ \ \ \ \ \ \}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01080}01080\ \ \ \ \ \}} -\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01081}01081\ \}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01076}01076\ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keyword}{private}\ \textcolor{keyword}{static}\ \textcolor{keywordtype}{void}\ ImportIfNotImported([NotNull]\ Path\ path,} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01077}01077\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ImportAssetOptions\ options\ =\ ImportAssetOptions.Default)} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01078}01078\ \ \ \ \ \ \ \ \ \ \ \ \ \{} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01079}01079\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{comment}{//\ Not\ in\ database\ but\ on\ disk?\ =>\ Import\ path}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01080}01080\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{comment}{//\ Cannot\ determine\ if\ existing\ file\ has\ been\ updated\ though.}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01081}01081\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keywordflow}{if}\ (path.Exists\ ==\ \textcolor{keyword}{false}\ \&\&\ path.ExistsInFileSystem)} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01082}01082\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}{Import}}(path,\ options);} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01083}01083\ \ \ \ \ \ \ \ \ \ \ \ \ \}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01084}01084\ } +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01085}01085\ \textcolor{preprocessor}{\#if\ !UNITY\_2022\_2\_OR\_NEWER\ }\textcolor{comment}{//\ dummy\ for\ LoadAsync\ in\ earlier\ versions}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01086}01086\ \ \ \ \ \ \ \ \ \ \ \ \ \textcolor{keyword}{public}\ \textcolor{keyword}{class\ }AssetDatabaseLoadOperation\ \{\}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01087}01087\ \textcolor{preprocessor}{\#endif}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01088}01088\ \ \ \ \ \ \ \ \ \}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01089}01089\ \ \ \ \ \}} +\DoxyCodeLine{\Hypertarget{_asset_8_file_8cs_source_l01090}01090\ \}} \end{DoxyCode} diff --git a/latex/class_code_smile_editor_1_1_asset_1_1_database.tex b/latex/class_code_smile_editor_1_1_asset_1_1_database.tex index 4b6a2a95..023243b5 100644 --- a/latex/class_code_smile_editor_1_1_asset_1_1_database.tex +++ b/latex/class_code_smile_editor_1_1_asset_1_1_database.tex @@ -167,7 +167,7 @@ Scans for {\bfseries{external}} file system modifications and updates the Database accordingly. Prefer to use \doxylink{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}{Code\+Smile\+Editor.\+Asset.\+File.\+Import} within \doxylink{class_code_smile_editor_1_1_asset_1_1_file_ab0082c2158f7de6376b26a75827bd7a2_ab0082c2158f7de6376b26a75827bd7a2}{Code\+Smile\+Editor.\+Asset.\+File.\+Batch\+Editing}. {\bfseries{CAUTION}}\+: Import\+All (\textquotesingle{}Refresh\textquotesingle{}) unloads unused resources. This can degrade editor performance! -For best performance, prefer to use \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a_a39290f9fb99198f7df818bc5cafb0e1a}{Code\+Smile\+Editor.\+Asset.\+File.\+Import(\+String\mbox{[}$\,$\mbox{]},\+Import\+Asset\+Options)} to import multiple assets in a batch operation. +For best performance, prefer to use Code\+Smile\+Editor.\+Asset.\+File.\+Import(\+String\mbox{[}$\,$\mbox{]},\+Import\+Asset\+Options) to import multiple assets in a batch operation. When to call Import\+All (same as Asset\+Database.\+Refresh)\+: \begin{DoxyItemize} @@ -204,7 +204,7 @@ \end{DoxySeeAlso} \begin{DoxyItemize} -\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a_a39290f9fb99198f7df818bc5cafb0e1a}{Code\+Smile\+Editor.\+Asset.\+File.\+Import(\+String\mbox{[}$\,$\mbox{]},\+Import\+Asset\+Options)} +\item Code\+Smile\+Editor.\+Asset.\+File.\+Import(\+String\mbox{[}$\,$\mbox{]},\+Import\+Asset\+Options) \item \href{https://docs.unity3d.com/ScriptReference/AssetDatabase.Refresh.html}{\texttt{ Asset\+Database.\+Refresh}} \end{DoxyItemize}\Hypertarget{class_code_smile_editor_1_1_asset_1_1_database_afa24e66e009892bc1032c64f512f349d_afa24e66e009892bc1032c64f512f349d}\label{class_code_smile_editor_1_1_asset_1_1_database_afa24e66e009892bc1032c64f512f349d_afa24e66e009892bc1032c64f512f349d} \index{Asset.Database@{Asset.Database}!ReleaseFileHandles@{ReleaseFileHandles}} diff --git a/latex/class_code_smile_editor_1_1_asset_1_1_file.tex b/latex/class_code_smile_editor_1_1_asset_1_1_file.tex index cf2c15d1..e92fda3d 100644 --- a/latex/class_code_smile_editor_1_1_asset_1_1_file.tex +++ b/latex/class_code_smile_editor_1_1_asset_1_1_file.tex @@ -78,12 +78,12 @@ \begin{DoxyCompactList}\small\item\em Returns the type of the main asset for the GUID. \end{DoxyCompactList}\item static Type \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ab9e60595a8cc5748f38f91b3ed83aeca_ab9e60595a8cc5748f38f91b3ed83aeca}{Get\+Sub\+Type}} (\mbox{[}Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}} path, Int64 file\+Id) \begin{DoxyCompactList}\small\item\em Gets the type of a sub asset by the main asset\textquotesingle{}s path and the local file ID of the sub-\/asset. \end{DoxyCompactList}\item -static void \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}{Import}} (\mbox{[}Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}} path, Import\+Asset\+Options options=Import\+Asset\+Options.\+Default) -\begin{DoxyCompactList}\small\item\em Imports a file at a given path that was created or modified \textquotesingle{}externally\textquotesingle{}. Externally refers to any means other than Asset\+Database methods such as System.\+IO or batch scripts. \end{DoxyCompactList}\item -static void \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188_ae3c1d18d1f26557851b440b5704d2188}{Import}} (\mbox{[}Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}}\mbox{[}$\,$\mbox{]} paths, Import\+Asset\+Options options=Import\+Asset\+Options.\+Default) +static void \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d_af2ccad52b2993c46962c3dea1c2ef54d}{Import}} (\mbox{[}Not\+Null\mbox{]} IEnumerable$<$ \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}} $>$ paths, Import\+Asset\+Options options=Import\+Asset\+Options.\+Default) \begin{DoxyCompactList}\small\item\em Imports multiple paths that were created or modified \textquotesingle{}externally\textquotesingle{}. Externally refers to any means other than Asset\+Database methods such as System.\+IO or batch scripts. \end{DoxyCompactList}\item -static void \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a_a39290f9fb99198f7df818bc5cafb0e1a}{Import}} (\mbox{[}Not\+Null\mbox{]} String\mbox{[}$\,$\mbox{]} paths, Import\+Asset\+Options options=Import\+Asset\+Options.\+Default) +static void \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0_aff6427c4b634d2e4ff4d23995a3319f0}{Import}} (\mbox{[}Not\+Null\mbox{]} IEnumerable$<$ string $>$ paths, Import\+Asset\+Options options=Import\+Asset\+Options.\+Default) \begin{DoxyCompactList}\small\item\em Imports multiple paths that were created or modified \textquotesingle{}externally\textquotesingle{}. Externally refers to any means other than Asset\+Database methods such as System.\+IO or batch scripts. \end{DoxyCompactList}\item +static void \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}{Import}} (\mbox{[}Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}} path, Import\+Asset\+Options options=Import\+Asset\+Options.\+Default) +\begin{DoxyCompactList}\small\item\em Imports a file at a given path that was created or modified \textquotesingle{}externally\textquotesingle{}. Externally refers to any means other than Asset\+Database methods such as System.\+IO or batch scripts. \end{DoxyCompactList}\item static T \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0}{Import\+And\+Load$<$ T $>$}} (\mbox{[}Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}} path, Import\+Asset\+Options options=Import\+Asset\+Options.\+Default) \begin{DoxyCompactList}\small\item\em Imports a file at a given path that was created or modified \textquotesingle{}externally\textquotesingle{}, then loads and returns the asset object. See \doxylink{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}{Code\+Smile\+Editor.\+Asset.\+File.\+Import} for more info. \end{DoxyCompactList}\item static T \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_file_a4f89e334c74903942522d0e0066d28b7_a4f89e334c74903942522d0e0066d28b7}{Load$<$ T $>$}} (\mbox{[}Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}} path) @@ -1143,25 +1143,21 @@ \begin{DoxyItemize} \item \href{https://docs.unity3d.com/ScriptReference/AssetDatabase.GetTypeFromPathAndFileID.html}{\texttt{ Asset\+Database.\+Get\+Type\+From\+Path\+And\+File\+ID}} -\end{DoxyItemize}\Hypertarget{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}\label{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97} +\end{DoxyItemize}\Hypertarget{class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d_af2ccad52b2993c46962c3dea1c2ef54d}\label{class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d_af2ccad52b2993c46962c3dea1c2ef54d} \index{Asset.File@{Asset.File}!Import@{Import}} \index{Import@{Import}!Asset.File@{Asset.File}} \doxyparagraph{\texorpdfstring{Import()}{Import()}\hspace{0.1cm}{\footnotesize\ttfamily [1/3]}} -{\footnotesize\ttfamily static void Import (\begin{DoxyParamCaption}\item[{\mbox{[}\+Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}}}]{path, }\item[{Import\+Asset\+Options}]{options = {\ttfamily ImportAssetOptions\+:\+:Default} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily static void Import (\begin{DoxyParamCaption}\item[{\mbox{[}\+Not\+Null\mbox{]} IEnumerable$<$ \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}} $>$}]{paths, }\item[{Import\+Asset\+Options}]{options = {\ttfamily ImportAssetOptions.Default} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} -Imports a file at a given path that was created or modified \textquotesingle{}externally\textquotesingle{}. Externally refers to any means other than Asset\+Database methods such as System.\+IO or batch scripts. +Imports multiple paths that were created or modified \textquotesingle{}externally\textquotesingle{}. Externally refers to any means other than Asset\+Database methods such as System.\+IO or batch scripts. -You may want to use the Create overloads that automatically create the file, then import and load the new file\+: -\begin{DoxyItemize} -\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d222_a64bf135da6d9a9b8a5b59c50e839d222}{Code\+Smile\+Editor.\+Asset.\+File.\+Create(\+Byte\mbox{[}$\,$\mbox{]},\+Code\+Smile\+Editor.\+Asset.\+Path)} -\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a57a28b554ce2ca500c6eeba3a17852b2_a57a28b554ce2ca500c6eeba3a17852b2}{Code\+Smile\+Editor.\+Asset.\+File.\+Create(\+String,\+Code\+Smile\+Editor.\+Asset.\+Path)} -\end{DoxyItemize} +Internally runs Batch\+Editing to batch the import operations. \begin{DoxyParams}{Parameters} -{\em path} & Path to an asset.\\ +{\em paths} & Paths to assets.\\ \hline {\em options} & \href{https://docs.unity3d.com/ScriptReference/ImportAssetOptions.html}{\texttt{ Import\+Asset\+Options}} \\ \hline @@ -1173,40 +1169,13 @@ \end{DoxySeeAlso} \begin{DoxyItemize} -\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0}{Code\+Smile\+Editor.\+Asset.\+File.\+Import\+And\+Load$<$\+T$>$} -\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d222_a64bf135da6d9a9b8a5b59c50e839d222}{Code\+Smile\+Editor.\+Asset.\+File.\+Create(\+Byte\mbox{[}$\,$\mbox{]},\+Code\+Smile\+Editor.\+Asset.\+Path)} -\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a57a28b554ce2ca500c6eeba3a17852b2_a57a28b554ce2ca500c6eeba3a17852b2}{Code\+Smile\+Editor.\+Asset.\+File.\+Create(\+String,\+Code\+Smile\+Editor.\+Asset.\+Path)} +\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_ab0082c2158f7de6376b26a75827bd7a2_ab0082c2158f7de6376b26a75827bd7a2}{Code\+Smile\+Editor.\+Asset.\+File.\+Batch\+Editing} \item \href{https://docs.unity3d.com/ScriptReference/AssetDatabase.ImportAsset.html}{\texttt{ Asset\+Database.\+Import\+Asset}} -\end{DoxyItemize} - -Definition at line \mbox{\hyperlink{_asset_8_file_8cs_source_l00271}{271}} of file \mbox{\hyperlink{_asset_8_file_8cs_source}{Asset.\+File.\+cs}}. - - -\begin{DoxyCode}{0} -\DoxyCodeLine{00272\ \ \ \ \ \ \ \ \ \ \ \ \ \{} -\DoxyCodeLine{00273\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ThrowIf.ArgumentIsNull(path,\ nameof(path));} -\DoxyCodeLine{00274\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ThrowIf.DoesNotExistInFileSystem(path);} -\DoxyCodeLine{00275\ } -\DoxyCodeLine{00276\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ AssetDatabase.ImportAsset(path,\ options);} -\DoxyCodeLine{00277\ \ \ \ \ \ \ \ \ \ \ \ \ \}} - -\end{DoxyCode} - - -Referenced by \mbox{\hyperlink{_asset_8_sub_asset_8cs_source_l00096}{Asset.\+Sub\+Asset.\+Set\+Main()}}. - -Here is the caller graph for this function\+:\nopagebreak -\begin{figure}[H] -\begin{center} -\leavevmode -\includegraphics[width=297pt]{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97_icgraph} -\end{center} -\end{figure} -\Hypertarget{class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188_ae3c1d18d1f26557851b440b5704d2188}\label{class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188_ae3c1d18d1f26557851b440b5704d2188} +\end{DoxyItemize}\Hypertarget{class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0_aff6427c4b634d2e4ff4d23995a3319f0}\label{class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0_aff6427c4b634d2e4ff4d23995a3319f0} \index{Asset.File@{Asset.File}!Import@{Import}} \index{Import@{Import}!Asset.File@{Asset.File}} \doxyparagraph{\texorpdfstring{Import()}{Import()}\hspace{0.1cm}{\footnotesize\ttfamily [2/3]}} -{\footnotesize\ttfamily static void Import (\begin{DoxyParamCaption}\item[{\mbox{[}\+Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}}\mbox{[}$\,$\mbox{]}}]{paths, }\item[{Import\+Asset\+Options}]{options = {\ttfamily ImportAssetOptions.Default} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily static void Import (\begin{DoxyParamCaption}\item[{\mbox{[}\+Not\+Null\mbox{]} IEnumerable$<$ string $>$}]{paths, }\item[{Import\+Asset\+Options}]{options = {\ttfamily ImportAssetOptions.Default} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} @@ -1230,21 +1199,25 @@ \begin{DoxyItemize} \item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_ab0082c2158f7de6376b26a75827bd7a2_ab0082c2158f7de6376b26a75827bd7a2}{Code\+Smile\+Editor.\+Asset.\+File.\+Batch\+Editing} \item \href{https://docs.unity3d.com/ScriptReference/AssetDatabase.ImportAsset.html}{\texttt{ Asset\+Database.\+Import\+Asset}} -\end{DoxyItemize}\Hypertarget{class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a_a39290f9fb99198f7df818bc5cafb0e1a}\label{class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a_a39290f9fb99198f7df818bc5cafb0e1a} +\end{DoxyItemize}\Hypertarget{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}\label{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97} \index{Asset.File@{Asset.File}!Import@{Import}} \index{Import@{Import}!Asset.File@{Asset.File}} \doxyparagraph{\texorpdfstring{Import()}{Import()}\hspace{0.1cm}{\footnotesize\ttfamily [3/3]}} -{\footnotesize\ttfamily static void Import (\begin{DoxyParamCaption}\item[{\mbox{[}\+Not\+Null\mbox{]} String\mbox{[}$\,$\mbox{]}}]{paths, }\item[{Import\+Asset\+Options}]{options = {\ttfamily ImportAssetOptions.Default} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} +{\footnotesize\ttfamily static void Import (\begin{DoxyParamCaption}\item[{\mbox{[}\+Not\+Null\mbox{]} \mbox{\hyperlink{class_code_smile_editor_1_1_asset_1_1_path}{Path}}}]{path, }\item[{Import\+Asset\+Options}]{options = {\ttfamily ImportAssetOptions\+:\+:Default} }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} -Imports multiple paths that were created or modified \textquotesingle{}externally\textquotesingle{}. Externally refers to any means other than Asset\+Database methods such as System.\+IO or batch scripts. +Imports a file at a given path that was created or modified \textquotesingle{}externally\textquotesingle{}. Externally refers to any means other than Asset\+Database methods such as System.\+IO or batch scripts. -Internally runs Batch\+Editing to batch the import operations. +You may want to use the Create overloads that automatically create the file, then import and load the new file\+: +\begin{DoxyItemize} +\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d222_a64bf135da6d9a9b8a5b59c50e839d222}{Code\+Smile\+Editor.\+Asset.\+File.\+Create(\+Byte\mbox{[}$\,$\mbox{]},\+Code\+Smile\+Editor.\+Asset.\+Path)} +\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a57a28b554ce2ca500c6eeba3a17852b2_a57a28b554ce2ca500c6eeba3a17852b2}{Code\+Smile\+Editor.\+Asset.\+File.\+Create(\+String,\+Code\+Smile\+Editor.\+Asset.\+Path)} +\end{DoxyItemize} \begin{DoxyParams}{Parameters} -{\em paths} & Paths to assets.\\ +{\em path} & Path to an asset.\\ \hline {\em options} & \href{https://docs.unity3d.com/ScriptReference/ImportAssetOptions.html}{\texttt{ Import\+Asset\+Options}} \\ \hline @@ -1256,9 +1229,36 @@ \end{DoxySeeAlso} \begin{DoxyItemize} -\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_ab0082c2158f7de6376b26a75827bd7a2_ab0082c2158f7de6376b26a75827bd7a2}{Code\+Smile\+Editor.\+Asset.\+File.\+Batch\+Editing} +\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0}{Code\+Smile\+Editor.\+Asset.\+File.\+Import\+And\+Load$<$\+T$>$} +\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d222_a64bf135da6d9a9b8a5b59c50e839d222}{Code\+Smile\+Editor.\+Asset.\+File.\+Create(\+Byte\mbox{[}$\,$\mbox{]},\+Code\+Smile\+Editor.\+Asset.\+Path)} +\item \doxylink{class_code_smile_editor_1_1_asset_1_1_file_a57a28b554ce2ca500c6eeba3a17852b2_a57a28b554ce2ca500c6eeba3a17852b2}{Code\+Smile\+Editor.\+Asset.\+File.\+Create(\+String,\+Code\+Smile\+Editor.\+Asset.\+Path)} \item \href{https://docs.unity3d.com/ScriptReference/AssetDatabase.ImportAsset.html}{\texttt{ Asset\+Database.\+Import\+Asset}} -\end{DoxyItemize}\Hypertarget{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0}\label{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0} +\end{DoxyItemize} + +Definition at line \mbox{\hyperlink{_asset_8_file_8cs_source_l00271}{271}} of file \mbox{\hyperlink{_asset_8_file_8cs_source}{Asset.\+File.\+cs}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{00272\ \ \ \ \ \ \ \ \ \ \ \ \ \{} +\DoxyCodeLine{00273\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ThrowIf.ArgumentIsNull(path,\ nameof(path));} +\DoxyCodeLine{00274\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ThrowIf.DoesNotExistInFileSystem(path);} +\DoxyCodeLine{00275\ } +\DoxyCodeLine{00276\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ AssetDatabase.ImportAsset(path,\ options);} +\DoxyCodeLine{00277\ \ \ \ \ \ \ \ \ \ \ \ \ \}} + +\end{DoxyCode} + + +Referenced by \mbox{\hyperlink{_asset_8_sub_asset_8cs_source_l00096}{Asset.\+Sub\+Asset.\+Set\+Main()}}. + +Here is the caller graph for this function\+:\nopagebreak +\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[width=297pt]{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97_icgraph} +\end{center} +\end{figure} +\Hypertarget{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0}\label{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0} \index{Asset.File@{Asset.File}!ImportAndLoad$<$ T $>$@{ImportAndLoad$<$ T $>$}} \index{ImportAndLoad$<$ T $>$@{ImportAndLoad$<$ T $>$}!Asset.File@{Asset.File}} \doxyparagraph{\texorpdfstring{ImportAndLoad$<$ T $>$()}{ImportAndLoad< T >()}} diff --git a/latex/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.tex b/latex/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.tex index 42b38f06..3c2ac9a3 100644 --- a/latex/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.tex +++ b/latex/md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.tex @@ -2,7 +2,7 @@ \hypertarget{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g}{}\label{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g}\index{Change Log@{Change Log}} \label{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_change-log}% \Hypertarget{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_change-log}% - \hypertarget{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v190---jan-31-2024}{}\doxyparagraph{\texorpdfstring{v1.\+9.\+0 -\/ Jan 31, 2024}{v1.\+9.\+0 -\/ Jan 31, 2024}}\label{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v190---jan-31-2024} + \hypertarget{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v191---feb-01-2024}{}\doxyparagraph{\texorpdfstring{v1.\+9.\+1 -\/ Feb 01, 2024}{v1.\+9.\+1 -\/ Feb 01, 2024}}\label{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v191---feb-01-2024} \begin{DoxyItemize} \item API Changes\+: These static methods have been MOVED from {\bfseries{Asset}} to {\bfseries{Asset.\+File}}\+: @@ -12,8 +12,11 @@ \item Get\+Guid \item Get\+File\+Id \item Get\+Guid\+And\+File\+Id -\end{DoxyItemize} \item Rationale\+: These methods hindered API discovery via auto-\/completion by cluttering the Asset namespace, and they truly belong to the File API since they query asset file attributes. +\end{DoxyItemize} +\item Fixed\+: 2021.\+3 shows warning when copying (duplicate, save as new) an asset, complaining that filename must match asset object name. This is likely a bug in Unity. +\item Fixed the same 2021.\+3 issue in workflow sample. Also required importing batched asset after copying them. +\item Asset.\+File.\+Import takes IEnumerable as input (not just array) \end{DoxyItemize}\hypertarget{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v186---jan-30-2024}{}\doxyparagraph{\texorpdfstring{v1.\+8.\+6 -\/ Jan 30, 2024}{v1.\+8.\+6 -\/ Jan 30, 2024}}\label{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v186---jan-30-2024} \begin{DoxyItemize} diff --git a/latex/refman.aux b/latex/refman.aux index a4563462..7d67e7e1 100644 --- a/latex/refman.aux +++ b/latex/refman.aux @@ -36,8 +36,8 @@ \@writefile{toc}{\contentsline {section}{\numberline {2}Change Log}{6}{section.2}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g}{{2}{6}{Change Log}{section.2}{}} \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_change-log}{{2}{6}{Change Log}{section.2}{}} -\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}9.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Jan 31, 2024}{6}{section*.1}\protected@file@percent } -\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v190---jan-31-2024}{{2}{6}{\texorpdfstring {v1.\+9.\+0 -\/ Jan 31, 2024}{v1.\+9.\+0 -\/ Jan 31, 2024}}{section*.1}{}} +\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}9.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Feb 01, 2024}{6}{section*.1}\protected@file@percent } +\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v191---feb-01-2024}{{2}{6}{\texorpdfstring {v1.\+9.\+1 -\/ Feb 01, 2024}{v1.\+9.\+1 -\/ Feb 01, 2024}}{section*.1}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}6 -\/ Jan 30, 2024}{6}{section*.2}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v186---jan-30-2024}{{2}{6}{\texorpdfstring {v1.\+8.\+6 -\/ Jan 30, 2024}{v1.\+8.\+6 -\/ Jan 30, 2024}}{section*.2}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}5 -\/ Jan 29, 2024}{6}{section*.3}\protected@file@percent } @@ -46,8 +46,8 @@ \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v184---jan-24-2024}{{2}{6}{\texorpdfstring {v1.\+8.\+4 -\/ Jan 24, 2024}{v1.\+8.\+4 -\/ Jan 24, 2024}}{section*.4}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3 -\/ Jan 22, 2024}{6}{section*.5}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v183---jan-22-2024}{{2}{6}{\texorpdfstring {v1.\+8.\+3 -\/ Jan 22, 2024}{v1.\+8.\+3 -\/ Jan 22, 2024}}{section*.5}{}} -\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}2 -\/ Dec 26, 2023}{6}{section*.6}\protected@file@percent } -\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v182---dec-26-2023}{{2}{6}{\texorpdfstring {v1.\+8.\+2 -\/ Dec 26, 2023}{v1.\+8.\+2 -\/ Dec 26, 2023}}{section*.6}{}} +\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}2 -\/ Dec 26, 2023}{7}{section*.6}\protected@file@percent } +\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v182---dec-26-2023}{{2}{7}{\texorpdfstring {v1.\+8.\+2 -\/ Dec 26, 2023}{v1.\+8.\+2 -\/ Dec 26, 2023}}{section*.6}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Dec 21, 2023}{7}{section*.7}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v181---dec-21-2023}{{2}{7}{\texorpdfstring {v1.\+8.\+1 -\/ Dec 21, 2023}{v1.\+8.\+1 -\/ Dec 21, 2023}}{section*.7}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Dec 09, 2023}{7}{section*.8}\protected@file@percent } @@ -56,16 +56,16 @@ \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v171---dec-05-2023}{{2}{7}{\texorpdfstring {v1.\+7.\+1 -\/ Dec 05, 2023}{v1.\+7.\+1 -\/ Dec 05, 2023}}{section*.9}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}7.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Dec 03, 2023}{7}{section*.10}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v170---dec-03-2023}{{2}{7}{\texorpdfstring {v1.\+7.\+0 -\/ Dec 03, 2023}{v1.\+7.\+0 -\/ Dec 03, 2023}}{section*.10}{}} -\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}6.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 30, 2023}{7}{section*.11}\protected@file@percent } -\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v160---nov-30-2023}{{2}{7}{\texorpdfstring {v1.\+6.\+0 -\/ Nov 30, 2023}{v1.\+6.\+0 -\/ Nov 30, 2023}}{section*.11}{}} +\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}6.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 30, 2023}{8}{section*.11}\protected@file@percent } +\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v160---nov-30-2023}{{2}{8}{\texorpdfstring {v1.\+6.\+0 -\/ Nov 30, 2023}{v1.\+6.\+0 -\/ Nov 30, 2023}}{section*.11}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}4.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Nov 24, 2023}{8}{section*.12}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v141---nov-24-2023}{{2}{8}{\texorpdfstring {v1.\+4.\+1 -\/ Nov 24, 2023}{v1.\+4.\+1 -\/ Nov 24, 2023}}{section*.12}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}4.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 24, 2023}{8}{section*.13}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v140---nov-24-2023}{{2}{8}{\texorpdfstring {v1.\+4.\+0 -\/ Nov 24, 2023}{v1.\+4.\+0 -\/ Nov 24, 2023}}{section*.13}{}} -\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Nov 24, 2023}{8}{section*.14}\protected@file@percent } -\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v131---nov-24-2023}{{2}{8}{\texorpdfstring {v1.\+3.\+1 -\/ Nov 24, 2023}{v1.\+3.\+1 -\/ Nov 24, 2023}}{section*.14}{}} -\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 23, 2023}{8}{section*.15}\protected@file@percent } -\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v130---nov-23-2023}{{2}{8}{\texorpdfstring {v1.\+3.\+0 -\/ Nov 23, 2023}{v1.\+3.\+0 -\/ Nov 23, 2023}}{section*.15}{}} +\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Nov 24, 2023}{9}{section*.14}\protected@file@percent } +\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v131---nov-24-2023}{{2}{9}{\texorpdfstring {v1.\+3.\+1 -\/ Nov 24, 2023}{v1.\+3.\+1 -\/ Nov 24, 2023}}{section*.14}{}} +\@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 23, 2023}{9}{section*.15}\protected@file@percent } +\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v130---nov-23-2023}{{2}{9}{\texorpdfstring {v1.\+3.\+0 -\/ Nov 23, 2023}{v1.\+3.\+0 -\/ Nov 23, 2023}}{section*.15}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}2.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Nov 22, 2023}{9}{section*.16}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v121---nov-22-2023}{{2}{9}{\texorpdfstring {v1.\+2.\+1 -\/ Nov 22, 2023}{v1.\+2.\+1 -\/ Nov 22, 2023}}{section*.16}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}2.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 22, 2023}{9}{section*.17}\protected@file@percent } @@ -78,16 +78,16 @@ \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v110---nov-10-2023}{{2}{9}{\texorpdfstring {v1.\+1.\+0 -\/ Nov 10, 2023}{v1.\+1.\+0 -\/ Nov 10, 2023}}{section*.20}{}} \@writefile{toc}{\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 9, 2023}{9}{section*.21}\protected@file@percent } \newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g_v100---nov-9-2023}{{2}{9}{\texorpdfstring {v1.\+0.\+0 -\/ Nov 9, 2023}{v1.\+0.\+0 -\/ Nov 9, 2023}}{section*.21}{}} -\@writefile{toc}{\contentsline {section}{\numberline {3}Code\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Smile Packages -\/ Getting Started}{9}{section.3}\protected@file@percent } -\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_g_e_t_t_i_n_g_01_s_t_a_r_t_e_d}{{3}{9}{Code\+Smile Packages -\/ Getting Started}{section.3}{}} -\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_g_e_t_t_i_n_g_01_s_t_a_r_t_e_d_codesmile-packages---getting-started}{{3}{9}{Code\+Smile Packages -\/ Getting Started}{section.3}{}} +\@writefile{toc}{\contentsline {section}{\numberline {3}Code\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Smile Packages -\/ Getting Started}{10}{section.3}\protected@file@percent } +\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_g_e_t_t_i_n_g_01_s_t_a_r_t_e_d}{{3}{10}{Code\+Smile Packages -\/ Getting Started}{section.3}{}} +\newlabel{md__p_1_2de_8codesmile_8assetdatabase_2_g_e_t_t_i_n_g_01_s_t_a_r_t_e_d_codesmile-packages---getting-started}{{3}{10}{Code\+Smile Packages -\/ Getting Started}{section.3}{}} \@writefile{toc}{\contentsline {section}{\numberline {4}Hierarchical Index}{10}{section.4}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Class Hierarchy}{10}{subsection.4.1}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {5}Class Index}{10}{section.5}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Class List}{10}{subsection.5.1}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {6}Namespace Documentation}{11}{section.6}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Code\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Smile\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Editor Namespace Reference}{11}{subsection.6.1}\protected@file@percent } -\newlabel{namespace_code_smile_editor}{{6.1}{11}{Code\+Smile\+Editor Namespace Reference}{subsection.6.1}{}} +\@writefile{toc}{\contentsline {section}{\numberline {5}Class Index}{11}{section.5}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Class List}{11}{subsection.5.1}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {6}Namespace Documentation}{12}{section.6}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Code\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Smile\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Editor Namespace Reference}{12}{subsection.6.1}\protected@file@percent } +\newlabel{namespace_code_smile_editor}{{6.1}{12}{Code\+Smile\+Editor Namespace Reference}{subsection.6.1}{}} \@writefile{toc}{\contentsline {section}{\numberline {7}Class Documentation}{12}{section.7}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Asset Class Reference}{12}{subsection.7.1}\protected@file@percent } \newlabel{class_code_smile_editor_1_1_asset}{{7.1}{12}{Asset Class Reference}{subsection.7.1}{}} @@ -97,11 +97,11 @@ \gdef \LT@ii {\LT@entry {3}{139.33768pt}\LT@entry {3}{81.84235pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.1.1}Detailed Description}{16}{subsubsection.7.1.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.1.2}Constructor \& Destructor Documentation}{16}{subsubsection.7.1.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a547d8367ae51323946fe990575c2840f_a547d8367ae51323946fe990575c2840f}{{7.1.2}{16}{Constructor \& Destructor Documentation}{subsubsection.7.1.2}{}} -\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{16}{section*.28}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a8f0fe59560dc52244f4af7d3875bdea1_a8f0fe59560dc52244f4af7d3875bdea1}{{7.1.2}{16}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{table.2}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.1.1}Detailed Description}{17}{subsubsection.7.1.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.1.2}Constructor \& Destructor Documentation}{17}{subsubsection.7.1.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a547d8367ae51323946fe990575c2840f_a547d8367ae51323946fe990575c2840f}{{7.1.2}{17}{Constructor \& Destructor Documentation}{subsubsection.7.1.2}{}} +\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{17}{section*.28}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a8f0fe59560dc52244f4af7d3875bdea1_a8f0fe59560dc52244f4af7d3875bdea1}{{7.1.2}{17}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{table.2}{}} \gdef \LT@iii {\LT@entry {3}{80.58673pt}\LT@entry {3}{374.65738pt}} @@ -111,9 +111,9 @@ \gdef \LT@v {\LT@entry {3}{80.58673pt}\LT@entry {3}{374.65738pt}} -\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{17}{section*.29}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ac6a1f3eb995796ea388c01daf3f30326_ac6a1f3eb995796ea388c01daf3f30326}{{7.1.2}{17}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{table.4}{}} -\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{17}{section*.30}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{18}{section*.29}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ac6a1f3eb995796ea388c01daf3f30326_ac6a1f3eb995796ea388c01daf3f30326}{{7.1.2}{18}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{table.4}{}} +\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{18}{section*.30}\protected@file@percent } \gdef \LT@vi {\LT@entry {3}{106.83026pt}\LT@entry {3}{169.97752pt}} @@ -123,10 +123,10 @@ \gdef \LT@viii {\LT@entry {3}{106.83026pt}\LT@entry {3}{146.47882pt}} -\newlabel{class_code_smile_editor_1_1_asset_a2139e47981f864d23cbf802ceeadb730_a2139e47981f864d23cbf802ceeadb730}{{7.1.2}{18}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{table.6}{}} -\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{18}{section*.31}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a1b9aaba05c3acd1f57830883c53c0f1c_a1b9aaba05c3acd1f57830883c53c0f1c}{{7.1.2}{18}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{table.8}{}} -\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{19}{section*.32}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a2139e47981f864d23cbf802ceeadb730_a2139e47981f864d23cbf802ceeadb730}{{7.1.2}{19}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{table.6}{}} +\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{19}{section*.31}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a1b9aaba05c3acd1f57830883c53c0f1c_a1b9aaba05c3acd1f57830883c53c0f1c}{{7.1.2}{19}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{table.8}{}} +\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{20}{section*.32}\protected@file@percent } \gdef \LT@ix {\LT@entry {3}{53.31726pt}\LT@entry {3}{83.93042pt}} @@ -139,11 +139,11 @@ \gdef \LT@xii {\LT@entry {3}{106.83026pt}\LT@entry {3}{152.97675pt}} -\newlabel{class_code_smile_editor_1_1_asset_a1c606a7df96ba8897ce11d53af1e5c62_a1c606a7df96ba8897ce11d53af1e5c62}{{7.1.2}{20}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{table.10}{}} -\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{20}{section*.33}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.1.3}Member Function Documentation}{20}{subsubsection.7.1.3}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a2ebda9df65a71b44245f958679cf302a_a2ebda9df65a71b44245f958679cf302a}{{7.1.3}{20}{Member Function Documentation}{subsubsection.7.1.3}{}} -\@writefile{toc}{\contentsline {paragraph}{AddLabel()}{20}{section*.34}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a1c606a7df96ba8897ce11d53af1e5c62_a1c606a7df96ba8897ce11d53af1e5c62}{{7.1.2}{21}{\texorpdfstring {Asset()}{Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{table.10}{}} +\@writefile{toc}{\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{21}{section*.33}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.1.3}Member Function Documentation}{21}{subsubsection.7.1.3}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a2ebda9df65a71b44245f958679cf302a_a2ebda9df65a71b44245f958679cf302a}{{7.1.3}{21}{Member Function Documentation}{subsubsection.7.1.3}{}} +\@writefile{toc}{\contentsline {paragraph}{AddLabel()}{21}{section*.34}\protected@file@percent } \gdef \LT@xiii {\LT@entry {3}{31.80762pt}\LT@entry {3}{79.43947pt}} @@ -153,62 +153,62 @@ \gdef \LT@xv {\LT@entry {3}{46.3154pt}\LT@entry {3}{224.0125pt}} -\newlabel{class_code_smile_editor_1_1_asset_a677d0e58f64014b9722f943987c6ece5_a677d0e58f64014b9722f943987c6ece5}{{7.1.3}{21}{\texorpdfstring {AddLabel()}{AddLabel()}}{table.13}{}} -\@writefile{toc}{\contentsline {paragraph}{AddLabels()}{21}{section*.35}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a7adbbe2c45d2f0188f60917a3d870946_a7adbbe2c45d2f0188f60917a3d870946}{{7.1.3}{21}{\texorpdfstring {AddLabels()}{AddLabels()}}{table.14}{}} -\@writefile{toc}{\contentsline {paragraph}{AddSubAsset()}{21}{section*.36}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a677d0e58f64014b9722f943987c6ece5_a677d0e58f64014b9722f943987c6ece5}{{7.1.3}{22}{\texorpdfstring {AddLabel()}{AddLabel()}}{table.13}{}} +\@writefile{toc}{\contentsline {paragraph}{AddLabels()}{22}{section*.35}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a7adbbe2c45d2f0188f60917a3d870946_a7adbbe2c45d2f0188f60917a3d870946}{{7.1.3}{22}{\texorpdfstring {AddLabels()}{AddLabels()}}{table.14}{}} +\@writefile{toc}{\contentsline {paragraph}{AddSubAsset()}{22}{section*.36}\protected@file@percent } \gdef \LT@xvi {\LT@entry {3}{74.47575pt}\LT@entry {3}{287.20033pt}} -\newlabel{class_code_smile_editor_1_1_asset_a31854cee2c427159e4ff866257872323_a31854cee2c427159e4ff866257872323}{{7.1.3}{22}{\texorpdfstring {AddSubAsset()}{AddSubAsset()}}{table.15}{}} -\@writefile{toc}{\contentsline {paragraph}{CanMove()}{22}{section*.37}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ac1b2c03d50954442d3462c97a5dc8882_ac1b2c03d50954442d3462c97a5dc8882}{{7.1.3}{22}{\texorpdfstring {CanMove()}{CanMove()}}{table.16}{}} -\@writefile{toc}{\contentsline {paragraph}{CanOpenInEditor()}{22}{section*.38}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a1ec7cb3d4ed6edc811690f8855a7982f_a1ec7cb3d4ed6edc811690f8855a7982f}{{7.1.3}{22}{\texorpdfstring {CanOpenInEditor()}{CanOpenInEditor()}}{section*.38}{}} -\@writefile{toc}{\contentsline {paragraph}{ClearLabels()}{23}{section*.39}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_af6ce8c8d3d810ae286e98e54aa360adf_af6ce8c8d3d810ae286e98e54aa360adf}{{7.1.3}{23}{\texorpdfstring {ClearLabels()}{ClearLabels()}}{section*.39}{}} -\@writefile{toc}{\contentsline {paragraph}{Delete()}{23}{section*.40}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ad06bce954d9c1e05d9f53e0274a9f85a_ad06bce954d9c1e05d9f53e0274a9f85a}{{7.1.3}{23}{\texorpdfstring {Delete()}{Delete()}}{figure.caption.41}{}} +\newlabel{class_code_smile_editor_1_1_asset_a31854cee2c427159e4ff866257872323_a31854cee2c427159e4ff866257872323}{{7.1.3}{23}{\texorpdfstring {AddSubAsset()}{AddSubAsset()}}{table.15}{}} +\@writefile{toc}{\contentsline {paragraph}{CanMove()}{23}{section*.37}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ac1b2c03d50954442d3462c97a5dc8882_ac1b2c03d50954442d3462c97a5dc8882}{{7.1.3}{23}{\texorpdfstring {CanMove()}{CanMove()}}{table.16}{}} +\@writefile{toc}{\contentsline {paragraph}{CanOpenInEditor()}{23}{section*.38}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a1ec7cb3d4ed6edc811690f8855a7982f_a1ec7cb3d4ed6edc811690f8855a7982f}{{7.1.3}{23}{\texorpdfstring {CanOpenInEditor()}{CanOpenInEditor()}}{section*.38}{}} +\@writefile{toc}{\contentsline {paragraph}{ClearLabels()}{24}{section*.39}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_af6ce8c8d3d810ae286e98e54aa360adf_af6ce8c8d3d810ae286e98e54aa360adf}{{7.1.3}{24}{\texorpdfstring {ClearLabels()}{ClearLabels()}}{section*.39}{}} +\@writefile{toc}{\contentsline {paragraph}{Delete()}{24}{section*.40}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ad06bce954d9c1e05d9f53e0274a9f85a_ad06bce954d9c1e05d9f53e0274a9f85a}{{7.1.3}{24}{\texorpdfstring {Delete()}{Delete()}}{figure.caption.41}{}} \gdef \LT@xvii {\LT@entry {3}{64.79216pt}\LT@entry {3}{390.45195pt}} -\@writefile{toc}{\contentsline {paragraph}{Duplicate()}{24}{section*.42}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a6e9b9cc6eb629d6e34d6ea90088e0148_a6e9b9cc6eb629d6e34d6ea90088e0148}{{7.1.3}{24}{\texorpdfstring {Duplicate()}{Duplicate()}}{section*.42}{}} -\@writefile{toc}{\contentsline {paragraph}{ExportPackage()}{24}{section*.43}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a80bd55f3de91ab63e74b3f66c1d1dd4b_a80bd55f3de91ab63e74b3f66c1d1dd4b}{{7.1.3}{24}{\texorpdfstring {ExportPackage()}{ExportPackage()}}{table.17}{}} -\@writefile{toc}{\contentsline {paragraph}{ForceSave()}{24}{section*.44}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ac028cbad5fe3dab688c9dff304f80ad2_ac028cbad5fe3dab688c9dff304f80ad2}{{7.1.3}{24}{\texorpdfstring {ForceSave()}{ForceSave()}}{section*.44}{}} -\@writefile{toc}{\contentsline {paragraph}{GetIcon()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{24}{section*.45}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Duplicate()}{25}{section*.42}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a6e9b9cc6eb629d6e34d6ea90088e0148_a6e9b9cc6eb629d6e34d6ea90088e0148}{{7.1.3}{25}{\texorpdfstring {Duplicate()}{Duplicate()}}{section*.42}{}} +\@writefile{toc}{\contentsline {paragraph}{ExportPackage()}{25}{section*.43}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a80bd55f3de91ab63e74b3f66c1d1dd4b_a80bd55f3de91ab63e74b3f66c1d1dd4b}{{7.1.3}{25}{\texorpdfstring {ExportPackage()}{ExportPackage()}}{table.17}{}} +\@writefile{toc}{\contentsline {paragraph}{ForceSave()}{25}{section*.44}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ac028cbad5fe3dab688c9dff304f80ad2_ac028cbad5fe3dab688c9dff304f80ad2}{{7.1.3}{25}{\texorpdfstring {ForceSave()}{ForceSave()}}{section*.44}{}} +\@writefile{toc}{\contentsline {paragraph}{GetIcon()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{25}{section*.45}\protected@file@percent } \gdef \LT@xviii {\LT@entry {3}{34.30963pt}\LT@entry {3}{154.20082pt}} \gdef \LT@xix {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} -\newlabel{class_code_smile_editor_1_1_asset_a8039d1c88de4736a9f3e706e224efdff_a8039d1c88de4736a9f3e706e224efdff}{{7.1.3}{25}{\texorpdfstring {GetIcon()}{GetIcon()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.18}{}} -\@writefile{toc}{\contentsline {paragraph}{GetIcon()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{25}{section*.46}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_af1aa2544ba26b2d2d71f6e7b68f18fac_af1aa2544ba26b2d2d71f6e7b68f18fac}{{7.1.3}{25}{\texorpdfstring {GetIcon()}{GetIcon()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.19}{}} -\@writefile{toc}{\contentsline {paragraph}{GetLastErrorMessage()}{25}{section*.47}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a192accd4daaea8a0cf39c331b9fcb95c_a192accd4daaea8a0cf39c331b9fcb95c}{{7.1.3}{26}{\texorpdfstring {GetLastErrorMessage()}{GetLastErrorMessage()}}{figure.caption.49}{}} -\@writefile{toc}{\contentsline {paragraph}{GetMain$<$ T $>$()}{26}{section*.50}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a8039d1c88de4736a9f3e706e224efdff_a8039d1c88de4736a9f3e706e224efdff}{{7.1.3}{26}{\texorpdfstring {GetIcon()}{GetIcon()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.18}{}} +\@writefile{toc}{\contentsline {paragraph}{GetIcon()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{26}{section*.46}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_af1aa2544ba26b2d2d71f6e7b68f18fac_af1aa2544ba26b2d2d71f6e7b68f18fac}{{7.1.3}{26}{\texorpdfstring {GetIcon()}{GetIcon()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.19}{}} +\@writefile{toc}{\contentsline {paragraph}{GetLastErrorMessage()}{26}{section*.47}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a192accd4daaea8a0cf39c331b9fcb95c_a192accd4daaea8a0cf39c331b9fcb95c}{{7.1.3}{27}{\texorpdfstring {GetLastErrorMessage()}{GetLastErrorMessage()}}{figure.caption.49}{}} +\@writefile{toc}{\contentsline {paragraph}{GetMain$<$ T $>$()}{27}{section*.50}\protected@file@percent } \gdef \LT@xx {\LT@entry {3}{18.29893pt}\LT@entry {3}{165.64893pt}} \gdef \LT@xxi {\LT@entry {3}{18.29893pt}\LT@entry {3}{143.09538pt}} -\newlabel{class_code_smile_editor_1_1_asset_a5d27be243c1f698cba116b768e3f65ec_a5d27be243c1f698cba116b768e3f65ec}{{7.1.3}{27}{\texorpdfstring {GetMain$<$ T $>$()}{GetMain< T >()}}{table.20}{}} -\@writefile{toc}{\contentsline {paragraph}{Load$<$ T $>$()}{27}{section*.51}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a45faf9fc17e3cb57b87d2ae09e4dd7f8_a45faf9fc17e3cb57b87d2ae09e4dd7f8}{{7.1.3}{27}{\texorpdfstring {Load$<$ T $>$()}{Load< T >()}}{table.21}{}} -\@writefile{toc}{\contentsline {paragraph}{Move()}{27}{section*.52}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a5d27be243c1f698cba116b768e3f65ec_a5d27be243c1f698cba116b768e3f65ec}{{7.1.3}{28}{\texorpdfstring {GetMain$<$ T $>$()}{GetMain< T >()}}{table.20}{}} +\@writefile{toc}{\contentsline {paragraph}{Load$<$ T $>$()}{28}{section*.51}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a45faf9fc17e3cb57b87d2ae09e4dd7f8_a45faf9fc17e3cb57b87d2ae09e4dd7f8}{{7.1.3}{28}{\texorpdfstring {Load$<$ T $>$()}{Load< T >()}}{table.21}{}} +\@writefile{toc}{\contentsline {paragraph}{Move()}{28}{section*.52}\protected@file@percent } \gdef \LT@xxii {\LT@entry {3}{74.47575pt}\LT@entry {3}{287.20033pt}} \gdef \LT@xxiii {\LT@entry {3}{73.81001pt}\LT@entry {3}{342.24263pt}} -\newlabel{class_code_smile_editor_1_1_asset_a0666c1c07cd6e3eef35e058c2e09fdf9_a0666c1c07cd6e3eef35e058c2e09fdf9}{{7.1.3}{28}{\texorpdfstring {Move()}{Move()}}{figure.caption.53}{}} -\@writefile{toc}{\contentsline {paragraph}{OpenExternal()}{28}{section*.54}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a0666c1c07cd6e3eef35e058c2e09fdf9_a0666c1c07cd6e3eef35e058c2e09fdf9}{{7.1.3}{29}{\texorpdfstring {Move()}{Move()}}{figure.caption.53}{}} +\@writefile{toc}{\contentsline {paragraph}{OpenExternal()}{29}{section*.54}\protected@file@percent } \gdef \LT@xxiv {\LT@entry {3}{29.80966pt}\LT@entry {3}{85.8026pt}} @@ -218,13 +218,13 @@ \gdef \LT@xxvi {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\newlabel{class_code_smile_editor_1_1_asset_ae41aa018507db1deffb10096f33e3bb6_ae41aa018507db1deffb10096f33e3bb6}{{7.1.3}{29}{\texorpdfstring {OpenExternal()}{OpenExternal()}}{table.23}{}} -\@writefile{toc}{\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{29}{section*.55}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ac84df38322545eff4fb610f424420751_ac84df38322545eff4fb610f424420751}{{7.1.3}{29}{\texorpdfstring {operator Asset()}{operator Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{table.24}{}} -\@writefile{toc}{\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{29}{section*.56}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a23920865dfc0888bc17dc618ab30cbe0_a23920865dfc0888bc17dc618ab30cbe0}{{7.1.3}{29}{\texorpdfstring {operator Asset()}{operator Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{table.25}{}} -\@writefile{toc}{\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{29}{section*.57}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_aa01a879ca0793e3def47211f4d8d338d_aa01a879ca0793e3def47211f4d8d338d}{{7.1.3}{29}{\texorpdfstring {operator Asset()}{operator Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{table.26}{}} +\newlabel{class_code_smile_editor_1_1_asset_ae41aa018507db1deffb10096f33e3bb6_ae41aa018507db1deffb10096f33e3bb6}{{7.1.3}{30}{\texorpdfstring {OpenExternal()}{OpenExternal()}}{table.23}{}} +\@writefile{toc}{\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{30}{section*.55}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ac84df38322545eff4fb610f424420751_ac84df38322545eff4fb610f424420751}{{7.1.3}{30}{\texorpdfstring {operator Asset()}{operator Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{table.24}{}} +\@writefile{toc}{\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{30}{section*.56}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a23920865dfc0888bc17dc618ab30cbe0_a23920865dfc0888bc17dc618ab30cbe0}{{7.1.3}{30}{\texorpdfstring {operator Asset()}{operator Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{table.25}{}} +\@writefile{toc}{\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{30}{section*.57}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_aa01a879ca0793e3def47211f4d8d338d_aa01a879ca0793e3def47211f4d8d338d}{{7.1.3}{30}{\texorpdfstring {operator Asset()}{operator Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{table.26}{}} \gdef \LT@xxvii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} @@ -234,251 +234,251 @@ \gdef \LT@xxix {\LT@entry {3}{31.80762pt}\LT@entry {3}{78.93573pt}} -\@writefile{toc}{\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{30}{section*.58}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ae36538faed7f7dd4bd6d2a42867bbee1_ae36538faed7f7dd4bd6d2a42867bbee1}{{7.1.3}{30}{\texorpdfstring {operator Asset()}{operator Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{table.27}{}} -\@writefile{toc}{\contentsline {paragraph}{operator Object()}{30}{section*.59}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a972ef43bcee036e2009fc9af10173178_a972ef43bcee036e2009fc9af10173178}{{7.1.3}{30}{\texorpdfstring {operator Object()}{operator Object()}}{table.28}{}} -\@writefile{toc}{\contentsline {paragraph}{RemoveLabel()}{30}{section*.60}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ae1e3a3de65cb69b8ac09a0e10f2dbabd_ae1e3a3de65cb69b8ac09a0e10f2dbabd}{{7.1.3}{30}{\texorpdfstring {RemoveLabel()}{RemoveLabel()}}{table.29}{}} +\@writefile{toc}{\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{31}{section*.58}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ae36538faed7f7dd4bd6d2a42867bbee1_ae36538faed7f7dd4bd6d2a42867bbee1}{{7.1.3}{31}{\texorpdfstring {operator Asset()}{operator Asset()}\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{table.27}{}} +\@writefile{toc}{\contentsline {paragraph}{operator Object()}{31}{section*.59}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a972ef43bcee036e2009fc9af10173178_a972ef43bcee036e2009fc9af10173178}{{7.1.3}{31}{\texorpdfstring {operator Object()}{operator Object()}}{table.28}{}} +\@writefile{toc}{\contentsline {paragraph}{RemoveLabel()}{31}{section*.60}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ae1e3a3de65cb69b8ac09a0e10f2dbabd_ae1e3a3de65cb69b8ac09a0e10f2dbabd}{{7.1.3}{31}{\texorpdfstring {RemoveLabel()}{RemoveLabel()}}{table.29}{}} \gdef \LT@xxx {\LT@entry {3}{49.81639pt}\LT@entry {3}{140.45859pt}} \gdef \LT@xxxi {\LT@entry {3}{67.62717pt}\LT@entry {3}{302.47241pt}} -\@writefile{toc}{\contentsline {paragraph}{RemoveSubAsset()}{31}{section*.61}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a28fe22006383d71d5b564df4a46b2675_a28fe22006383d71d5b564df4a46b2675}{{7.1.3}{31}{\texorpdfstring {RemoveSubAsset()}{RemoveSubAsset()}}{table.30}{}} -\@writefile{toc}{\contentsline {paragraph}{Rename()}{31}{section*.62}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a5df140c1ee51aadf7fe88ce3fb9cac33_a5df140c1ee51aadf7fe88ce3fb9cac33}{{7.1.3}{32}{\texorpdfstring {Rename()}{Rename()}}{figure.caption.63}{}} -\@writefile{toc}{\contentsline {paragraph}{Save()}{32}{section*.64}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a1c6432dab22d51bcf01bf6ad221e7119_a1c6432dab22d51bcf01bf6ad221e7119}{{7.1.3}{32}{\texorpdfstring {Save()}{Save()}}{section*.64}{}} -\@writefile{toc}{\contentsline {paragraph}{SaveAs()}{32}{section*.65}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{RemoveSubAsset()}{32}{section*.61}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a28fe22006383d71d5b564df4a46b2675_a28fe22006383d71d5b564df4a46b2675}{{7.1.3}{32}{\texorpdfstring {RemoveSubAsset()}{RemoveSubAsset()}}{table.30}{}} +\@writefile{toc}{\contentsline {paragraph}{Rename()}{32}{section*.62}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a5df140c1ee51aadf7fe88ce3fb9cac33_a5df140c1ee51aadf7fe88ce3fb9cac33}{{7.1.3}{33}{\texorpdfstring {Rename()}{Rename()}}{figure.caption.63}{}} +\@writefile{toc}{\contentsline {paragraph}{Save()}{33}{section*.64}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a1c6432dab22d51bcf01bf6ad221e7119_a1c6432dab22d51bcf01bf6ad221e7119}{{7.1.3}{33}{\texorpdfstring {Save()}{Save()}}{section*.64}{}} +\@writefile{toc}{\contentsline {paragraph}{SaveAs()}{33}{section*.65}\protected@file@percent } \gdef \LT@xxxii {\LT@entry {3}{30.3136pt}\LT@entry {3}{143.89627pt}} \gdef \LT@xxxiii {\LT@entry {3}{30.3136pt}\LT@entry {3}{332.69405pt}} -\newlabel{class_code_smile_editor_1_1_asset_af23adc642520b7f00cb047865ef50ad0_af23adc642520b7f00cb047865ef50ad0}{{7.1.3}{33}{\texorpdfstring {SaveAs()}{SaveAs()}}{figure.caption.66}{}} -\@writefile{toc}{\contentsline {paragraph}{SaveAsNew()}{33}{section*.67}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_af23adc642520b7f00cb047865ef50ad0_af23adc642520b7f00cb047865ef50ad0}{{7.1.3}{34}{\texorpdfstring {SaveAs()}{SaveAs()}}{figure.caption.66}{}} +\@writefile{toc}{\contentsline {paragraph}{SaveAsNew()}{34}{section*.67}\protected@file@percent } \gdef \LT@xxxiv {\LT@entry {3}{36.30759pt}\LT@entry {3}{84.43454pt}} -\newlabel{class_code_smile_editor_1_1_asset_ac9fdda28d3fb7be683439603387df920_ac9fdda28d3fb7be683439603387df920}{{7.1.3}{34}{\texorpdfstring {SaveAsNew()}{SaveAsNew()}}{figure.caption.68}{}} -\@writefile{toc}{\contentsline {paragraph}{SetDirty()}{34}{section*.69}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_af924398cf4176684f1c3bad2017f9ed5_af924398cf4176684f1c3bad2017f9ed5}{{7.1.3}{34}{\texorpdfstring {SetDirty()}{SetDirty()}}{section*.69}{}} -\@writefile{toc}{\contentsline {paragraph}{SetLabels()}{34}{section*.70}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a9ff25b59d227ab5d89fdabafffb9876a_a9ff25b59d227ab5d89fdabafffb9876a}{{7.1.3}{35}{\texorpdfstring {SetLabels()}{SetLabels()}}{table.34}{}} -\@writefile{toc}{\contentsline {paragraph}{Trash()}{35}{section*.71}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.1.4}Property Documentation}{36}{subsubsection.7.1.4}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a57983fe52530259a94425f11144dcf12_a57983fe52530259a94425f11144dcf12}{{7.1.4}{36}{Property Documentation}{subsubsection.7.1.4}{}} -\@writefile{toc}{\contentsline {paragraph}{ActiveImporter}{36}{section*.73}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a54bbd4600c9787134d849c022cefe90e_a54bbd4600c9787134d849c022cefe90e}{{7.1.4}{36}{\texorpdfstring {ActiveImporter}{ActiveImporter}}{section*.73}{}} -\@writefile{toc}{\contentsline {paragraph}{AssetPath}{36}{section*.74}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_afd494f6a711cc6e5683d95823c87f916_afd494f6a711cc6e5683d95823c87f916}{{7.1.4}{36}{\texorpdfstring {AssetPath}{AssetPath}}{section*.74}{}} -\@writefile{toc}{\contentsline {paragraph}{AvailableImporters}{36}{section*.75}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a171f2bcee950b6e79886c7507f9beb27_a171f2bcee950b6e79886c7507f9beb27}{{7.1.4}{36}{\texorpdfstring {AvailableImporters}{AvailableImporters}}{section*.75}{}} -\@writefile{toc}{\contentsline {paragraph}{DefaultImporter}{37}{section*.76}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_af2fc7a5ab674d2293e0c80bcceb709f6_af2fc7a5ab674d2293e0c80bcceb709f6}{{7.1.4}{37}{\texorpdfstring {DefaultImporter}{DefaultImporter}}{section*.76}{}} -\@writefile{toc}{\contentsline {paragraph}{Dependencies}{37}{section*.77}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a0ae61d10248f285be98d0bab84ca431e_a0ae61d10248f285be98d0bab84ca431e}{{7.1.4}{37}{\texorpdfstring {Dependencies}{Dependencies}}{section*.77}{}} -\@writefile{toc}{\contentsline {paragraph}{DirectDependencies}{37}{section*.78}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a2d3c3468bf091cc7260b4cdca91b4a55_a2d3c3468bf091cc7260b4cdca91b4a55}{{7.1.4}{37}{\texorpdfstring {DirectDependencies}{DirectDependencies}}{section*.78}{}} -\@writefile{toc}{\contentsline {paragraph}{FileId}{38}{section*.79}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a66a3fc7176ae79e7e9ee85df99c5ff7c_a66a3fc7176ae79e7e9ee85df99c5ff7c}{{7.1.4}{38}{\texorpdfstring {FileId}{FileId}}{section*.79}{}} -\@writefile{toc}{\contentsline {paragraph}{Guid}{38}{section*.80}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a68c0326ba0d934f74e65a06f805627e0_a68c0326ba0d934f74e65a06f805627e0}{{7.1.4}{38}{\texorpdfstring {Guid}{Guid}}{section*.80}{}} -\@writefile{toc}{\contentsline {paragraph}{Icon}{38}{section*.81}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_af3886ebc9167b6615000ad5835ded3d2_af3886ebc9167b6615000ad5835ded3d2}{{7.1.4}{38}{\texorpdfstring {Icon}{Icon}}{section*.81}{}} -\@writefile{toc}{\contentsline {paragraph}{IsDeleted}{38}{section*.82}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ae1533f44e1d6a3921dcf9dc0c73e5721_ae1533f44e1d6a3921dcf9dc0c73e5721}{{7.1.4}{38}{\texorpdfstring {IsDeleted}{IsDeleted}}{section*.82}{}} -\@writefile{toc}{\contentsline {paragraph}{IsForeign}{39}{section*.83}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ac3eef672ee8ea3c14524ee2a1d7fbfef_ac3eef672ee8ea3c14524ee2a1d7fbfef}{{7.1.4}{39}{\texorpdfstring {IsForeign}{IsForeign}}{section*.83}{}} -\@writefile{toc}{\contentsline {paragraph}{IsImporterOverridden}{39}{section*.84}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a993540e3a2141abe3463b2a75655f931_a993540e3a2141abe3463b2a75655f931}{{7.1.4}{39}{\texorpdfstring {IsImporterOverridden}{IsImporterOverridden}}{section*.84}{}} -\@writefile{toc}{\contentsline {paragraph}{IsNative}{39}{section*.85}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a16590be90618aaa5682dbdc597fd5223_a16590be90618aaa5682dbdc597fd5223}{{7.1.4}{39}{\texorpdfstring {IsNative}{IsNative}}{section*.85}{}} -\@writefile{toc}{\contentsline {paragraph}{IsScene}{40}{section*.86}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a537c910df9f9f5d24a916b70934f4de8_a537c910df9f9f5d24a916b70934f4de8}{{7.1.4}{40}{\texorpdfstring {IsScene}{IsScene}}{section*.86}{}} -\@writefile{toc}{\contentsline {paragraph}{Labels}{40}{section*.87}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ab39ec1f49ab79e8ae84c6a53a2458f2d_ab39ec1f49ab79e8ae84c6a53a2458f2d}{{7.1.4}{40}{\texorpdfstring {Labels}{Labels}}{section*.87}{}} -\@writefile{toc}{\contentsline {paragraph}{MainObject}{40}{section*.88}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a15e35df5acbfe3751310d7fd241a6295_a15e35df5acbfe3751310d7fd241a6295}{{7.1.4}{40}{\texorpdfstring {MainObject}{MainObject}}{section*.88}{}} +\newlabel{class_code_smile_editor_1_1_asset_ac9fdda28d3fb7be683439603387df920_ac9fdda28d3fb7be683439603387df920}{{7.1.3}{35}{\texorpdfstring {SaveAsNew()}{SaveAsNew()}}{figure.caption.68}{}} +\@writefile{toc}{\contentsline {paragraph}{SetDirty()}{35}{section*.69}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_af924398cf4176684f1c3bad2017f9ed5_af924398cf4176684f1c3bad2017f9ed5}{{7.1.3}{35}{\texorpdfstring {SetDirty()}{SetDirty()}}{section*.69}{}} +\@writefile{toc}{\contentsline {paragraph}{SetLabels()}{35}{section*.70}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a9ff25b59d227ab5d89fdabafffb9876a_a9ff25b59d227ab5d89fdabafffb9876a}{{7.1.3}{36}{\texorpdfstring {SetLabels()}{SetLabels()}}{table.34}{}} +\@writefile{toc}{\contentsline {paragraph}{Trash()}{36}{section*.71}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.1.4}Property Documentation}{37}{subsubsection.7.1.4}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a57983fe52530259a94425f11144dcf12_a57983fe52530259a94425f11144dcf12}{{7.1.4}{37}{Property Documentation}{subsubsection.7.1.4}{}} +\@writefile{toc}{\contentsline {paragraph}{ActiveImporter}{37}{section*.73}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a54bbd4600c9787134d849c022cefe90e_a54bbd4600c9787134d849c022cefe90e}{{7.1.4}{37}{\texorpdfstring {ActiveImporter}{ActiveImporter}}{section*.73}{}} +\@writefile{toc}{\contentsline {paragraph}{AssetPath}{37}{section*.74}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_afd494f6a711cc6e5683d95823c87f916_afd494f6a711cc6e5683d95823c87f916}{{7.1.4}{37}{\texorpdfstring {AssetPath}{AssetPath}}{section*.74}{}} +\@writefile{toc}{\contentsline {paragraph}{AvailableImporters}{37}{section*.75}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a171f2bcee950b6e79886c7507f9beb27_a171f2bcee950b6e79886c7507f9beb27}{{7.1.4}{37}{\texorpdfstring {AvailableImporters}{AvailableImporters}}{section*.75}{}} +\@writefile{toc}{\contentsline {paragraph}{DefaultImporter}{38}{section*.76}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_af2fc7a5ab674d2293e0c80bcceb709f6_af2fc7a5ab674d2293e0c80bcceb709f6}{{7.1.4}{38}{\texorpdfstring {DefaultImporter}{DefaultImporter}}{section*.76}{}} +\@writefile{toc}{\contentsline {paragraph}{Dependencies}{38}{section*.77}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a0ae61d10248f285be98d0bab84ca431e_a0ae61d10248f285be98d0bab84ca431e}{{7.1.4}{38}{\texorpdfstring {Dependencies}{Dependencies}}{section*.77}{}} +\@writefile{toc}{\contentsline {paragraph}{DirectDependencies}{38}{section*.78}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a2d3c3468bf091cc7260b4cdca91b4a55_a2d3c3468bf091cc7260b4cdca91b4a55}{{7.1.4}{38}{\texorpdfstring {DirectDependencies}{DirectDependencies}}{section*.78}{}} +\@writefile{toc}{\contentsline {paragraph}{FileId}{39}{section*.79}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a66a3fc7176ae79e7e9ee85df99c5ff7c_a66a3fc7176ae79e7e9ee85df99c5ff7c}{{7.1.4}{39}{\texorpdfstring {FileId}{FileId}}{section*.79}{}} +\@writefile{toc}{\contentsline {paragraph}{Guid}{39}{section*.80}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a68c0326ba0d934f74e65a06f805627e0_a68c0326ba0d934f74e65a06f805627e0}{{7.1.4}{39}{\texorpdfstring {Guid}{Guid}}{section*.80}{}} +\@writefile{toc}{\contentsline {paragraph}{Icon}{39}{section*.81}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_af3886ebc9167b6615000ad5835ded3d2_af3886ebc9167b6615000ad5835ded3d2}{{7.1.4}{39}{\texorpdfstring {Icon}{Icon}}{section*.81}{}} +\@writefile{toc}{\contentsline {paragraph}{IsDeleted}{39}{section*.82}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ae1533f44e1d6a3921dcf9dc0c73e5721_ae1533f44e1d6a3921dcf9dc0c73e5721}{{7.1.4}{39}{\texorpdfstring {IsDeleted}{IsDeleted}}{section*.82}{}} +\@writefile{toc}{\contentsline {paragraph}{IsForeign}{40}{section*.83}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ac3eef672ee8ea3c14524ee2a1d7fbfef_ac3eef672ee8ea3c14524ee2a1d7fbfef}{{7.1.4}{40}{\texorpdfstring {IsForeign}{IsForeign}}{section*.83}{}} +\@writefile{toc}{\contentsline {paragraph}{IsImporterOverridden}{40}{section*.84}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a993540e3a2141abe3463b2a75655f931_a993540e3a2141abe3463b2a75655f931}{{7.1.4}{40}{\texorpdfstring {IsImporterOverridden}{IsImporterOverridden}}{section*.84}{}} +\@writefile{toc}{\contentsline {paragraph}{IsNative}{40}{section*.85}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a16590be90618aaa5682dbdc597fd5223_a16590be90618aaa5682dbdc597fd5223}{{7.1.4}{40}{\texorpdfstring {IsNative}{IsNative}}{section*.85}{}} +\@writefile{toc}{\contentsline {paragraph}{IsScene}{41}{section*.86}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a537c910df9f9f5d24a916b70934f4de8_a537c910df9f9f5d24a916b70934f4de8}{{7.1.4}{41}{\texorpdfstring {IsScene}{IsScene}}{section*.86}{}} +\@writefile{toc}{\contentsline {paragraph}{Labels}{41}{section*.87}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ab39ec1f49ab79e8ae84c6a53a2458f2d_ab39ec1f49ab79e8ae84c6a53a2458f2d}{{7.1.4}{41}{\texorpdfstring {Labels}{Labels}}{section*.87}{}} +\@writefile{toc}{\contentsline {paragraph}{MainObject}{41}{section*.88}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a15e35df5acbfe3751310d7fd241a6295_a15e35df5acbfe3751310d7fd241a6295}{{7.1.4}{41}{\texorpdfstring {MainObject}{MainObject}}{section*.88}{}} \gdef \LT@xxxv {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} -\@writefile{toc}{\contentsline {paragraph}{MainObjectType}{41}{section*.89}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a0084f5ad8a13c505013748101a81b1df_a0084f5ad8a13c505013748101a81b1df}{{7.1.4}{41}{\texorpdfstring {MainObjectType}{MainObjectType}}{section*.89}{}} -\@writefile{toc}{\contentsline {paragraph}{MetaPath}{41}{section*.90}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_af8ffb2f0dfbb3585bd764056147d01b3_af8ffb2f0dfbb3585bd764056147d01b3}{{7.1.4}{41}{\texorpdfstring {MetaPath}{MetaPath}}{section*.90}{}} -\@writefile{toc}{\contentsline {paragraph}{OwningBundle}{41}{section*.91}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_a91f88014dec2b3bff50d35f595e6409d_a91f88014dec2b3bff50d35f595e6409d}{{7.1.4}{41}{\texorpdfstring {OwningBundle}{OwningBundle}}{table.35}{}} +\@writefile{toc}{\contentsline {paragraph}{MainObjectType}{42}{section*.89}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a0084f5ad8a13c505013748101a81b1df_a0084f5ad8a13c505013748101a81b1df}{{7.1.4}{42}{\texorpdfstring {MainObjectType}{MainObjectType}}{section*.89}{}} +\@writefile{toc}{\contentsline {paragraph}{MetaPath}{42}{section*.90}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_af8ffb2f0dfbb3585bd764056147d01b3_af8ffb2f0dfbb3585bd764056147d01b3}{{7.1.4}{42}{\texorpdfstring {MetaPath}{MetaPath}}{section*.90}{}} +\@writefile{toc}{\contentsline {paragraph}{OwningBundle}{42}{section*.91}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_a91f88014dec2b3bff50d35f595e6409d_a91f88014dec2b3bff50d35f595e6409d}{{7.1.4}{42}{\texorpdfstring {OwningBundle}{OwningBundle}}{table.35}{}} \gdef \LT@xxxvi {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} -\@writefile{toc}{\contentsline {paragraph}{OwningBundleVariant}{42}{section*.92}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_accd20b073ee732df08cf6ba0b9b8a389_accd20b073ee732df08cf6ba0b9b8a389}{{7.1.4}{42}{\texorpdfstring {OwningBundleVariant}{OwningBundleVariant}}{table.36}{}} -\@writefile{toc}{\contentsline {paragraph}{SubAssets}{42}{section*.93}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_ace611059f2ab296e1be5b51d33617000_ace611059f2ab296e1be5b51d33617000}{{7.1.4}{42}{\texorpdfstring {SubAssets}{SubAssets}}{section*.93}{}} -\@writefile{toc}{\contentsline {paragraph}{VisibleSubAssets}{42}{section*.94}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Bundle Class Reference}{43}{subsection.7.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle}{{7.2}{43}{Asset.\+Bundle Class Reference}{subsection.7.2}{}} +\@writefile{toc}{\contentsline {paragraph}{OwningBundleVariant}{43}{section*.92}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_accd20b073ee732df08cf6ba0b9b8a389_accd20b073ee732df08cf6ba0b9b8a389}{{7.1.4}{43}{\texorpdfstring {OwningBundleVariant}{OwningBundleVariant}}{table.36}{}} +\@writefile{toc}{\contentsline {paragraph}{SubAssets}{43}{section*.93}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_ace611059f2ab296e1be5b51d33617000_ace611059f2ab296e1be5b51d33617000}{{7.1.4}{43}{\texorpdfstring {SubAssets}{SubAssets}}{section*.93}{}} +\@writefile{toc}{\contentsline {paragraph}{VisibleSubAssets}{43}{section*.94}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Bundle Class Reference}{44}{subsection.7.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle}{{7.2}{44}{Asset.\+Bundle Class Reference}{subsection.7.2}{}} \gdef \LT@xxxvii {\LT@entry {3}{63.64015pt}\LT@entry {3}{159.29503pt}} \gdef \LT@xxxviii {\LT@entry {3}{63.64015pt}\LT@entry {3}{117.13985pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.1}Detailed Description}{44}{subsubsection.7.2.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.2}Member Function Documentation}{44}{subsubsection.7.2.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a7393007e2bfa2a7dafd3e6bf47115f53_a7393007e2bfa2a7dafd3e6bf47115f53}{{7.2.2}{44}{Member Function Documentation}{subsubsection.7.2.2}{}} -\@writefile{toc}{\contentsline {paragraph}{ForceRemove()}{44}{section*.98}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_ae45aacadca51b6d99273ef60c47523f3_ae45aacadca51b6d99273ef60c47523f3}{{7.2.2}{44}{\texorpdfstring {ForceRemove()}{ForceRemove()}}{table.37}{}} -\@writefile{toc}{\contentsline {paragraph}{GetAllDependencies()}{44}{section*.99}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.1}Detailed Description}{45}{subsubsection.7.2.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.2}Member Function Documentation}{45}{subsubsection.7.2.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a7393007e2bfa2a7dafd3e6bf47115f53_a7393007e2bfa2a7dafd3e6bf47115f53}{{7.2.2}{45}{Member Function Documentation}{subsubsection.7.2.2}{}} +\@writefile{toc}{\contentsline {paragraph}{ForceRemove()}{45}{section*.98}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_ae45aacadca51b6d99273ef60c47523f3_ae45aacadca51b6d99273ef60c47523f3}{{7.2.2}{45}{\texorpdfstring {ForceRemove()}{ForceRemove()}}{table.37}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAllDependencies()}{45}{section*.99}\protected@file@percent } \gdef \LT@xxxix {\LT@entry {3}{63.64015pt}\LT@entry {3}{117.13985pt}} \gdef \LT@xl {\LT@entry {3}{63.64015pt}\LT@entry {3}{117.13985pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a92f937447af1b0ac29f167b8d5de21e0_a92f937447af1b0ac29f167b8d5de21e0}{{7.2.2}{45}{\texorpdfstring {GetAllDependencies()}{GetAllDependencies()}}{table.38}{}} -\@writefile{toc}{\contentsline {paragraph}{GetAllPaths()}{45}{section*.100}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a86ace93f7ce9f411e2994177f4cc60c2_a86ace93f7ce9f411e2994177f4cc60c2}{{7.2.2}{45}{\texorpdfstring {GetAllPaths()}{GetAllPaths()}}{table.39}{}} -\@writefile{toc}{\contentsline {paragraph}{GetDirectDependencies()}{45}{section*.101}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a92f937447af1b0ac29f167b8d5de21e0_a92f937447af1b0ac29f167b8d5de21e0}{{7.2.2}{46}{\texorpdfstring {GetAllDependencies()}{GetAllDependencies()}}{table.38}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAllPaths()}{46}{section*.100}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a86ace93f7ce9f411e2994177f4cc60c2_a86ace93f7ce9f411e2994177f4cc60c2}{{7.2.2}{46}{\texorpdfstring {GetAllPaths()}{GetAllPaths()}}{table.39}{}} +\@writefile{toc}{\contentsline {paragraph}{GetDirectDependencies()}{46}{section*.101}\protected@file@percent } \gdef \LT@xli {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} \gdef \LT@xlii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a17c3d7ba18536daa627d478d36aa7d95_a17c3d7ba18536daa627d478d36aa7d95}{{7.2.2}{46}{\texorpdfstring {GetDirectDependencies()}{GetDirectDependencies()}}{table.40}{}} -\@writefile{toc}{\contentsline {paragraph}{GetOwningBundle()}{46}{section*.102}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a51999ea1e987b932993409830b86bad3_a51999ea1e987b932993409830b86bad3}{{7.2.2}{46}{\texorpdfstring {GetOwningBundle()}{GetOwningBundle()}}{table.41}{}} -\@writefile{toc}{\contentsline {paragraph}{GetOwningBundleVariant()}{46}{section*.103}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a17c3d7ba18536daa627d478d36aa7d95_a17c3d7ba18536daa627d478d36aa7d95}{{7.2.2}{47}{\texorpdfstring {GetDirectDependencies()}{GetDirectDependencies()}}{table.40}{}} +\@writefile{toc}{\contentsline {paragraph}{GetOwningBundle()}{47}{section*.102}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a51999ea1e987b932993409830b86bad3_a51999ea1e987b932993409830b86bad3}{{7.2.2}{47}{\texorpdfstring {GetOwningBundle()}{GetOwningBundle()}}{table.41}{}} +\@writefile{toc}{\contentsline {paragraph}{GetOwningBundleVariant()}{47}{section*.103}\protected@file@percent } \gdef \LT@xliii {\LT@entry {3}{63.64015pt}\LT@entry {3}{190.11002pt}} \gdef \LT@xliv {\LT@entry {3}{63.64015pt}\LT@entry {3}{159.29503pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_aa5dd51c1b0b63b4552afdd78da4e2e81_aa5dd51c1b0b63b4552afdd78da4e2e81}{{7.2.2}{47}{\texorpdfstring {GetOwningBundleVariant()}{GetOwningBundleVariant()}}{table.42}{}} -\@writefile{toc}{\contentsline {paragraph}{GetPaths()}{47}{section*.104}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_afda9d0ade24a5ad0d52c2f2f1a7bc86a_afda9d0ade24a5ad0d52c2f2f1a7bc86a}{{7.2.2}{47}{\texorpdfstring {GetPaths()}{GetPaths()}}{table.43}{}} -\@writefile{toc}{\contentsline {paragraph}{Remove()}{47}{section*.105}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a08d9f8415b580743cbd887fb5d66aba0_a08d9f8415b580743cbd887fb5d66aba0}{{7.2.2}{48}{\texorpdfstring {Remove()}{Remove()}}{table.44}{}} -\@writefile{toc}{\contentsline {paragraph}{RemoveUnused()}{48}{section*.106}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.3}Property Documentation}{48}{subsubsection.7.2.3}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a7a491f4df9b8c6216b664e600b7ab0e3_a7a491f4df9b8c6216b664e600b7ab0e3}{{7.2.3}{48}{Property Documentation}{subsubsection.7.2.3}{}} -\@writefile{toc}{\contentsline {paragraph}{All}{48}{section*.107}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a096ba8fe96373ca1cdf4edf80991a6cc_a096ba8fe96373ca1cdf4edf80991a6cc}{{7.2.3}{48}{\texorpdfstring {All}{All}}{section*.107}{}} -\@writefile{toc}{\contentsline {paragraph}{Unused}{48}{section*.108}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.3}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Database Class Reference}{49}{subsection.7.3}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database}{{7.3}{49}{Asset.\+Database Class Reference}{subsection.7.3}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.1}Detailed Description}{50}{subsubsection.7.3.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.2}Member Function Documentation}{50}{subsubsection.7.3.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a4f2683df249d67e506e9f2d9d9fe2b5a_a4f2683df249d67e506e9f2d9d9fe2b5a}{{7.3.2}{50}{Member Function Documentation}{subsubsection.7.3.2}{}} -\@writefile{toc}{\contentsline {paragraph}{AllowAutoRefresh()}{50}{section*.113}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_aebd60455d5568e8715f48750a2a15710_aebd60455d5568e8715f48750a2a15710}{{7.3.2}{50}{\texorpdfstring {AllowAutoRefresh()}{AllowAutoRefresh()}}{section*.113}{}} -\@writefile{toc}{\contentsline {paragraph}{Contains()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{50}{section*.114}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_aa5dd51c1b0b63b4552afdd78da4e2e81_aa5dd51c1b0b63b4552afdd78da4e2e81}{{7.2.2}{48}{\texorpdfstring {GetOwningBundleVariant()}{GetOwningBundleVariant()}}{table.42}{}} +\@writefile{toc}{\contentsline {paragraph}{GetPaths()}{48}{section*.104}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_afda9d0ade24a5ad0d52c2f2f1a7bc86a_afda9d0ade24a5ad0d52c2f2f1a7bc86a}{{7.2.2}{48}{\texorpdfstring {GetPaths()}{GetPaths()}}{table.43}{}} +\@writefile{toc}{\contentsline {paragraph}{Remove()}{48}{section*.105}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a08d9f8415b580743cbd887fb5d66aba0_a08d9f8415b580743cbd887fb5d66aba0}{{7.2.2}{49}{\texorpdfstring {Remove()}{Remove()}}{table.44}{}} +\@writefile{toc}{\contentsline {paragraph}{RemoveUnused()}{49}{section*.106}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.2.3}Property Documentation}{49}{subsubsection.7.2.3}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a7a491f4df9b8c6216b664e600b7ab0e3_a7a491f4df9b8c6216b664e600b7ab0e3}{{7.2.3}{49}{Property Documentation}{subsubsection.7.2.3}{}} +\@writefile{toc}{\contentsline {paragraph}{All}{49}{section*.107}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_bundle_a096ba8fe96373ca1cdf4edf80991a6cc_a096ba8fe96373ca1cdf4edf80991a6cc}{{7.2.3}{49}{\texorpdfstring {All}{All}}{section*.107}{}} +\@writefile{toc}{\contentsline {paragraph}{Unused}{49}{section*.108}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.3}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Database Class Reference}{50}{subsection.7.3}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database}{{7.3}{50}{Asset.\+Database Class Reference}{subsection.7.3}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.1}Detailed Description}{51}{subsubsection.7.3.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.2}Member Function Documentation}{51}{subsubsection.7.3.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a4f2683df249d67e506e9f2d9d9fe2b5a_a4f2683df249d67e506e9f2d9d9fe2b5a}{{7.3.2}{51}{Member Function Documentation}{subsubsection.7.3.2}{}} +\@writefile{toc}{\contentsline {paragraph}{AllowAutoRefresh()}{51}{section*.113}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_aebd60455d5568e8715f48750a2a15710_aebd60455d5568e8715f48750a2a15710}{{7.3.2}{51}{\texorpdfstring {AllowAutoRefresh()}{AllowAutoRefresh()}}{section*.113}{}} +\@writefile{toc}{\contentsline {paragraph}{Contains()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{51}{section*.114}\protected@file@percent } \gdef \LT@xlv {\LT@entry {3}{53.8212pt}\LT@entry {3}{124.45659pt}} \gdef \LT@xlvi {\LT@entry {3}{46.3154pt}\LT@entry {3}{75.93848pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a9f98188e77af88fa79da70d1765765ff_a9f98188e77af88fa79da70d1765765ff}{{7.3.2}{51}{\texorpdfstring {Contains()}{Contains()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.45}{}} -\@writefile{toc}{\contentsline {paragraph}{Contains()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{51}{section*.115}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_adb25c0a19eaf845815b001486373db4c_adb25c0a19eaf845815b001486373db4c}{{7.3.2}{51}{\texorpdfstring {Contains()}{Contains()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.46}{}} -\@writefile{toc}{\contentsline {paragraph}{DisallowAutoRefresh()}{51}{section*.116}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a7c993d64861e62fbdcff3700690b2318_a7c993d64861e62fbdcff3700690b2318}{{7.3.2}{51}{\texorpdfstring {DisallowAutoRefresh()}{DisallowAutoRefresh()}}{section*.116}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a9f98188e77af88fa79da70d1765765ff_a9f98188e77af88fa79da70d1765765ff}{{7.3.2}{52}{\texorpdfstring {Contains()}{Contains()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.45}{}} +\@writefile{toc}{\contentsline {paragraph}{Contains()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{52}{section*.115}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_adb25c0a19eaf845815b001486373db4c_adb25c0a19eaf845815b001486373db4c}{{7.3.2}{52}{\texorpdfstring {Contains()}{Contains()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.46}{}} +\@writefile{toc}{\contentsline {paragraph}{DisallowAutoRefresh()}{52}{section*.116}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a7c993d64861e62fbdcff3700690b2318_a7c993d64861e62fbdcff3700690b2318}{{7.3.2}{52}{\texorpdfstring {DisallowAutoRefresh()}{DisallowAutoRefresh()}}{section*.116}{}} \gdef \LT@xlvii {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} -\@writefile{toc}{\contentsline {paragraph}{ImportAll()}{52}{section*.117}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_afa24e66e009892bc1032c64f512f349d_afa24e66e009892bc1032c64f512f349d}{{7.3.2}{53}{\texorpdfstring {ImportAll()}{ImportAll()}}{table.47}{}} -\@writefile{toc}{\contentsline {paragraph}{ReleaseFileHandles()}{53}{section*.118}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_af4aa665fc0bbfcf9f076d5da1457b2c4_af4aa665fc0bbfcf9f076d5da1457b2c4}{{7.3.2}{53}{\texorpdfstring {ReleaseFileHandles()}{ReleaseFileHandles()}}{section*.118}{}} -\@writefile{toc}{\contentsline {paragraph}{SaveAll()}{53}{section*.119}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a3006ad7769d5ba3b477a5c153f20dd27_a3006ad7769d5ba3b477a5c153f20dd27}{{7.3.2}{53}{\texorpdfstring {SaveAll()}{SaveAll()}}{section*.119}{}} -\@writefile{toc}{\contentsline {paragraph}{UpgradeAllAssetSerializationVersions()}{53}{section*.120}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a0bdd680cb405e96d92b6a7af338ad27f_a0bdd680cb405e96d92b6a7af338ad27f}{{7.3.2}{53}{\texorpdfstring {UpgradeAllAssetSerializationVersions()}{UpgradeAllAssetSerializationVersions()}}{section*.120}{}} +\@writefile{toc}{\contentsline {paragraph}{ImportAll()}{53}{section*.117}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_afa24e66e009892bc1032c64f512f349d_afa24e66e009892bc1032c64f512f349d}{{7.3.2}{54}{\texorpdfstring {ImportAll()}{ImportAll()}}{table.47}{}} +\@writefile{toc}{\contentsline {paragraph}{ReleaseFileHandles()}{54}{section*.118}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_af4aa665fc0bbfcf9f076d5da1457b2c4_af4aa665fc0bbfcf9f076d5da1457b2c4}{{7.3.2}{54}{\texorpdfstring {ReleaseFileHandles()}{ReleaseFileHandles()}}{section*.118}{}} +\@writefile{toc}{\contentsline {paragraph}{SaveAll()}{54}{section*.119}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a3006ad7769d5ba3b477a5c153f20dd27_a3006ad7769d5ba3b477a5c153f20dd27}{{7.3.2}{54}{\texorpdfstring {SaveAll()}{SaveAll()}}{section*.119}{}} +\@writefile{toc}{\contentsline {paragraph}{UpgradeAllAssetSerializationVersions()}{54}{section*.120}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a0bdd680cb405e96d92b6a7af338ad27f_a0bdd680cb405e96d92b6a7af338ad27f}{{7.3.2}{54}{\texorpdfstring {UpgradeAllAssetSerializationVersions()}{UpgradeAllAssetSerializationVersions()}}{section*.120}{}} \gdef \LT@xlviii {\LT@entry {3}{41.81543pt}\LT@entry {3}{266.54555pt}} \gdef \LT@xlix {\LT@entry {3}{41.81543pt}\LT@entry {3}{266.54555pt}} -\@writefile{toc}{\contentsline {paragraph}{UpgradeAssetSerializationVersion()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{54}{section*.121}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a94a77b56376fbb7f52ba2bece53f45b7_a94a77b56376fbb7f52ba2bece53f45b7}{{7.3.2}{54}{\texorpdfstring {UpgradeAssetSerializationVersion()}{UpgradeAssetSerializationVersion()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.48}{}} -\@writefile{toc}{\contentsline {paragraph}{UpgradeAssetSerializationVersion()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{54}{section*.122}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.3}Property Documentation}{55}{subsubsection.7.3.3}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a46c1f775624b940edb495a5c2b08583c_a46c1f775624b940edb495a5c2b08583c}{{7.3.3}{55}{Property Documentation}{subsubsection.7.3.3}{}} -\@writefile{toc}{\contentsline {paragraph}{DesiredWorkerCount}{55}{section*.123}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a6190225c177bf52f95b2cdbcb99ccc2a_a6190225c177bf52f95b2cdbcb99ccc2a}{{7.3.3}{55}{\texorpdfstring {DesiredWorkerCount}{DesiredWorkerCount}}{section*.123}{}} -\@writefile{toc}{\contentsline {paragraph}{DirectoryMonitoring}{55}{section*.124}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.4}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Database.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Cache\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Server Class Reference}{56}{subsection.7.4}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server}{{7.4}{56}{Asset.\+Database.\+Cache\+Server Class Reference}{subsection.7.4}{}} +\@writefile{toc}{\contentsline {paragraph}{UpgradeAssetSerializationVersion()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{55}{section*.121}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a94a77b56376fbb7f52ba2bece53f45b7_a94a77b56376fbb7f52ba2bece53f45b7}{{7.3.2}{55}{\texorpdfstring {UpgradeAssetSerializationVersion()}{UpgradeAssetSerializationVersion()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.48}{}} +\@writefile{toc}{\contentsline {paragraph}{UpgradeAssetSerializationVersion()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{55}{section*.122}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.3}Property Documentation}{56}{subsubsection.7.3.3}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a46c1f775624b940edb495a5c2b08583c_a46c1f775624b940edb495a5c2b08583c}{{7.3.3}{56}{Property Documentation}{subsubsection.7.3.3}{}} +\@writefile{toc}{\contentsline {paragraph}{DesiredWorkerCount}{56}{section*.123}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_a6190225c177bf52f95b2cdbcb99ccc2a_a6190225c177bf52f95b2cdbcb99ccc2a}{{7.3.3}{56}{\texorpdfstring {DesiredWorkerCount}{DesiredWorkerCount}}{section*.123}{}} +\@writefile{toc}{\contentsline {paragraph}{DirectoryMonitoring}{56}{section*.124}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.4}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Database.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Cache\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Server Class Reference}{57}{subsection.7.4}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server}{{7.4}{57}{Asset.\+Database.\+Cache\+Server Class Reference}{subsection.7.4}{}} \gdef \LT@l {\LT@entry {3}{52.81332pt}\LT@entry {3}{243.34415pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.1}Detailed Description}{57}{subsubsection.7.4.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.2}Member Function Documentation}{57}{subsubsection.7.4.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_ab7e00eb132c285b4e57d86fcb20a0eab_ab7e00eb132c285b4e57d86fcb20a0eab}{{7.4.2}{57}{Member Function Documentation}{subsubsection.7.4.2}{}} -\@writefile{toc}{\contentsline {paragraph}{ApplySettings()}{57}{section*.128}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a2ceac4f87b79ab2f6e11c52ee1bfc237_a2ceac4f87b79ab2f6e11c52ee1bfc237}{{7.4.2}{57}{\texorpdfstring {ApplySettings()}{ApplySettings()}}{section*.128}{}} -\@writefile{toc}{\contentsline {paragraph}{CanConnect()}{57}{section*.129}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a03214d814cc25d687cf283544c0b7478_a03214d814cc25d687cf283544c0b7478}{{7.4.2}{58}{\texorpdfstring {CanConnect()}{CanConnect()}}{table.50}{}} -\@writefile{toc}{\contentsline {paragraph}{Disconnect()}{58}{section*.130}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a69d55faf286c564a2244d84908fb8de7_a69d55faf286c564a2244d84908fb8de7}{{7.4.2}{58}{\texorpdfstring {Disconnect()}{Disconnect()}}{section*.130}{}} -\@writefile{toc}{\contentsline {paragraph}{ResetReconnectTimer()}{58}{section*.131}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.3}Property Documentation}{58}{subsubsection.7.4.3}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a59ea01f052d1a1cdcd46b7652a31eb7b_a59ea01f052d1a1cdcd46b7652a31eb7b}{{7.4.3}{58}{Property Documentation}{subsubsection.7.4.3}{}} -\@writefile{toc}{\contentsline {paragraph}{Address}{58}{section*.132}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a0f5601571ed30a21f8d5b0d1dcd769cf_a0f5601571ed30a21f8d5b0d1dcd769cf}{{7.4.3}{58}{\texorpdfstring {Address}{Address}}{section*.132}{}} -\@writefile{toc}{\contentsline {paragraph}{Connected}{59}{section*.133}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a6d323f9b74b844dd3c1772b8002a3c38_a6d323f9b74b844dd3c1772b8002a3c38}{{7.4.3}{59}{\texorpdfstring {Connected}{Connected}}{section*.133}{}} -\@writefile{toc}{\contentsline {paragraph}{ConnectedAddress}{59}{section*.134}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a27fb9a87ab3f56a3f3bb83347e27cdc5_a27fb9a87ab3f56a3f3bb83347e27cdc5}{{7.4.3}{59}{\texorpdfstring {ConnectedAddress}{ConnectedAddress}}{section*.134}{}} -\@writefile{toc}{\contentsline {paragraph}{DownloadsAllowed}{59}{section*.135}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a0d54cbeba816f7543a911249ba11c571_a0d54cbeba816f7543a911249ba11c571}{{7.4.3}{59}{\texorpdfstring {DownloadsAllowed}{DownloadsAllowed}}{section*.135}{}} -\@writefile{toc}{\contentsline {paragraph}{Enabled}{60}{section*.136}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a0d4894d317ef790042b43eb297af0cb5_a0d4894d317ef790042b43eb297af0cb5}{{7.4.3}{60}{\texorpdfstring {Enabled}{Enabled}}{section*.136}{}} -\@writefile{toc}{\contentsline {paragraph}{NamespacePrefix}{60}{section*.137}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_abd00b91d5bf24c2777bdc3914e79aab6_abd00b91d5bf24c2777bdc3914e79aab6}{{7.4.3}{60}{\texorpdfstring {NamespacePrefix}{NamespacePrefix}}{section*.137}{}} -\@writefile{toc}{\contentsline {paragraph}{Port}{60}{section*.138}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_adace505fc9ae3b5da05e0759ac552186_adace505fc9ae3b5da05e0759ac552186}{{7.4.3}{60}{\texorpdfstring {Port}{Port}}{section*.138}{}} -\@writefile{toc}{\contentsline {paragraph}{UploadsAllowed}{61}{section*.139}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.5}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Dependency Class Reference}{61}{subsection.7.5}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency}{{7.5}{61}{Asset.\+Dependency Class Reference}{subsection.7.5}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.1}Detailed Description}{58}{subsubsection.7.4.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.2}Member Function Documentation}{58}{subsubsection.7.4.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_ab7e00eb132c285b4e57d86fcb20a0eab_ab7e00eb132c285b4e57d86fcb20a0eab}{{7.4.2}{58}{Member Function Documentation}{subsubsection.7.4.2}{}} +\@writefile{toc}{\contentsline {paragraph}{ApplySettings()}{58}{section*.128}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a2ceac4f87b79ab2f6e11c52ee1bfc237_a2ceac4f87b79ab2f6e11c52ee1bfc237}{{7.4.2}{58}{\texorpdfstring {ApplySettings()}{ApplySettings()}}{section*.128}{}} +\@writefile{toc}{\contentsline {paragraph}{CanConnect()}{58}{section*.129}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a03214d814cc25d687cf283544c0b7478_a03214d814cc25d687cf283544c0b7478}{{7.4.2}{59}{\texorpdfstring {CanConnect()}{CanConnect()}}{table.50}{}} +\@writefile{toc}{\contentsline {paragraph}{Disconnect()}{59}{section*.130}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a69d55faf286c564a2244d84908fb8de7_a69d55faf286c564a2244d84908fb8de7}{{7.4.2}{59}{\texorpdfstring {Disconnect()}{Disconnect()}}{section*.130}{}} +\@writefile{toc}{\contentsline {paragraph}{ResetReconnectTimer()}{59}{section*.131}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.4.3}Property Documentation}{59}{subsubsection.7.4.3}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a59ea01f052d1a1cdcd46b7652a31eb7b_a59ea01f052d1a1cdcd46b7652a31eb7b}{{7.4.3}{59}{Property Documentation}{subsubsection.7.4.3}{}} +\@writefile{toc}{\contentsline {paragraph}{Address}{59}{section*.132}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a0f5601571ed30a21f8d5b0d1dcd769cf_a0f5601571ed30a21f8d5b0d1dcd769cf}{{7.4.3}{59}{\texorpdfstring {Address}{Address}}{section*.132}{}} +\@writefile{toc}{\contentsline {paragraph}{Connected}{60}{section*.133}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a6d323f9b74b844dd3c1772b8002a3c38_a6d323f9b74b844dd3c1772b8002a3c38}{{7.4.3}{60}{\texorpdfstring {Connected}{Connected}}{section*.133}{}} +\@writefile{toc}{\contentsline {paragraph}{ConnectedAddress}{60}{section*.134}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a27fb9a87ab3f56a3f3bb83347e27cdc5_a27fb9a87ab3f56a3f3bb83347e27cdc5}{{7.4.3}{60}{\texorpdfstring {ConnectedAddress}{ConnectedAddress}}{section*.134}{}} +\@writefile{toc}{\contentsline {paragraph}{DownloadsAllowed}{60}{section*.135}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a0d54cbeba816f7543a911249ba11c571_a0d54cbeba816f7543a911249ba11c571}{{7.4.3}{60}{\texorpdfstring {DownloadsAllowed}{DownloadsAllowed}}{section*.135}{}} +\@writefile{toc}{\contentsline {paragraph}{Enabled}{61}{section*.136}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_a0d4894d317ef790042b43eb297af0cb5_a0d4894d317ef790042b43eb297af0cb5}{{7.4.3}{61}{\texorpdfstring {Enabled}{Enabled}}{section*.136}{}} +\@writefile{toc}{\contentsline {paragraph}{NamespacePrefix}{61}{section*.137}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_abd00b91d5bf24c2777bdc3914e79aab6_abd00b91d5bf24c2777bdc3914e79aab6}{{7.4.3}{61}{\texorpdfstring {NamespacePrefix}{NamespacePrefix}}{section*.137}{}} +\@writefile{toc}{\contentsline {paragraph}{Port}{61}{section*.138}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server_adace505fc9ae3b5da05e0759ac552186_adace505fc9ae3b5da05e0759ac552186}{{7.4.3}{61}{\texorpdfstring {Port}{Port}}{section*.138}{}} +\@writefile{toc}{\contentsline {paragraph}{UploadsAllowed}{62}{section*.139}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.5}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Dependency Class Reference}{62}{subsection.7.5}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency}{{7.5}{62}{Asset.\+Dependency Class Reference}{subsection.7.5}{}} \gdef \LT@li {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.5.1}Detailed Description}{62}{subsubsection.7.5.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.5.2}Member Function Documentation}{62}{subsubsection.7.5.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a5281d751f8d22a0cf586636bb925cbca_a5281d751f8d22a0cf586636bb925cbca}{{7.5.2}{62}{Member Function Documentation}{subsubsection.7.5.2}{}} -\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{62}{section*.142}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a3158b26e37b698fdeb8cc380d475ee1c_a3158b26e37b698fdeb8cc380d475ee1c}{{7.5.2}{62}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.51}{}} -\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{62}{section*.143}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.5.1}Detailed Description}{63}{subsubsection.7.5.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.5.2}Member Function Documentation}{63}{subsubsection.7.5.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a5281d751f8d22a0cf586636bb925cbca_a5281d751f8d22a0cf586636bb925cbca}{{7.5.2}{63}{Member Function Documentation}{subsubsection.7.5.2}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{63}{section*.142}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a3158b26e37b698fdeb8cc380d475ee1c_a3158b26e37b698fdeb8cc380d475ee1c}{{7.5.2}{63}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.51}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{63}{section*.143}\protected@file@percent } \gdef \LT@lii {\LT@entry {3}{34.81357pt}\LT@entry {3}{89.94252pt}} \gdef \LT@liii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a3fd889e4426d5d12102ee08e7b291a0f_a3fd889e4426d5d12102ee08e7b291a0f}{{7.5.2}{63}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.52}{}} -\@writefile{toc}{\contentsline {paragraph}{GetDirect()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{63}{section*.144}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_af349cee54bc70ac16cf55f3ab204b1f9_af349cee54bc70ac16cf55f3ab204b1f9}{{7.5.2}{63}{\texorpdfstring {GetDirect()}{GetDirect()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.53}{}} -\@writefile{toc}{\contentsline {paragraph}{GetDirect()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{63}{section*.145}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a3fd889e4426d5d12102ee08e7b291a0f_a3fd889e4426d5d12102ee08e7b291a0f}{{7.5.2}{64}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.52}{}} +\@writefile{toc}{\contentsline {paragraph}{GetDirect()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{64}{section*.144}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_af349cee54bc70ac16cf55f3ab204b1f9_af349cee54bc70ac16cf55f3ab204b1f9}{{7.5.2}{64}{\texorpdfstring {GetDirect()}{GetDirect()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.53}{}} +\@writefile{toc}{\contentsline {paragraph}{GetDirect()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{64}{section*.145}\protected@file@percent } \gdef \LT@liv {\LT@entry {3}{34.81357pt}\LT@entry {3}{89.94252pt}} \gdef \LT@lv {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a3e3f046819f75953102e43ecf130e92a_a3e3f046819f75953102e43ecf130e92a}{{7.5.2}{64}{\texorpdfstring {GetDirect()}{GetDirect()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.54}{}} -\@writefile{toc}{\contentsline {paragraph}{GetHash()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{64}{section*.146}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a773bdd015f687ec5ea5ab318448ee246_a773bdd015f687ec5ea5ab318448ee246}{{7.5.2}{64}{\texorpdfstring {GetHash()}{GetHash()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.55}{}} -\@writefile{toc}{\contentsline {paragraph}{GetHash()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{64}{section*.147}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a3e3f046819f75953102e43ecf130e92a_a3e3f046819f75953102e43ecf130e92a}{{7.5.2}{65}{\texorpdfstring {GetDirect()}{GetDirect()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.54}{}} +\@writefile{toc}{\contentsline {paragraph}{GetHash()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{65}{section*.146}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a773bdd015f687ec5ea5ab318448ee246_a773bdd015f687ec5ea5ab318448ee246}{{7.5.2}{65}{\texorpdfstring {GetHash()}{GetHash()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.55}{}} +\@writefile{toc}{\contentsline {paragraph}{GetHash()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{65}{section*.147}\protected@file@percent } \gdef \LT@lvi {\LT@entry {3}{29.80966pt}\LT@entry {3}{97.79922pt}} @@ -488,76 +488,76 @@ \gdef \LT@lviii {\LT@entry {3}{134.34303pt}\LT@entry {3}{247.48343pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a2a075809ed33b78a5b235ce1daaadbaa_a2a075809ed33b78a5b235ce1daaadbaa}{{7.5.2}{65}{\texorpdfstring {GetHash()}{GetHash()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.56}{}} -\@writefile{toc}{\contentsline {paragraph}{Register()}{65}{section*.148}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a23e341be7d456b3badf13a34970b25ff_a23e341be7d456b3badf13a34970b25ff}{{7.5.2}{65}{\texorpdfstring {Register()}{Register()}}{table.57}{}} -\@writefile{toc}{\contentsline {paragraph}{Unregister()}{65}{section*.149}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.6}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}File Class Reference}{66}{subsection.7.6}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file}{{7.6}{66}{Asset.\+File Class Reference}{subsection.7.6}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a2a075809ed33b78a5b235ce1daaadbaa_a2a075809ed33b78a5b235ce1daaadbaa}{{7.5.2}{66}{\texorpdfstring {GetHash()}{GetHash()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.56}{}} +\@writefile{toc}{\contentsline {paragraph}{Register()}{66}{section*.148}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_dependency_a23e341be7d456b3badf13a34970b25ff_a23e341be7d456b3badf13a34970b25ff}{{7.5.2}{66}{\texorpdfstring {Register()}{Register()}}{table.57}{}} +\@writefile{toc}{\contentsline {paragraph}{Unregister()}{66}{section*.149}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.6}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}File Class Reference}{67}{subsection.7.6}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file}{{7.6}{67}{Asset.\+File Class Reference}{subsection.7.6}{}} \gdef \LT@lix {\LT@entry {3}{111.82527pt}\LT@entry {3}{194.46617pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.1}Detailed Description}{69}{subsubsection.7.6.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.2}Member Function Documentation}{69}{subsubsection.7.6.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ab0082c2158f7de6376b26a75827bd7a2_ab0082c2158f7de6376b26a75827bd7a2}{{7.6.2}{69}{Member Function Documentation}{subsubsection.7.6.2}{}} -\@writefile{toc}{\contentsline {paragraph}{BatchEditing()}{69}{section*.154}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.1}Detailed Description}{70}{subsubsection.7.6.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.2}Member Function Documentation}{70}{subsubsection.7.6.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ab0082c2158f7de6376b26a75827bd7a2_ab0082c2158f7de6376b26a75827bd7a2}{{7.6.2}{70}{Member Function Documentation}{subsubsection.7.6.2}{}} +\@writefile{toc}{\contentsline {paragraph}{BatchEditing()}{70}{section*.154}\protected@file@percent } \gdef \LT@lx {\LT@entry {3}{74.47575pt}\LT@entry {3}{250.18405pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a2bdf010d46d8dd5ea6420e4bdc75c9aa_a2bdf010d46d8dd5ea6420e4bdc75c9aa}{{7.6.2}{70}{\texorpdfstring {BatchEditing()}{BatchEditing()}}{table.59}{}} -\@writefile{toc}{\contentsline {paragraph}{CanMove()}{70}{section*.155}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a3d74dc290eb0f6815b0f1eac29c6c2e6_a3d74dc290eb0f6815b0f1eac29c6c2e6}{{7.6.2}{70}{\texorpdfstring {CanMove()}{CanMove()}}{table.60}{}} -\@writefile{toc}{\contentsline {paragraph}{CanOpenInEditor()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{70}{section*.156}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a2bdf010d46d8dd5ea6420e4bdc75c9aa_a2bdf010d46d8dd5ea6420e4bdc75c9aa}{{7.6.2}{71}{\texorpdfstring {BatchEditing()}{BatchEditing()}}{table.59}{}} +\@writefile{toc}{\contentsline {paragraph}{CanMove()}{71}{section*.155}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a3d74dc290eb0f6815b0f1eac29c6c2e6_a3d74dc290eb0f6815b0f1eac29c6c2e6}{{7.6.2}{71}{\texorpdfstring {CanMove()}{CanMove()}}{table.60}{}} +\@writefile{toc}{\contentsline {paragraph}{CanOpenInEditor()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{71}{section*.156}\protected@file@percent } \gdef \LT@lxi {\LT@entry {3}{46.3154pt}\LT@entry {3}{135.78708pt}} \gdef \LT@lxii {\LT@entry {3}{53.8212pt}\LT@entry {3}{150.97002pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aabdb1dcc073e89416e72eccf3839ad1d_aabdb1dcc073e89416e72eccf3839ad1d}{{7.6.2}{71}{\texorpdfstring {CanOpenInEditor()}{CanOpenInEditor()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.61}{}} -\@writefile{toc}{\contentsline {paragraph}{CanOpenInEditor()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{71}{section*.157}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a68db67f53a3a2a6002b9922d2678bc96_a68db67f53a3a2a6002b9922d2678bc96}{{7.6.2}{71}{\texorpdfstring {CanOpenInEditor()}{CanOpenInEditor()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.62}{}} -\@writefile{toc}{\contentsline {paragraph}{Copy()}{71}{section*.158}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aabdb1dcc073e89416e72eccf3839ad1d_aabdb1dcc073e89416e72eccf3839ad1d}{{7.6.2}{72}{\texorpdfstring {CanOpenInEditor()}{CanOpenInEditor()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.61}{}} +\@writefile{toc}{\contentsline {paragraph}{CanOpenInEditor()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{72}{section*.157}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a68db67f53a3a2a6002b9922d2678bc96_a68db67f53a3a2a6002b9922d2678bc96}{{7.6.2}{72}{\texorpdfstring {CanOpenInEditor()}{CanOpenInEditor()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.62}{}} +\@writefile{toc}{\contentsline {paragraph}{Copy()}{72}{section*.158}\protected@file@percent } \gdef \LT@lxiii {\LT@entry {3}{74.47575pt}\LT@entry {3}{114.27805pt}} \gdef \LT@lxiv {\LT@entry {3}{74.47575pt}\LT@entry {3}{266.63539pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a73e80cb6412abff44ed9c172f7f92e36_a73e80cb6412abff44ed9c172f7f92e36}{{7.6.2}{72}{\texorpdfstring {Copy()}{Copy()}}{table.63}{}} -\@writefile{toc}{\contentsline {paragraph}{CopyAsNew()}{72}{section*.159}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d222_a64bf135da6d9a9b8a5b59c50e839d222}{{7.6.2}{72}{\texorpdfstring {CopyAsNew()}{CopyAsNew()}}{table.64}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a73e80cb6412abff44ed9c172f7f92e36_a73e80cb6412abff44ed9c172f7f92e36}{{7.6.2}{73}{\texorpdfstring {Copy()}{Copy()}}{table.63}{}} +\@writefile{toc}{\contentsline {paragraph}{CopyAsNew()}{73}{section*.159}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d222_a64bf135da6d9a9b8a5b59c50e839d222}{{7.6.2}{73}{\texorpdfstring {CopyAsNew()}{CopyAsNew()}}{table.64}{}} \gdef \LT@lxv {\LT@entry {3}{46.81934pt}\LT@entry {3}{123.8266pt}} -\@writefile{toc}{\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{73}{section*.160}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_acfdbd887acb03dfdc27a2e7628055a8a_acfdbd887acb03dfdc27a2e7628055a8a}{{7.6.2}{73}{\texorpdfstring {Create()}{Create()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.161}{}} -\@writefile{toc}{\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{73}{section*.162}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{74}{section*.160}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_acfdbd887acb03dfdc27a2e7628055a8a_acfdbd887acb03dfdc27a2e7628055a8a}{{7.6.2}{74}{\texorpdfstring {Create()}{Create()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.161}{}} +\@writefile{toc}{\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{74}{section*.162}\protected@file@percent } \gdef \LT@lxvi {\LT@entry {3}{46.3154pt}\LT@entry {3}{150.43025pt}} \gdef \LT@lxvii {\LT@entry {3}{46.81934pt}\LT@entry {3}{123.8266pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a57a28b554ce2ca500c6eeba3a17852b2_a57a28b554ce2ca500c6eeba3a17852b2}{{7.6.2}{74}{\texorpdfstring {Create()}{Create()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.66}{}} -\@writefile{toc}{\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{74}{section*.163}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aceef508c424cb6d38e755ddd6bde4dd7_aceef508c424cb6d38e755ddd6bde4dd7}{{7.6.2}{74}{\texorpdfstring {Create()}{Create()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.67}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a57a28b554ce2ca500c6eeba3a17852b2_a57a28b554ce2ca500c6eeba3a17852b2}{{7.6.2}{75}{\texorpdfstring {Create()}{Create()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.66}{}} +\@writefile{toc}{\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{75}{section*.163}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aceef508c424cb6d38e755ddd6bde4dd7_aceef508c424cb6d38e755ddd6bde4dd7}{{7.6.2}{75}{\texorpdfstring {Create()}{Create()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.67}{}} \gdef \LT@lxviii {\LT@entry {3}{46.81934pt}\LT@entry {3}{317.73636pt}} \gdef \LT@lxix {\LT@entry {3}{46.3154pt}\LT@entry {3}{317.73636pt}} -\@writefile{toc}{\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{75}{section*.164}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a7fe77714391ee2e69e6b2b45fc97dff6_a7fe77714391ee2e69e6b2b45fc97dff6}{{7.6.2}{75}{\texorpdfstring {CreateAsNew()}{CreateAsNew()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.68}{}} -\@writefile{toc}{\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{75}{section*.165}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{76}{section*.164}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a7fe77714391ee2e69e6b2b45fc97dff6_a7fe77714391ee2e69e6b2b45fc97dff6}{{7.6.2}{76}{\texorpdfstring {CreateAsNew()}{CreateAsNew()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.68}{}} +\@writefile{toc}{\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{76}{section*.165}\protected@file@percent } \gdef \LT@lxx {\LT@entry {3}{46.81934pt}\LT@entry {3}{317.73636pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a709af33f201b4704e1919a289b93189d_a709af33f201b4704e1919a289b93189d}{{7.6.2}{76}{\texorpdfstring {CreateAsNew()}{CreateAsNew()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.69}{}} -\@writefile{toc}{\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{76}{section*.166}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a5ed30d6c3ba66e66db44c0d8490dcdfc_a5ed30d6c3ba66e66db44c0d8490dcdfc}{{7.6.2}{76}{\texorpdfstring {CreateAsNew()}{CreateAsNew()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.70}{}} -\@writefile{toc}{\contentsline {paragraph}{CreateOrLoad$<$ T $>$()}{76}{section*.167}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a709af33f201b4704e1919a289b93189d_a709af33f201b4704e1919a289b93189d}{{7.6.2}{77}{\texorpdfstring {CreateAsNew()}{CreateAsNew()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.69}{}} +\@writefile{toc}{\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{77}{section*.166}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a5ed30d6c3ba66e66db44c0d8490dcdfc_a5ed30d6c3ba66e66db44c0d8490dcdfc}{{7.6.2}{77}{\texorpdfstring {CreateAsNew()}{CreateAsNew()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.70}{}} +\@writefile{toc}{\contentsline {paragraph}{CreateOrLoad$<$ T $>$()}{77}{section*.167}\protected@file@percent } \gdef \LT@lxxi {\LT@entry {3}{59.32904pt}\LT@entry {3}{167.55681pt}} @@ -567,103 +567,103 @@ \gdef \LT@lxxiii {\LT@entry {3}{34.81357pt}\LT@entry {3}{91.81425pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a0ee72382871919c7584e6962088c34ba_a0ee72382871919c7584e6962088c34ba}{{7.6.2}{77}{\texorpdfstring {CreateOrLoad$<$ T $>$()}{CreateOrLoad< T >()}}{table.72}{}} -\@writefile{toc}{\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{77}{section*.168}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a397f277ed8b22e8ee60662f7b8b3ef06_a397f277ed8b22e8ee60662f7b8b3ef06}{{7.6.2}{77}{\texorpdfstring {Delete()}{Delete()}\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{table.73}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a0ee72382871919c7584e6962088c34ba_a0ee72382871919c7584e6962088c34ba}{{7.6.2}{78}{\texorpdfstring {CreateOrLoad$<$ T $>$()}{CreateOrLoad< T >()}}{table.72}{}} +\@writefile{toc}{\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{78}{section*.168}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a397f277ed8b22e8ee60662f7b8b3ef06_a397f277ed8b22e8ee60662f7b8b3ef06}{{7.6.2}{78}{\texorpdfstring {Delete()}{Delete()}\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{table.73}{}} \gdef \LT@lxxiv {\LT@entry {3}{34.81357pt}\LT@entry {3}{91.81425pt}} \gdef \LT@lxxv {\LT@entry {3}{34.30963pt}\LT@entry {3}{91.31032pt}} -\@writefile{toc}{\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{78}{section*.169}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ac644ddb8e561a93366765ea0017771ec_ac644ddb8e561a93366765ea0017771ec}{{7.6.2}{78}{\texorpdfstring {Delete()}{Delete()}\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{table.74}{}} -\@writefile{toc}{\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{78}{section*.170}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a5a01eb8f2adc1117b9df394acbe3c529_a5a01eb8f2adc1117b9df394acbe3c529}{{7.6.2}{78}{\texorpdfstring {Delete()}{Delete()}\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{table.75}{}} +\@writefile{toc}{\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{79}{section*.169}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ac644ddb8e561a93366765ea0017771ec_ac644ddb8e561a93366765ea0017771ec}{{7.6.2}{79}{\texorpdfstring {Delete()}{Delete()}\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{table.74}{}} +\@writefile{toc}{\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{79}{section*.170}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a5a01eb8f2adc1117b9df394acbe3c529_a5a01eb8f2adc1117b9df394acbe3c529}{{7.6.2}{79}{\texorpdfstring {Delete()}{Delete()}\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{table.75}{}} \gdef \LT@lxxvi {\LT@entry {3}{30.3136pt}\LT@entry {3}{87.31429pt}} -\@writefile{toc}{\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{79}{section*.171}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a9824149809d0caf6b7853241fe518852_a9824149809d0caf6b7853241fe518852}{{7.6.2}{79}{\texorpdfstring {Delete()}{Delete()}\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{figure.caption.172}{}} -\@writefile{toc}{\contentsline {paragraph}{Find()}{79}{section*.173}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{80}{section*.171}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a9824149809d0caf6b7853241fe518852_a9824149809d0caf6b7853241fe518852}{{7.6.2}{80}{\texorpdfstring {Delete()}{Delete()}\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{figure.caption.172}{}} +\@writefile{toc}{\contentsline {paragraph}{Find()}{80}{section*.173}\protected@file@percent } \gdef \LT@lxxvii {\LT@entry {3}{77.04996pt}\LT@entry {3}{373.95859pt}} \gdef \LT@lxxviii {\LT@entry {3}{77.04996pt}\LT@entry {3}{373.95859pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a6a20df93ae9409f4216c6f98cf334c30_a6a20df93ae9409f4216c6f98cf334c30}{{7.6.2}{80}{\texorpdfstring {Find()}{Find()}}{table.77}{}} -\@writefile{toc}{\contentsline {paragraph}{FindGuids()}{80}{section*.174}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a3e3543e7c5f85939c0a53e5e0a95fb80_a3e3543e7c5f85939c0a53e5e0a95fb80}{{7.6.2}{80}{\texorpdfstring {FindGuids()}{FindGuids()}}{table.78}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a6a20df93ae9409f4216c6f98cf334c30_a6a20df93ae9409f4216c6f98cf334c30}{{7.6.2}{81}{\texorpdfstring {Find()}{Find()}}{table.77}{}} +\@writefile{toc}{\contentsline {paragraph}{FindGuids()}{81}{section*.174}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a3e3543e7c5f85939c0a53e5e0a95fb80_a3e3543e7c5f85939c0a53e5e0a95fb80}{{7.6.2}{81}{\texorpdfstring {FindGuids()}{FindGuids()}}{table.78}{}} \gdef \LT@lxxix {\LT@entry {3}{77.04996pt}\LT@entry {3}{378.19415pt}} \gdef \LT@lxxx {\LT@entry {3}{77.04996pt}\LT@entry {3}{373.95859pt}} -\@writefile{toc}{\contentsline {paragraph}{FindPaths()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{81}{section*.175}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aeb2b5afda3ab0df2521ff86e9d7c80b8_aeb2b5afda3ab0df2521ff86e9d7c80b8}{{7.6.2}{81}{\texorpdfstring {FindPaths()}{FindPaths()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.79}{}} -\@writefile{toc}{\contentsline {paragraph}{FindPaths()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{81}{section*.176}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{FindPaths()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{82}{section*.175}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aeb2b5afda3ab0df2521ff86e9d7c80b8_aeb2b5afda3ab0df2521ff86e9d7c80b8}{{7.6.2}{82}{\texorpdfstring {FindPaths()}{FindPaths()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.79}{}} +\@writefile{toc}{\contentsline {paragraph}{FindPaths()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{82}{section*.176}\protected@file@percent } \gdef \LT@lxxxi {\LT@entry {3}{34.30963pt}\LT@entry {3}{161.51775pt}} \gdef \LT@lxxxii {\LT@entry {3}{34.30963pt}\LT@entry {3}{12.4pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_af8f67d95622e7afce379eaa04c82eaf6_af8f67d95622e7afce379eaa04c82eaf6}{{7.6.2}{82}{\texorpdfstring {FindPaths()}{FindPaths()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.80}{}} -\@writefile{toc}{\contentsline {paragraph}{ForceSave()}{82}{section*.177}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a2adfcc36a6b34de943aedfdd1db882f6_a2adfcc36a6b34de943aedfdd1db882f6}{{7.6.2}{82}{\texorpdfstring {ForceSave()}{ForceSave()}}{table.81}{}} -\@writefile{toc}{\contentsline {paragraph}{GetFileId()}{82}{section*.178}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_af8f67d95622e7afce379eaa04c82eaf6_af8f67d95622e7afce379eaa04c82eaf6}{{7.6.2}{83}{\texorpdfstring {FindPaths()}{FindPaths()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.80}{}} +\@writefile{toc}{\contentsline {paragraph}{ForceSave()}{83}{section*.177}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a2adfcc36a6b34de943aedfdd1db882f6_a2adfcc36a6b34de943aedfdd1db882f6}{{7.6.2}{83}{\texorpdfstring {ForceSave()}{ForceSave()}}{table.81}{}} +\@writefile{toc}{\contentsline {paragraph}{GetFileId()}{83}{section*.178}\protected@file@percent } \gdef \LT@lxxxiii {\LT@entry {3}{34.30963pt}\LT@entry {3}{85.8026pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a856bd8735a17035cea08243c66e0eee8_a856bd8735a17035cea08243c66e0eee8}{{7.6.2}{83}{\texorpdfstring {GetFileId()}{GetFileId()}}{table.82}{}} -\@writefile{toc}{\contentsline {paragraph}{GetGuid()}{83}{section*.179}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a0b39fc9791994323a44a1126f3a41b99_a0b39fc9791994323a44a1126f3a41b99}{{7.6.2}{83}{\texorpdfstring {GetGuid()}{GetGuid()}}{table.83}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a856bd8735a17035cea08243c66e0eee8_a856bd8735a17035cea08243c66e0eee8}{{7.6.2}{84}{\texorpdfstring {GetFileId()}{GetFileId()}}{table.82}{}} +\@writefile{toc}{\contentsline {paragraph}{GetGuid()}{84}{section*.179}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a0b39fc9791994323a44a1126f3a41b99_a0b39fc9791994323a44a1126f3a41b99}{{7.6.2}{84}{\texorpdfstring {GetGuid()}{GetGuid()}}{table.83}{}} \gdef \LT@lxxxiv {\LT@entry {3}{34.30963pt}\LT@entry {3}{232.49034pt}} \gdef \LT@lxxxv {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} -\@writefile{toc}{\contentsline {paragraph}{GetGuidAndFileId()}{84}{section*.180}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a3192f3d24b4397b10f50ef366ee3feba_a3192f3d24b4397b10f50ef366ee3feba}{{7.6.2}{84}{\texorpdfstring {GetGuidAndFileId()}{GetGuidAndFileId()}}{table.84}{}} -\@writefile{toc}{\contentsline {paragraph}{GetMainType()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{84}{section*.181}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{GetGuidAndFileId()}{85}{section*.180}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a3192f3d24b4397b10f50ef366ee3feba_a3192f3d24b4397b10f50ef366ee3feba}{{7.6.2}{85}{\texorpdfstring {GetGuidAndFileId()}{GetGuidAndFileId()}}{table.84}{}} +\@writefile{toc}{\contentsline {paragraph}{GetMainType()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{85}{section*.181}\protected@file@percent } \gdef \LT@lxxxvi {\LT@entry {3}{29.80966pt}\LT@entry {3}{80.43845pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a82b0bb0beb5f5422951631789bca4256_a82b0bb0beb5f5422951631789bca4256}{{7.6.2}{85}{\texorpdfstring {GetMainType()}{GetMainType()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{figure.caption.182}{}} -\@writefile{toc}{\contentsline {paragraph}{GetMainType()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{85}{section*.183}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a82b0bb0beb5f5422951631789bca4256_a82b0bb0beb5f5422951631789bca4256}{{7.6.2}{86}{\texorpdfstring {GetMainType()}{GetMainType()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{figure.caption.182}{}} +\@writefile{toc}{\contentsline {paragraph}{GetMainType()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{86}{section*.183}\protected@file@percent } \gdef \LT@lxxxvii {\LT@entry {3}{31.80762pt}\LT@entry {3}{128.4525pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ab9e60595a8cc5748f38f91b3ed83aeca_ab9e60595a8cc5748f38f91b3ed83aeca}{{7.6.2}{86}{\texorpdfstring {GetMainType()}{GetMainType()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{figure.caption.184}{}} -\@writefile{toc}{\contentsline {paragraph}{GetSubType()}{86}{section*.185}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}{{7.6.2}{86}{\texorpdfstring {GetSubType()}{GetSubType()}}{table.87}{}} -\@writefile{toc}{\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{86}{section*.186}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ab9e60595a8cc5748f38f91b3ed83aeca_ab9e60595a8cc5748f38f91b3ed83aeca}{{7.6.2}{87}{\texorpdfstring {GetMainType()}{GetMainType()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{figure.caption.184}{}} +\@writefile{toc}{\contentsline {paragraph}{GetSubType()}{87}{section*.185}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_af2ccad52b2993c46962c3dea1c2ef54d_af2ccad52b2993c46962c3dea1c2ef54d}{{7.6.2}{87}{\texorpdfstring {GetSubType()}{GetSubType()}}{table.87}{}} +\@writefile{toc}{\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{87}{section*.186}\protected@file@percent } \gdef \LT@lxxxviii {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} \gdef \LT@lxxxix {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ae3c1d18d1f26557851b440b5704d2188_ae3c1d18d1f26557851b440b5704d2188}{{7.6.2}{87}{\texorpdfstring {Import()}{Import()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.187}{}} -\@writefile{toc}{\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{87}{section*.188}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aff6427c4b634d2e4ff4d23995a3319f0_aff6427c4b634d2e4ff4d23995a3319f0}{{7.6.2}{88}{\texorpdfstring {Import()}{Import()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.88}{}} +\@writefile{toc}{\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{88}{section*.187}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97}{{7.6.2}{88}{\texorpdfstring {Import()}{Import()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.89}{}} +\@writefile{toc}{\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{88}{section*.188}\protected@file@percent } \gdef \LT@xc {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0}{{7.6.2}{89}{\texorpdfstring {Import()}{Import()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{figure.caption.189}{}} +\@writefile{toc}{\contentsline {paragraph}{ImportAndLoad$<$ T $>$()}{89}{section*.190}\protected@file@percent } \gdef \LT@xci {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a39290f9fb99198f7df818bc5cafb0e1a_a39290f9fb99198f7df818bc5cafb0e1a}{{7.6.2}{88}{\texorpdfstring {Import()}{Import()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.89}{}} -\@writefile{toc}{\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{88}{section*.189}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c0_a4dc6aff1e32f03b26ec0e310fb4233c0}{{7.6.2}{88}{\texorpdfstring {Import()}{Import()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.90}{}} -\@writefile{toc}{\contentsline {paragraph}{ImportAndLoad$<$ T $>$()}{88}{section*.190}\protected@file@percent } \gdef \LT@xcii {\LT@entry {3}{18.29893pt}\LT@entry {3}{151.60016pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a4f89e334c74903942522d0e0066d28b7_a4f89e334c74903942522d0e0066d28b7}{{7.6.2}{89}{\texorpdfstring {ImportAndLoad$<$ T $>$()}{ImportAndLoad< T >()}}{figure.caption.191}{}} -\@writefile{toc}{\contentsline {paragraph}{Load$<$ T $>$()}{89}{section*.192}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a4f89e334c74903942522d0e0066d28b7_a4f89e334c74903942522d0e0066d28b7}{{7.6.2}{90}{\texorpdfstring {ImportAndLoad$<$ T $>$()}{ImportAndLoad< T >()}}{figure.caption.191}{}} +\@writefile{toc}{\contentsline {paragraph}{Load$<$ T $>$()}{90}{section*.192}\protected@file@percent } \gdef \LT@xciii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} @@ -673,59 +673,59 @@ \gdef \LT@xcv {\LT@entry {3}{53.30824pt}\LT@entry {3}{308.76347pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a1de889c18256fc25aa6f53507d448050_a1de889c18256fc25aa6f53507d448050}{{7.6.2}{90}{\texorpdfstring {Load$<$ T $>$()}{Load< T >()}}{table.94}{}} -\@writefile{toc}{\contentsline {paragraph}{LoadAsync()}{90}{section*.193}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a1de889c18256fc25aa6f53507d448050_a1de889c18256fc25aa6f53507d448050}{{7.6.2}{91}{\texorpdfstring {Load$<$ T $>$()}{Load< T >()}}{table.94}{}} +\@writefile{toc}{\contentsline {paragraph}{LoadAsync()}{91}{section*.193}\protected@file@percent } \gdef \LT@xcvi {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} \gdef \LT@xcvii {\LT@entry {3}{18.29893pt}\LT@entry {3}{143.09538pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a8cc280e1c5ddde8511c2af5541365b3f_a8cc280e1c5ddde8511c2af5541365b3f}{{7.6.2}{91}{\texorpdfstring {LoadAsync()}{LoadAsync()}}{table.95}{}} -\@writefile{toc}{\contentsline {paragraph}{LoadMain$<$ T $>$()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{91}{section*.194}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a8cc280e1c5ddde8511c2af5541365b3f_a8cc280e1c5ddde8511c2af5541365b3f}{{7.6.2}{92}{\texorpdfstring {LoadAsync()}{LoadAsync()}}{table.95}{}} +\@writefile{toc}{\contentsline {paragraph}{LoadMain$<$ T $>$()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{92}{section*.194}\protected@file@percent } \gdef \LT@xcviii {\LT@entry {3}{29.80966pt}\LT@entry {3}{83.93042pt}} \gdef \LT@xcix {\LT@entry {3}{18.29893pt}\LT@entry {3}{143.09538pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a9702d12ef27f2d0dfd1f8201fbb37088_a9702d12ef27f2d0dfd1f8201fbb37088}{{7.6.2}{92}{\texorpdfstring {LoadMain$<$ T $>$()}{LoadMain< T >()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.97}{}} -\@writefile{toc}{\contentsline {paragraph}{LoadMain$<$ T $>$()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{92}{section*.195}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a9702d12ef27f2d0dfd1f8201fbb37088_a9702d12ef27f2d0dfd1f8201fbb37088}{{7.6.2}{93}{\texorpdfstring {LoadMain$<$ T $>$()}{LoadMain< T >()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.97}{}} +\@writefile{toc}{\contentsline {paragraph}{LoadMain$<$ T $>$()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{93}{section*.195}\protected@file@percent } \gdef \LT@c {\LT@entry {3}{59.32904pt}\LT@entry {3}{351.68356pt}} \gdef \LT@ci {\LT@entry {3}{18.29893pt}\LT@entry {3}{143.09538pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a8e86208ec0d709c8259baacdb5e70281_a8e86208ec0d709c8259baacdb5e70281}{{7.6.2}{93}{\texorpdfstring {LoadMain$<$ T $>$()}{LoadMain< T >()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{figure.caption.196}{}} -\@writefile{toc}{\contentsline {paragraph}{LoadOrCreate$<$ T $>$()}{93}{section*.197}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a8e86208ec0d709c8259baacdb5e70281_a8e86208ec0d709c8259baacdb5e70281}{{7.6.2}{94}{\texorpdfstring {LoadMain$<$ T $>$()}{LoadMain< T >()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{figure.caption.196}{}} +\@writefile{toc}{\contentsline {paragraph}{LoadOrCreate$<$ T $>$()}{94}{section*.197}\protected@file@percent } \gdef \LT@cii {\LT@entry {3}{74.47575pt}\LT@entry {3}{250.18405pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a996c0cfd9dbc6b65d0efec125ca6ec75_a996c0cfd9dbc6b65d0efec125ca6ec75}{{7.6.2}{94}{\texorpdfstring {LoadOrCreate$<$ T $>$()}{LoadOrCreate< T >()}}{figure.caption.198}{}} -\@writefile{toc}{\contentsline {paragraph}{Move()}{94}{section*.199}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a996c0cfd9dbc6b65d0efec125ca6ec75_a996c0cfd9dbc6b65d0efec125ca6ec75}{{7.6.2}{95}{\texorpdfstring {LoadOrCreate$<$ T $>$()}{LoadOrCreate< T >()}}{figure.caption.198}{}} +\@writefile{toc}{\contentsline {paragraph}{Move()}{95}{section*.199}\protected@file@percent } \gdef \LT@ciii {\LT@entry {3}{73.81001pt}\LT@entry {3}{331.31717pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aac35e74243833f4963e3cf8ab1a4f845_aac35e74243833f4963e3cf8ab1a4f845}{{7.6.2}{95}{\texorpdfstring {Move()}{Move()}}{figure.caption.200}{}} -\@writefile{toc}{\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{95}{section*.201}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a0f433ac6de466ab7e094565c97af8db9_a0f433ac6de466ab7e094565c97af8db9}{{7.6.2}{95}{\texorpdfstring {OpenExternal()}{OpenExternal()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.103}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aac35e74243833f4963e3cf8ab1a4f845_aac35e74243833f4963e3cf8ab1a4f845}{{7.6.2}{96}{\texorpdfstring {Move()}{Move()}}{figure.caption.200}{}} +\@writefile{toc}{\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{96}{section*.201}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a0f433ac6de466ab7e094565c97af8db9_a0f433ac6de466ab7e094565c97af8db9}{{7.6.2}{96}{\texorpdfstring {OpenExternal()}{OpenExternal()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.103}{}} \gdef \LT@civ {\LT@entry {3}{73.81001pt}\LT@entry {3}{331.31717pt}} \gdef \LT@cv {\LT@entry {3}{73.81001pt}\LT@entry {3}{331.31717pt}} -\@writefile{toc}{\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{96}{section*.202}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a009c655c2959b1ccd6b5a94a6da261e4_a009c655c2959b1ccd6b5a94a6da261e4}{{7.6.2}{96}{\texorpdfstring {OpenExternal()}{OpenExternal()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.104}{}} -\@writefile{toc}{\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{96}{section*.203}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a34bfcab396a4bfed873f01e8622033ab_a34bfcab396a4bfed873f01e8622033ab}{{7.6.2}{96}{\texorpdfstring {OpenExternal()}{OpenExternal()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.105}{}} +\@writefile{toc}{\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{97}{section*.202}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a009c655c2959b1ccd6b5a94a6da261e4_a009c655c2959b1ccd6b5a94a6da261e4}{{7.6.2}{97}{\texorpdfstring {OpenExternal()}{OpenExternal()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.104}{}} +\@writefile{toc}{\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{97}{section*.203}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a34bfcab396a4bfed873f01e8622033ab_a34bfcab396a4bfed873f01e8622033ab}{{7.6.2}{97}{\texorpdfstring {OpenExternal()}{OpenExternal()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.105}{}} \gdef \LT@cvi {\LT@entry {3}{67.62717pt}\LT@entry {3}{160.01509pt}} -\@writefile{toc}{\contentsline {paragraph}{Rename()}{97}{section*.204}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a07847a761e01e0d2fdd91c3cf6db50d2_a07847a761e01e0d2fdd91c3cf6db50d2}{{7.6.2}{97}{\texorpdfstring {Rename()}{Rename()}}{figure.caption.205}{}} -\@writefile{toc}{\contentsline {paragraph}{Save()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{97}{section*.206}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Rename()}{98}{section*.204}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a07847a761e01e0d2fdd91c3cf6db50d2_a07847a761e01e0d2fdd91c3cf6db50d2}{{7.6.2}{98}{\texorpdfstring {Rename()}{Rename()}}{figure.caption.205}{}} +\@writefile{toc}{\contentsline {paragraph}{Save()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{98}{section*.206}\protected@file@percent } \gdef \LT@cvii {\LT@entry {3}{34.30963pt}\LT@entry {3}{85.39763pt}} @@ -735,103 +735,103 @@ \gdef \LT@cix {\LT@entry {3}{34.81357pt}\LT@entry {3}{111.36185pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a0d399890489ab279eb57b94b19f2d19c_a0d399890489ab279eb57b94b19f2d19c}{{7.6.2}{98}{\texorpdfstring {Save()}{Save()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.107}{}} -\@writefile{toc}{\contentsline {paragraph}{Save()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{98}{section*.207}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a648bb9fbc03561bb60612a090b8317d2_a648bb9fbc03561bb60612a090b8317d2}{{7.6.2}{98}{\texorpdfstring {Save()}{Save()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.108}{}} -\@writefile{toc}{\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{98}{section*.208}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a0d399890489ab279eb57b94b19f2d19c_a0d399890489ab279eb57b94b19f2d19c}{{7.6.2}{99}{\texorpdfstring {Save()}{Save()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.107}{}} +\@writefile{toc}{\contentsline {paragraph}{Save()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{99}{section*.207}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a648bb9fbc03561bb60612a090b8317d2_a648bb9fbc03561bb60612a090b8317d2}{{7.6.2}{99}{\texorpdfstring {Save()}{Save()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.108}{}} +\@writefile{toc}{\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{99}{section*.208}\protected@file@percent } \gdef \LT@cx {\LT@entry {3}{34.81357pt}\LT@entry {3}{111.36185pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a5c0a13cf46027517d371dd2d3c49fdee_a5c0a13cf46027517d371dd2d3c49fdee}{{7.6.2}{99}{\texorpdfstring {Trash()}{Trash()}\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{table.109}{}} -\@writefile{toc}{\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{99}{section*.209}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aaecd043609a6fb930141fd2cf906b808_aaecd043609a6fb930141fd2cf906b808}{{7.6.2}{99}{\texorpdfstring {Trash()}{Trash()}\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{table.110}{}} -\@writefile{toc}{\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{99}{section*.210}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a5c0a13cf46027517d371dd2d3c49fdee_a5c0a13cf46027517d371dd2d3c49fdee}{{7.6.2}{100}{\texorpdfstring {Trash()}{Trash()}\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{table.109}{}} +\@writefile{toc}{\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{100}{section*.209}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_aaecd043609a6fb930141fd2cf906b808_aaecd043609a6fb930141fd2cf906b808}{{7.6.2}{100}{\texorpdfstring {Trash()}{Trash()}\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{table.110}{}} +\@writefile{toc}{\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{100}{section*.210}\protected@file@percent } \gdef \LT@cxi {\LT@entry {3}{34.30963pt}\LT@entry {3}{86.84637pt}} \gdef \LT@cxii {\LT@entry {3}{30.3136pt}\LT@entry {3}{106.86188pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a7b0aaffab801a8597c60daff4bccb177_a7b0aaffab801a8597c60daff4bccb177}{{7.6.2}{100}{\texorpdfstring {Trash()}{Trash()}\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{table.111}{}} -\@writefile{toc}{\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{100}{section*.211}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.3}Property Documentation}{101}{subsubsection.7.6.3}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a02854122d4449e39feb8c1dfdc8bd537_a02854122d4449e39feb8c1dfdc8bd537}{{7.6.3}{101}{Property Documentation}{subsubsection.7.6.3}{}} -\@writefile{toc}{\contentsline {paragraph}{PathsNotDeleted}{101}{section*.213}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.7}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Importer Class Reference}{101}{subsection.7.7}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer}{{7.7}{101}{Asset.\+Importer Class Reference}{subsection.7.7}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a7b0aaffab801a8597c60daff4bccb177_a7b0aaffab801a8597c60daff4bccb177}{{7.6.2}{101}{\texorpdfstring {Trash()}{Trash()}\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{table.111}{}} +\@writefile{toc}{\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{101}{section*.211}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.3}Property Documentation}{102}{subsubsection.7.6.3}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_file_a02854122d4449e39feb8c1dfdc8bd537_a02854122d4449e39feb8c1dfdc8bd537}{{7.6.3}{102}{Property Documentation}{subsubsection.7.6.3}{}} +\@writefile{toc}{\contentsline {paragraph}{PathsNotDeleted}{102}{section*.213}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.7}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Importer Class Reference}{102}{subsection.7.7}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer}{{7.7}{102}{Asset.\+Importer Class Reference}{subsection.7.7}{}} \gdef \LT@cxiii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.7.1}Detailed Description}{103}{subsubsection.7.7.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.7.2}Member Function Documentation}{103}{subsubsection.7.7.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a1a9a83a1db886ceb61eecb0933d27f30_a1a9a83a1db886ceb61eecb0933d27f30}{{7.7.2}{103}{Member Function Documentation}{subsubsection.7.7.2}{}} -\@writefile{toc}{\contentsline {paragraph}{ApplySettings()}{103}{section*.216}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_ad3ff923faecf93e9371b98d6217be0df_ad3ff923faecf93e9371b98d6217be0df}{{7.7.2}{103}{\texorpdfstring {ApplySettings()}{ApplySettings()}}{table.113}{}} -\@writefile{toc}{\contentsline {paragraph}{ClearOverride()}{103}{section*.217}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.7.1}Detailed Description}{104}{subsubsection.7.7.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.7.2}Member Function Documentation}{104}{subsubsection.7.7.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a1a9a83a1db886ceb61eecb0933d27f30_a1a9a83a1db886ceb61eecb0933d27f30}{{7.7.2}{104}{Member Function Documentation}{subsubsection.7.7.2}{}} +\@writefile{toc}{\contentsline {paragraph}{ApplySettings()}{104}{section*.216}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_ad3ff923faecf93e9371b98d6217be0df_ad3ff923faecf93e9371b98d6217be0df}{{7.7.2}{104}{\texorpdfstring {ApplySettings()}{ApplySettings()}}{table.113}{}} +\@writefile{toc}{\contentsline {paragraph}{ClearOverride()}{104}{section*.217}\protected@file@percent } \gdef \LT@cxiv {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} \gdef \LT@cxv {\LT@entry {3}{34.30963pt}\LT@entry {3}{109.31897pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a5f0b2c4e6ed271387f7c924aa88e7d86_a5f0b2c4e6ed271387f7c924aa88e7d86}{{7.7.2}{104}{\texorpdfstring {ClearOverride()}{ClearOverride()}}{table.114}{}} -\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{104}{section*.218}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a357d4eb1c100686c1c135b3b1eb2aa70_a357d4eb1c100686c1c135b3b1eb2aa70}{{7.7.2}{104}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{table.115}{}} -\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{104}{section*.219}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a5f0b2c4e6ed271387f7c924aa88e7d86_a5f0b2c4e6ed271387f7c924aa88e7d86}{{7.7.2}{105}{\texorpdfstring {ClearOverride()}{ClearOverride()}}{table.114}{}} +\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{105}{section*.218}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a357d4eb1c100686c1c135b3b1eb2aa70_a357d4eb1c100686c1c135b3b1eb2aa70}{{7.7.2}{105}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{table.115}{}} +\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{105}{section*.219}\protected@file@percent } \gdef \LT@cxvi {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} \gdef \LT@cxvii {\LT@entry {3}{34.81357pt}\LT@entry {3}{89.94252pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_ad8916acf5622365b4fc9bfdbd7d64ba2_ad8916acf5622365b4fc9bfdbd7d64ba2}{{7.7.2}{105}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{table.116}{}} -\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{105}{section*.220}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_ac0bb98eb8d643f17f30448075c4e91bb_ac0bb98eb8d643f17f30448075c4e91bb}{{7.7.2}{105}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{table.117}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_ad8916acf5622365b4fc9bfdbd7d64ba2_ad8916acf5622365b4fc9bfdbd7d64ba2}{{7.7.2}{106}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{table.116}{}} +\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{106}{section*.220}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_ac0bb98eb8d643f17f30448075c4e91bb_ac0bb98eb8d643f17f30448075c4e91bb}{{7.7.2}{106}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{table.117}{}} \gdef \LT@cxviii {\LT@entry {3}{34.81357pt}\LT@entry {3}{89.94252pt}} \gdef \LT@cxix {\LT@entry {3}{29.80966pt}\LT@entry {3}{97.79922pt}} -\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{106}{section*.221}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a728bec89f163cf82119c37e0c73dfc0d_a728bec89f163cf82119c37e0c73dfc0d}{{7.7.2}{106}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{table.118}{}} -\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{106}{section*.222}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{107}{section*.221}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a728bec89f163cf82119c37e0c73dfc0d_a728bec89f163cf82119c37e0c73dfc0d}{{7.7.2}{107}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{table.118}{}} +\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{107}{section*.222}\protected@file@percent } \gdef \LT@cxx {\LT@entry {3}{34.30963pt}\LT@entry {3}{94.28946pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a80fd54a4f3cc505e2e9a42b4ca924656_a80fd54a4f3cc505e2e9a42b4ca924656}{{7.7.2}{107}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{table.119}{}} -\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{107}{section*.223}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_aa6e8b1b03c3aa82d03d45c885bf795b9_aa6e8b1b03c3aa82d03d45c885bf795b9}{{7.7.2}{107}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{table.120}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a80fd54a4f3cc505e2e9a42b4ca924656_a80fd54a4f3cc505e2e9a42b4ca924656}{{7.7.2}{108}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{table.119}{}} +\@writefile{toc}{\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{108}{section*.223}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_aa6e8b1b03c3aa82d03d45c885bf795b9_aa6e8b1b03c3aa82d03d45c885bf795b9}{{7.7.2}{108}{\texorpdfstring {GetActive()}{GetActive()}\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{table.120}{}} \gdef \LT@cxxi {\LT@entry {3}{34.30963pt}\LT@entry {3}{109.31897pt}} \gdef \LT@cxxii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\@writefile{toc}{\contentsline {paragraph}{GetAvailable()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{108}{section*.224}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_aee616cbd3cbe9e7b8256aed74fe20254_aee616cbd3cbe9e7b8256aed74fe20254}{{7.7.2}{108}{\texorpdfstring {GetAvailable()}{GetAvailable()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.121}{}} -\@writefile{toc}{\contentsline {paragraph}{GetAvailable()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{108}{section*.225}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a88db6e9742be35bd23b068b28850b0d9_a88db6e9742be35bd23b068b28850b0d9}{{7.7.2}{108}{\texorpdfstring {GetAvailable()}{GetAvailable()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.122}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAvailable()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{109}{section*.224}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_aee616cbd3cbe9e7b8256aed74fe20254_aee616cbd3cbe9e7b8256aed74fe20254}{{7.7.2}{109}{\texorpdfstring {GetAvailable()}{GetAvailable()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.121}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAvailable()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{109}{section*.225}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a88db6e9742be35bd23b068b28850b0d9_a88db6e9742be35bd23b068b28850b0d9}{{7.7.2}{109}{\texorpdfstring {GetAvailable()}{GetAvailable()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.122}{}} \gdef \LT@cxxiii {\LT@entry {3}{34.30963pt}\LT@entry {3}{85.8026pt}} \gdef \LT@cxxiv {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\@writefile{toc}{\contentsline {paragraph}{GetDefault()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{109}{section*.226}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a19ff837d74e7666438a7938cf0f7126d_a19ff837d74e7666438a7938cf0f7126d}{{7.7.2}{109}{\texorpdfstring {GetDefault()}{GetDefault()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.123}{}} -\@writefile{toc}{\contentsline {paragraph}{GetDefault()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{109}{section*.227}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a9662ee14bf9f8ee4a25ceb8017c00c63_a9662ee14bf9f8ee4a25ceb8017c00c63}{{7.7.2}{109}{\texorpdfstring {GetDefault()}{GetDefault()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.124}{}} +\@writefile{toc}{\contentsline {paragraph}{GetDefault()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{110}{section*.226}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a19ff837d74e7666438a7938cf0f7126d_a19ff837d74e7666438a7938cf0f7126d}{{7.7.2}{110}{\texorpdfstring {GetDefault()}{GetDefault()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.123}{}} +\@writefile{toc}{\contentsline {paragraph}{GetDefault()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{110}{section*.227}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_a9662ee14bf9f8ee4a25ceb8017c00c63_a9662ee14bf9f8ee4a25ceb8017c00c63}{{7.7.2}{110}{\texorpdfstring {GetDefault()}{GetDefault()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.124}{}} \gdef \LT@cxxv {\LT@entry {3}{34.30963pt}\LT@entry {3}{85.8026pt}} \gdef \LT@cxxvi {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\@writefile{toc}{\contentsline {paragraph}{GetOverride()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{110}{section*.228}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_ad5caea48acd697af0a7787ebcb643512_ad5caea48acd697af0a7787ebcb643512}{{7.7.2}{110}{\texorpdfstring {GetOverride()}{GetOverride()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.125}{}} -\@writefile{toc}{\contentsline {paragraph}{GetOverride()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{110}{section*.229}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_abf047cc58c6e0a054b319bb93fb9ae5d_abf047cc58c6e0a054b319bb93fb9ae5d}{{7.7.2}{110}{\texorpdfstring {GetOverride()}{GetOverride()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.126}{}} +\@writefile{toc}{\contentsline {paragraph}{GetOverride()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{111}{section*.228}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_ad5caea48acd697af0a7787ebcb643512_ad5caea48acd697af0a7787ebcb643512}{{7.7.2}{111}{\texorpdfstring {GetOverride()}{GetOverride()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.125}{}} +\@writefile{toc}{\contentsline {paragraph}{GetOverride()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{111}{section*.229}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_abf047cc58c6e0a054b319bb93fb9ae5d_abf047cc58c6e0a054b319bb93fb9ae5d}{{7.7.2}{111}{\texorpdfstring {GetOverride()}{GetOverride()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.126}{}} \gdef \LT@cxxvii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} @@ -841,180 +841,180 @@ \gdef \LT@cxxix {\LT@entry {3}{18.29893pt}\LT@entry {3}{320.97586pt}} -\@writefile{toc}{\contentsline {paragraph}{IsOverridden()}{111}{section*.230}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_adc9eeee37a0d895ad4f37e583288e2e7_adc9eeee37a0d895ad4f37e583288e2e7}{{7.7.2}{111}{\texorpdfstring {IsOverridden()}{IsOverridden()}}{table.127}{}} -\@writefile{toc}{\contentsline {paragraph}{SetOverride$<$ T $>$()}{111}{section*.231}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.8}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Label Class Reference}{112}{subsection.7.8}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_label}{{7.8}{112}{Asset.\+Label Class Reference}{subsection.7.8}{}} +\@writefile{toc}{\contentsline {paragraph}{IsOverridden()}{112}{section*.230}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_importer_adc9eeee37a0d895ad4f37e583288e2e7_adc9eeee37a0d895ad4f37e583288e2e7}{{7.7.2}{112}{\texorpdfstring {IsOverridden()}{IsOverridden()}}{table.127}{}} +\@writefile{toc}{\contentsline {paragraph}{SetOverride$<$ T $>$()}{112}{section*.231}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.8}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Label Class Reference}{113}{subsection.7.8}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_label}{{7.8}{113}{Asset.\+Label Class Reference}{subsection.7.8}{}} \gdef \LT@cxxx {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.8.1}Detailed Description}{113}{subsubsection.7.8.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.8.2}Member Function Documentation}{113}{subsubsection.7.8.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_label_ad2dd0c24ca248dac498e168471c296ae_ad2dd0c24ca248dac498e168471c296ae}{{7.8.2}{113}{Member Function Documentation}{subsubsection.7.8.2}{}} -\@writefile{toc}{\contentsline {paragraph}{Add()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{113}{section*.234}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.8.1}Detailed Description}{114}{subsubsection.7.8.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.8.2}Member Function Documentation}{114}{subsubsection.7.8.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_label_ad2dd0c24ca248dac498e168471c296ae_ad2dd0c24ca248dac498e168471c296ae}{{7.8.2}{114}{Member Function Documentation}{subsubsection.7.8.2}{}} +\@writefile{toc}{\contentsline {paragraph}{Add()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{114}{section*.234}\protected@file@percent } \gdef \LT@cxxxi {\LT@entry {3}{36.30759pt}\LT@entry {3}{95.45016pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a0db1d630d411ce9b9afaab8893ca433c_a0db1d630d411ce9b9afaab8893ca433c}{{7.8.2}{114}{\texorpdfstring {Add()}{Add()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{figure.caption.235}{}} -\@writefile{toc}{\contentsline {paragraph}{Add()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{114}{section*.236}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_label_ad0347f47f2f71137fe48133c157904ff_ad0347f47f2f71137fe48133c157904ff}{{7.8.2}{114}{\texorpdfstring {Add()}{Add()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{figure.caption.237}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a0db1d630d411ce9b9afaab8893ca433c_a0db1d630d411ce9b9afaab8893ca433c}{{7.8.2}{115}{\texorpdfstring {Add()}{Add()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{figure.caption.235}{}} +\@writefile{toc}{\contentsline {paragraph}{Add()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{115}{section*.236}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_label_ad0347f47f2f71137fe48133c157904ff_ad0347f47f2f71137fe48133c157904ff}{{7.8.2}{115}{\texorpdfstring {Add()}{Add()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{figure.caption.237}{}} \gdef \LT@cxxxii {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} \gdef \LT@cxxxiii {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} -\@writefile{toc}{\contentsline {paragraph}{ClearAll()}{115}{section*.238}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a4418d3b1b76b6577c27d30a67b4f9ebf_a4418d3b1b76b6577c27d30a67b4f9ebf}{{7.8.2}{115}{\texorpdfstring {ClearAll()}{ClearAll()}}{table.132}{}} -\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{115}{section*.239}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{ClearAll()}{116}{section*.238}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a4418d3b1b76b6577c27d30a67b4f9ebf_a4418d3b1b76b6577c27d30a67b4f9ebf}{{7.8.2}{116}{\texorpdfstring {ClearAll()}{ClearAll()}}{table.132}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{116}{section*.239}\protected@file@percent } \gdef \LT@cxxxiv {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a5281d751f8d22a0cf586636bb925cbca_a5281d751f8d22a0cf586636bb925cbca}{{7.8.2}{116}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.240}{}} -\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{116}{section*.241}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_label_af12ef27390e185dc2458c579d4a20aa2_af12ef27390e185dc2458c579d4a20aa2}{{7.8.2}{116}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.134}{}} -\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{116}{section*.242}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a5281d751f8d22a0cf586636bb925cbca_a5281d751f8d22a0cf586636bb925cbca}{{7.8.2}{117}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.240}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{117}{section*.241}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_label_af12ef27390e185dc2458c579d4a20aa2_af12ef27390e185dc2458c579d4a20aa2}{{7.8.2}{117}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.134}{}} +\@writefile{toc}{\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{117}{section*.242}\protected@file@percent } \gdef \LT@cxxxv {\LT@entry {3}{29.80966pt}\LT@entry {3}{83.93042pt}} \gdef \LT@cxxxvi {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a8779550c9894264310e4aff424a898d1_a8779550c9894264310e4aff424a898d1}{{7.8.2}{117}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.135}{}} -\@writefile{toc}{\contentsline {paragraph}{Remove()}{117}{section*.243}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a8779550c9894264310e4aff424a898d1_a8779550c9894264310e4aff424a898d1}{{7.8.2}{118}{\texorpdfstring {GetAll()}{GetAll()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.135}{}} +\@writefile{toc}{\contentsline {paragraph}{Remove()}{118}{section*.243}\protected@file@percent } \gdef \LT@cxxxvii {\LT@entry {3}{36.30759pt}\LT@entry {3}{95.45016pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a82888b12b37f839fbabcb62e8fe169af_a82888b12b37f839fbabcb62e8fe169af}{{7.8.2}{118}{\texorpdfstring {Remove()}{Remove()}}{figure.caption.244}{}} -\@writefile{toc}{\contentsline {paragraph}{SetAll()}{118}{section*.245}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.9}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Package Class Reference}{119}{subsection.7.9}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_package}{{7.9}{119}{Asset.\+Package Class Reference}{subsection.7.9}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.9.1}Detailed Description}{119}{subsubsection.7.9.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.9.2}Member Function Documentation}{119}{subsubsection.7.9.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_package_aa1e7a86c8e5db3200570af6809a69f2a_aa1e7a86c8e5db3200570af6809a69f2a}{{7.9.2}{119}{Member Function Documentation}{subsubsection.7.9.2}{}} -\@writefile{toc}{\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{119}{section*.249}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_label_a82888b12b37f839fbabcb62e8fe169af_a82888b12b37f839fbabcb62e8fe169af}{{7.8.2}{119}{\texorpdfstring {Remove()}{Remove()}}{figure.caption.244}{}} +\@writefile{toc}{\contentsline {paragraph}{SetAll()}{119}{section*.245}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.9}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Package Class Reference}{120}{subsection.7.9}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_package}{{7.9}{120}{Asset.\+Package Class Reference}{subsection.7.9}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.9.1}Detailed Description}{120}{subsubsection.7.9.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.9.2}Member Function Documentation}{120}{subsubsection.7.9.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_package_aa1e7a86c8e5db3200570af6809a69f2a_aa1e7a86c8e5db3200570af6809a69f2a}{{7.9.2}{120}{Member Function Documentation}{subsubsection.7.9.2}{}} +\@writefile{toc}{\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{120}{section*.249}\protected@file@percent } \gdef \LT@cxxxviii {\LT@entry {3}{64.79216pt}\LT@entry {3}{189.18332pt}} \gdef \LT@cxxxix {\LT@entry {3}{64.79216pt}\LT@entry {3}{189.18332pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_package_a379ffb8db80b0c38b681a7580cd55e4c_a379ffb8db80b0c38b681a7580cd55e4c}{{7.9.2}{120}{\texorpdfstring {Export()}{Export()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.138}{}} -\@writefile{toc}{\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{120}{section*.250}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_package_a52bfc150210997b319e205ebd13e87a8_a52bfc150210997b319e205ebd13e87a8}{{7.9.2}{120}{\texorpdfstring {Export()}{Export()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.139}{}} -\@writefile{toc}{\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{120}{section*.251}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_package_a379ffb8db80b0c38b681a7580cd55e4c_a379ffb8db80b0c38b681a7580cd55e4c}{{7.9.2}{121}{\texorpdfstring {Export()}{Export()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.138}{}} +\@writefile{toc}{\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{121}{section*.250}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_package_a52bfc150210997b319e205ebd13e87a8_a52bfc150210997b319e205ebd13e87a8}{{7.9.2}{121}{\texorpdfstring {Export()}{Export()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.139}{}} +\@writefile{toc}{\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{121}{section*.251}\protected@file@percent } \gdef \LT@cxl {\LT@entry {3}{64.79216pt}\LT@entry {3}{189.18332pt}} \gdef \LT@cxli {\LT@entry {3}{64.79216pt}\LT@entry {3}{189.18332pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_package_ac41a72ed18bd8c2d23212f32791b0a2a_ac41a72ed18bd8c2d23212f32791b0a2a}{{7.9.2}{121}{\texorpdfstring {Export()}{Export()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.140}{}} -\@writefile{toc}{\contentsline {paragraph}{Import()}{121}{section*.252}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_package_a99d2e4c6e164f99d46f0da6cb23d9aa9_a99d2e4c6e164f99d46f0da6cb23d9aa9}{{7.9.2}{121}{\texorpdfstring {Import()}{Import()}}{table.141}{}} -\@writefile{toc}{\contentsline {paragraph}{ImportInteractive()}{121}{section*.253}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_package_ac41a72ed18bd8c2d23212f32791b0a2a_ac41a72ed18bd8c2d23212f32791b0a2a}{{7.9.2}{122}{\texorpdfstring {Export()}{Export()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.140}{}} +\@writefile{toc}{\contentsline {paragraph}{Import()}{122}{section*.252}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_package_a99d2e4c6e164f99d46f0da6cb23d9aa9_a99d2e4c6e164f99d46f0da6cb23d9aa9}{{7.9.2}{122}{\texorpdfstring {Import()}{Import()}}{table.141}{}} +\@writefile{toc}{\contentsline {paragraph}{ImportInteractive()}{122}{section*.253}\protected@file@percent } \gdef \LT@cxlii {\LT@entry {3}{64.79216pt}\LT@entry {3}{189.18332pt}} -\@writefile{toc}{\contentsline {subsection}{\numberline {7.10}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Path Class Reference}{122}{subsection.7.10}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path}{{7.10}{122}{Asset.\+Path Class Reference}{subsection.7.10}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.10.1}Detailed Description}{127}{subsubsection.7.10.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.10.2}Constructor \& Destructor Documentation}{127}{subsubsection.7.10.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a14cdcaf6215972759787431b363f763c_a14cdcaf6215972759787431b363f763c}{{7.10.2}{127}{Constructor \& Destructor Documentation}{subsubsection.7.10.2}{}} -\@writefile{toc}{\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{127}{section*.259}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.10}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Path Class Reference}{123}{subsection.7.10}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path}{{7.10}{123}{Asset.\+Path Class Reference}{subsection.7.10}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.10.1}Detailed Description}{128}{subsubsection.7.10.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.10.2}Constructor \& Destructor Documentation}{128}{subsubsection.7.10.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a14cdcaf6215972759787431b363f763c_a14cdcaf6215972759787431b363f763c}{{7.10.2}{128}{Constructor \& Destructor Documentation}{subsubsection.7.10.2}{}} +\@writefile{toc}{\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{128}{section*.259}\protected@file@percent } \gdef \LT@cxliii {\LT@entry {3}{84.73557pt}\LT@entry {3}{209.54959pt}} \gdef \LT@cxliv {\LT@entry {3}{53.19121pt}\LT@entry {3}{394.27058pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ab81690d1d82ddd90548e3d804b5afa29_ab81690d1d82ddd90548e3d804b5afa29}{{7.10.2}{128}{\texorpdfstring {Path()}{Path()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.143}{}} -\@writefile{toc}{\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{128}{section*.260}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a3d0d7574b95b19be03fdfd90e6c628e2_a3d0d7574b95b19be03fdfd90e6c628e2}{{7.10.2}{128}{\texorpdfstring {Path()}{Path()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.144}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ab81690d1d82ddd90548e3d804b5afa29_ab81690d1d82ddd90548e3d804b5afa29}{{7.10.2}{129}{\texorpdfstring {Path()}{Path()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.143}{}} +\@writefile{toc}{\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{129}{section*.260}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a3d0d7574b95b19be03fdfd90e6c628e2_a3d0d7574b95b19be03fdfd90e6c628e2}{{7.10.2}{129}{\texorpdfstring {Path()}{Path()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.144}{}} \gdef \LT@cxlv {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} -\@writefile{toc}{\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{129}{section*.261}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.10.3}Member Function Documentation}{129}{subsubsection.7.10.3}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a707c1a8b6f6fab6ad12485008e38ce41_a707c1a8b6f6fab6ad12485008e38ce41}{{7.10.3}{129}{Member Function Documentation}{subsubsection.7.10.3}{}} -\@writefile{toc}{\contentsline {paragraph}{CreateFolders()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{129}{section*.263}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_aa30592adbaf54202ead85cd483107e55_aa30592adbaf54202ead85cd483107e55}{{7.10.3}{129}{\texorpdfstring {CreateFolders()}{CreateFolders()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{section*.263}{}} +\@writefile{toc}{\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{130}{section*.261}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.10.3}Member Function Documentation}{130}{subsubsection.7.10.3}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a707c1a8b6f6fab6ad12485008e38ce41_a707c1a8b6f6fab6ad12485008e38ce41}{{7.10.3}{130}{Member Function Documentation}{subsubsection.7.10.3}{}} +\@writefile{toc}{\contentsline {paragraph}{CreateFolders()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{130}{section*.263}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_aa30592adbaf54202ead85cd483107e55_aa30592adbaf54202ead85cd483107e55}{{7.10.3}{130}{\texorpdfstring {CreateFolders()}{CreateFolders()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{section*.263}{}} \gdef \LT@cxlvi {\LT@entry {3}{30.3136pt}\LT@entry {3}{99.36493pt}} -\@writefile{toc}{\contentsline {paragraph}{CreateFolders()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{130}{section*.264}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{CreateFolders()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{131}{section*.264}\protected@file@percent } \gdef \LT@cxlvii {\LT@entry {3}{33.31053pt}\LT@entry {3}{103.85593pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a16e59bfb7ec5500d91fa1e8baaed7ec3_a16e59bfb7ec5500d91fa1e8baaed7ec3}{{7.10.3}{131}{\texorpdfstring {CreateFolders()}{CreateFolders()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{figure.caption.265}{}} -\@writefile{toc}{\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{131}{section*.266}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a16e59bfb7ec5500d91fa1e8baaed7ec3_a16e59bfb7ec5500d91fa1e8baaed7ec3}{{7.10.3}{132}{\texorpdfstring {CreateFolders()}{CreateFolders()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{figure.caption.265}{}} +\@writefile{toc}{\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{132}{section*.266}\protected@file@percent } \gdef \LT@cxlviii {\LT@entry {3}{33.31053pt}\LT@entry {3}{92.47998pt}} \gdef \LT@cxlix {\LT@entry {3}{24.80576pt}\LT@entry {1}{21.08142pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a7fe15db208e12203a2ddd105a60446a0_a7fe15db208e12203a2ddd105a60446a0}{{7.10.3}{132}{\texorpdfstring {Equals()}{Equals()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.267}{}} -\@writefile{toc}{\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{132}{section*.268}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a37cffbb9ed1db3b0e77664ad01b6fd01_a37cffbb9ed1db3b0e77664ad01b6fd01}{{7.10.3}{132}{\texorpdfstring {Equals()}{Equals()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.148}{}} -\@writefile{toc}{\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{132}{section*.269}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a7fe15db208e12203a2ddd105a60446a0_a7fe15db208e12203a2ddd105a60446a0}{{7.10.3}{133}{\texorpdfstring {Equals()}{Equals()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.267}{}} +\@writefile{toc}{\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{133}{section*.268}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a37cffbb9ed1db3b0e77664ad01b6fd01_a37cffbb9ed1db3b0e77664ad01b6fd01}{{7.10.3}{133}{\texorpdfstring {Equals()}{Equals()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.148}{}} +\@writefile{toc}{\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{133}{section*.269}\protected@file@percent } \gdef \LT@cl {\LT@entry {3}{30.3136pt}\LT@entry {3}{64.43684pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ae2e7b500cc4d1f97b7c6051181aa833f_ae2e7b500cc4d1f97b7c6051181aa833f}{{7.10.3}{133}{\texorpdfstring {Equals()}{Equals()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{figure.caption.270}{}} -\@writefile{toc}{\contentsline {paragraph}{FileExists()}{133}{section*.271}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ae2e7b500cc4d1f97b7c6051181aa833f_ae2e7b500cc4d1f97b7c6051181aa833f}{{7.10.3}{134}{\texorpdfstring {Equals()}{Equals()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{figure.caption.270}{}} +\@writefile{toc}{\contentsline {paragraph}{FileExists()}{134}{section*.271}\protected@file@percent } \gdef \LT@cli {\LT@entry {3}{30.3136pt}\LT@entry {3}{74.85847pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a18386e05fe0620f7baaa0c21543f455c_a18386e05fe0620f7baaa0c21543f455c}{{7.10.3}{134}{\texorpdfstring {FileExists()}{FileExists()}}{figure.caption.272}{}} -\@writefile{toc}{\contentsline {paragraph}{FolderExists()}{134}{section*.273}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a18298002ca84eab9c56ac238dedc53e8_a18298002ca84eab9c56ac238dedc53e8}{{7.10.3}{134}{\texorpdfstring {FolderExists()}{FolderExists()}}{figure.caption.274}{}} -\@writefile{toc}{\contentsline {paragraph}{FromMeta()}{134}{section*.275}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a18386e05fe0620f7baaa0c21543f455c_a18386e05fe0620f7baaa0c21543f455c}{{7.10.3}{135}{\texorpdfstring {FileExists()}{FileExists()}}{figure.caption.272}{}} +\@writefile{toc}{\contentsline {paragraph}{FolderExists()}{135}{section*.273}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a18298002ca84eab9c56ac238dedc53e8_a18298002ca84eab9c56ac238dedc53e8}{{7.10.3}{135}{\texorpdfstring {FolderExists()}{FolderExists()}}{figure.caption.274}{}} +\@writefile{toc}{\contentsline {paragraph}{FromMeta()}{135}{section*.275}\protected@file@percent } \gdef \LT@clii {\LT@entry {3}{30.3136pt}\LT@entry {3}{89.44724pt}} \gdef \LT@cliii {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_aa3620ff1f8b2c02fc1282284cd7c1df8_aa3620ff1f8b2c02fc1282284cd7c1df8}{{7.10.3}{135}{\texorpdfstring {FromMeta()}{FromMeta()}}{table.152}{}} -\@writefile{toc}{\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{135}{section*.276}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_aa3620ff1f8b2c02fc1282284cd7c1df8_aa3620ff1f8b2c02fc1282284cd7c1df8}{{7.10.3}{136}{\texorpdfstring {FromMeta()}{FromMeta()}}{table.152}{}} +\@writefile{toc}{\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{136}{section*.276}\protected@file@percent } \gdef \LT@cliv {\LT@entry {3}{38.8096pt}\LT@entry {3}{77.79286pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a7b337848207b6bc5aebde6ae18e18d54_a7b337848207b6bc5aebde6ae18e18d54}{{7.10.3}{136}{\texorpdfstring {Get()}{Get()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.277}{}} -\@writefile{toc}{\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{136}{section*.278}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a7b337848207b6bc5aebde6ae18e18d54_a7b337848207b6bc5aebde6ae18e18d54}{{7.10.3}{137}{\texorpdfstring {Get()}{Get()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.277}{}} +\@writefile{toc}{\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{137}{section*.278}\protected@file@percent } \gdef \LT@clv {\LT@entry {3}{29.80966pt}\LT@entry {3}{83.93042pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_afc3f6187881696bfef4a6ab5f09539fe_afc3f6187881696bfef4a6ab5f09539fe}{{7.10.3}{137}{\texorpdfstring {Get()}{Get()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{figure.caption.279}{}} -\@writefile{toc}{\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{137}{section*.280}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a942d35c4445bef86b8675fa4ee8893ee_a942d35c4445bef86b8675fa4ee8893ee}{{7.10.3}{137}{\texorpdfstring {Get()}{Get()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.155}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_afc3f6187881696bfef4a6ab5f09539fe_afc3f6187881696bfef4a6ab5f09539fe}{{7.10.3}{138}{\texorpdfstring {Get()}{Get()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{figure.caption.279}{}} +\@writefile{toc}{\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{138}{section*.280}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a942d35c4445bef86b8675fa4ee8893ee_a942d35c4445bef86b8675fa4ee8893ee}{{7.10.3}{138}{\texorpdfstring {Get()}{Get()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.155}{}} \gdef \LT@clvi {\LT@entry {3}{41.81543pt}\LT@entry {3}{150.4pt}} \gdef \LT@clvii {\LT@entry {3}{78.82281pt}\LT@entry {3}{122.95367pt}} -\@writefile{toc}{\contentsline {paragraph}{GetGuid()}{138}{section*.281}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ab86e9330a2bab918bbad0e2cbadb58a8_ab86e9330a2bab918bbad0e2cbadb58a8}{{7.10.3}{138}{\texorpdfstring {GetGuid()}{GetGuid()}}{table.156}{}} -\@writefile{toc}{\contentsline {paragraph}{GetHashCode()}{138}{section*.282}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ac408187e90e22a29a6c0bf20a0306532_ac408187e90e22a29a6c0bf20a0306532}{{7.10.3}{138}{\texorpdfstring {GetHashCode()}{GetHashCode()}}{section*.282}{}} -\@writefile{toc}{\contentsline {paragraph}{GetScene()}{138}{section*.283}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{GetGuid()}{139}{section*.281}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ab86e9330a2bab918bbad0e2cbadb58a8_ab86e9330a2bab918bbad0e2cbadb58a8}{{7.10.3}{139}{\texorpdfstring {GetGuid()}{GetGuid()}}{table.156}{}} +\@writefile{toc}{\contentsline {paragraph}{GetHashCode()}{139}{section*.282}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ac408187e90e22a29a6c0bf20a0306532_ac408187e90e22a29a6c0bf20a0306532}{{7.10.3}{139}{\texorpdfstring {GetHashCode()}{GetHashCode()}}{section*.282}{}} +\@writefile{toc}{\contentsline {paragraph}{GetScene()}{139}{section*.283}\protected@file@percent } \gdef \LT@clviii {\LT@entry {3}{30.3136pt}\LT@entry {3}{74.85847pt}} \gdef \LT@clix {\LT@entry {3}{30.3136pt}\LT@entry {3}{219.41316pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a2d28ed0af9ce1a5b78cfea13d920fbf6_a2d28ed0af9ce1a5b78cfea13d920fbf6}{{7.10.3}{139}{\texorpdfstring {GetScene()}{GetScene()}}{table.157}{}} -\@writefile{toc}{\contentsline {paragraph}{GetSubFolders()}{139}{section*.284}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_afe4dd70515ffc4868599918fc76c32b9_afe4dd70515ffc4868599918fc76c32b9}{{7.10.3}{139}{\texorpdfstring {GetSubFolders()}{GetSubFolders()}}{table.158}{}} -\@writefile{toc}{\contentsline {paragraph}{IsValid()}{139}{section*.285}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_abb6aabf6ef3879246a9410a4b03cff6a_abb6aabf6ef3879246a9410a4b03cff6a}{{7.10.3}{140}{\texorpdfstring {IsValid()}{IsValid()}}{table.159}{}} -\@writefile{toc}{\contentsline {paragraph}{OpenExternal()}{140}{section*.286}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a8f41e9c71f0bf56b0fe80ef591334128_a8f41e9c71f0bf56b0fe80ef591334128}{{7.10.3}{140}{\texorpdfstring {OpenExternal()}{OpenExternal()}}{section*.286}{}} -\@writefile{toc}{\contentsline {paragraph}{operator Path()}{140}{section*.287}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a2d28ed0af9ce1a5b78cfea13d920fbf6_a2d28ed0af9ce1a5b78cfea13d920fbf6}{{7.10.3}{140}{\texorpdfstring {GetScene()}{GetScene()}}{table.157}{}} +\@writefile{toc}{\contentsline {paragraph}{GetSubFolders()}{140}{section*.284}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_afe4dd70515ffc4868599918fc76c32b9_afe4dd70515ffc4868599918fc76c32b9}{{7.10.3}{140}{\texorpdfstring {GetSubFolders()}{GetSubFolders()}}{table.158}{}} +\@writefile{toc}{\contentsline {paragraph}{IsValid()}{140}{section*.285}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_abb6aabf6ef3879246a9410a4b03cff6a_abb6aabf6ef3879246a9410a4b03cff6a}{{7.10.3}{141}{\texorpdfstring {IsValid()}{IsValid()}}{table.159}{}} +\@writefile{toc}{\contentsline {paragraph}{OpenExternal()}{141}{section*.286}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a8f41e9c71f0bf56b0fe80ef591334128_a8f41e9c71f0bf56b0fe80ef591334128}{{7.10.3}{141}{\texorpdfstring {OpenExternal()}{OpenExternal()}}{section*.286}{}} +\@writefile{toc}{\contentsline {paragraph}{operator Path()}{141}{section*.287}\protected@file@percent } \gdef \LT@clx {\LT@entry {3}{30.3136pt}\LT@entry {3}{213.23941pt}} @@ -1024,12 +1024,12 @@ \gdef \LT@clxii {\LT@entry {3}{35.3175pt}\LT@entry {3}{66.43472pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a294e1f7dac5c8247c2f32d50653ff2f6_a294e1f7dac5c8247c2f32d50653ff2f6}{{7.10.3}{141}{\texorpdfstring {operator Path()}{operator Path()}}{table.160}{}} -\@writefile{toc}{\contentsline {paragraph}{operator String()}{141}{section*.288}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a0a26f18bf392e944599d94a316d0dd9c_a0a26f18bf392e944599d94a316d0dd9c}{{7.10.3}{141}{\texorpdfstring {operator String()}{operator String()}}{table.161}{}} -\@writefile{toc}{\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{141}{section*.289}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a4061b79c8350f444d3691461e0f94e95_a4061b79c8350f444d3691461e0f94e95}{{7.10.3}{141}{\texorpdfstring {operator"!=()}{operator!=()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.162}{}} -\@writefile{toc}{\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{141}{section*.290}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a294e1f7dac5c8247c2f32d50653ff2f6_a294e1f7dac5c8247c2f32d50653ff2f6}{{7.10.3}{142}{\texorpdfstring {operator Path()}{operator Path()}}{table.160}{}} +\@writefile{toc}{\contentsline {paragraph}{operator String()}{142}{section*.288}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a0a26f18bf392e944599d94a316d0dd9c_a0a26f18bf392e944599d94a316d0dd9c}{{7.10.3}{142}{\texorpdfstring {operator String()}{operator String()}}{table.161}{}} +\@writefile{toc}{\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{142}{section*.289}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a4061b79c8350f444d3691461e0f94e95_a4061b79c8350f444d3691461e0f94e95}{{7.10.3}{142}{\texorpdfstring {operator"!=()}{operator!=()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.162}{}} +\@writefile{toc}{\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{142}{section*.290}\protected@file@percent } \gdef \LT@clxiii {\LT@entry {3}{35.3175pt}\LT@entry {3}{66.15611pt}} @@ -1039,114 +1039,114 @@ \gdef \LT@clxv {\LT@entry {3}{35.3175pt}\LT@entry {3}{66.43472pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_aeada9e1217349c548458a8b0ac2d1fca_aeada9e1217349c548458a8b0ac2d1fca}{{7.10.3}{142}{\texorpdfstring {operator"!=()}{operator!=()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.163}{}} -\@writefile{toc}{\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{142}{section*.291}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_aba3e55bf4914578717ffd4ec9707c29f_aba3e55bf4914578717ffd4ec9707c29f}{{7.10.3}{142}{\texorpdfstring {operator"!=()}{operator!=()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.164}{}} -\@writefile{toc}{\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{142}{section*.292}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_aeada9e1217349c548458a8b0ac2d1fca_aeada9e1217349c548458a8b0ac2d1fca}{{7.10.3}{143}{\texorpdfstring {operator"!=()}{operator!=()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.163}{}} +\@writefile{toc}{\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{143}{section*.291}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_aba3e55bf4914578717ffd4ec9707c29f_aba3e55bf4914578717ffd4ec9707c29f}{{7.10.3}{143}{\texorpdfstring {operator"!=()}{operator!=()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.164}{}} +\@writefile{toc}{\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{143}{section*.292}\protected@file@percent } \gdef \LT@clxvi {\LT@entry {3}{35.3175pt}\LT@entry {3}{66.15611pt}} \gdef \LT@clxvii {\LT@entry {3}{33.31053pt}\LT@entry {3}{66.15611pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ad65aa0fe0b7d3cd28b1d33eeac3548cd_ad65aa0fe0b7d3cd28b1d33eeac3548cd}{{7.10.3}{143}{\texorpdfstring {operator==()}{operator==()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.293}{}} -\@writefile{toc}{\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{143}{section*.294}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a66235cf211f3a38e4149fa48fc685f67_a66235cf211f3a38e4149fa48fc685f67}{{7.10.3}{143}{\texorpdfstring {operator==()}{operator==()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.166}{}} -\@writefile{toc}{\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{143}{section*.295}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ad65aa0fe0b7d3cd28b1d33eeac3548cd_ad65aa0fe0b7d3cd28b1d33eeac3548cd}{{7.10.3}{144}{\texorpdfstring {operator==()}{operator==()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{figure.caption.293}{}} +\@writefile{toc}{\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{144}{section*.294}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a66235cf211f3a38e4149fa48fc685f67_a66235cf211f3a38e4149fa48fc685f67}{{7.10.3}{144}{\texorpdfstring {operator==()}{operator==()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.166}{}} +\@writefile{toc}{\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{144}{section*.295}\protected@file@percent } \gdef \LT@clxviii {\LT@entry {3}{102.86157pt}\LT@entry {3}{314.58626pt}} \gdef \LT@clxix {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ab20dbdb9f71c4595e668cf0cb5f5ad7c_ab20dbdb9f71c4595e668cf0cb5f5ad7c}{{7.10.3}{144}{\texorpdfstring {operator==()}{operator==()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.167}{}} -\@writefile{toc}{\contentsline {paragraph}{Rename()}{144}{section*.296}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_af4219b5ed1497e66fd495b412688ecf3_af4219b5ed1497e66fd495b412688ecf3}{{7.10.3}{144}{\texorpdfstring {Rename()}{Rename()}}{table.168}{}} -\@writefile{toc}{\contentsline {paragraph}{ToMeta()}{144}{section*.297}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a012fbb0f39e57c0a44ec83dd408fcda3_a012fbb0f39e57c0a44ec83dd408fcda3}{{7.10.3}{144}{\texorpdfstring {ToMeta()}{ToMeta()}}{table.169}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ab20dbdb9f71c4595e668cf0cb5f5ad7c_ab20dbdb9f71c4595e668cf0cb5f5ad7c}{{7.10.3}{145}{\texorpdfstring {operator==()}{operator==()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.167}{}} +\@writefile{toc}{\contentsline {paragraph}{Rename()}{145}{section*.296}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_af4219b5ed1497e66fd495b412688ecf3_af4219b5ed1497e66fd495b412688ecf3}{{7.10.3}{145}{\texorpdfstring {Rename()}{Rename()}}{table.168}{}} +\@writefile{toc}{\contentsline {paragraph}{ToMeta()}{145}{section*.297}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a012fbb0f39e57c0a44ec83dd408fcda3_a012fbb0f39e57c0a44ec83dd408fcda3}{{7.10.3}{145}{\texorpdfstring {ToMeta()}{ToMeta()}}{table.169}{}} \gdef \LT@clxx {\LT@entry {3}{34.81357pt}\LT@entry {3}{59.29794pt}} \gdef \LT@clxxi {\LT@entry {3}{30.3136pt}\LT@entry {3}{72.4376pt}} -\@writefile{toc}{\contentsline {paragraph}{ToString()}{145}{section*.298}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a698b564cc49ed111277f35dac618252d_a698b564cc49ed111277f35dac618252d}{{7.10.3}{145}{\texorpdfstring {ToString()}{ToString()}}{section*.298}{}} -\@writefile{toc}{\contentsline {paragraph}{ToStrings()}{145}{section*.299}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a90bc7d03e89ae59ba4653ff9109f0fec_a90bc7d03e89ae59ba4653ff9109f0fec}{{7.10.3}{145}{\texorpdfstring {ToStrings()}{ToStrings()}}{table.170}{}} -\@writefile{toc}{\contentsline {paragraph}{UniquifyFileName()}{145}{section*.300}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.10.4}Property Documentation}{146}{subsubsection.7.10.4}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a54bbd4600c9787134d849c022cefe90e_a54bbd4600c9787134d849c022cefe90e}{{7.10.4}{146}{Property Documentation}{subsubsection.7.10.4}{}} -\@writefile{toc}{\contentsline {paragraph}{AssetPath}{146}{section*.301}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_abd65d5ceb97d69f280079d5bfa8c75ea_abd65d5ceb97d69f280079d5bfa8c75ea}{{7.10.4}{146}{\texorpdfstring {AssetPath}{AssetPath}}{section*.301}{}} -\@writefile{toc}{\contentsline {paragraph}{Exists}{146}{section*.302}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a60c6f10f04d962b32a6563c6b842b81c_a60c6f10f04d962b32a6563c6b842b81c}{{7.10.4}{146}{\texorpdfstring {Exists}{Exists}}{section*.302}{}} -\@writefile{toc}{\contentsline {paragraph}{ExistsInFileSystem}{147}{section*.303}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a66d760f8140181f272630b4f226a56c5_a66d760f8140181f272630b4f226a56c5}{{7.10.4}{147}{\texorpdfstring {ExistsInFileSystem}{ExistsInFileSystem}}{section*.303}{}} -\@writefile{toc}{\contentsline {paragraph}{Extension}{147}{section*.304}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a5066dd8adab56e4ea54fe46b9db3bd9a_a5066dd8adab56e4ea54fe46b9db3bd9a}{{7.10.4}{147}{\texorpdfstring {Extension}{Extension}}{section*.304}{}} -\@writefile{toc}{\contentsline {paragraph}{FileName}{147}{section*.305}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a3693da5482c390a2146fe9dc6d38b197_a3693da5482c390a2146fe9dc6d38b197}{{7.10.4}{147}{\texorpdfstring {FileName}{FileName}}{section*.305}{}} -\@writefile{toc}{\contentsline {paragraph}{FileNameWithoutExtension}{148}{section*.306}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a86fde1a385ff90d8002ae30a7c39cab9_a86fde1a385ff90d8002ae30a7c39cab9}{{7.10.4}{148}{\texorpdfstring {FileNameWithoutExtension}{FileNameWithoutExtension}}{section*.306}{}} -\@writefile{toc}{\contentsline {paragraph}{FolderPath}{148}{section*.307}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_abd29565587282b14cb265fb107ae0093_abd29565587282b14cb265fb107ae0093}{{7.10.4}{148}{\texorpdfstring {FolderPath}{FolderPath}}{section*.307}{}} -\@writefile{toc}{\contentsline {paragraph}{FullAssetsPath}{148}{section*.308}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a005a32c04a661e398af4f2a6f866242a_a005a32c04a661e398af4f2a6f866242a}{{7.10.4}{148}{\texorpdfstring {FullAssetsPath}{FullAssetsPath}}{section*.308}{}} -\@writefile{toc}{\contentsline {paragraph}{FullLibraryPath}{149}{section*.309}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a6724fa2743590cd1a81b41b61102e7fe_a6724fa2743590cd1a81b41b61102e7fe}{{7.10.4}{149}{\texorpdfstring {FullLibraryPath}{FullLibraryPath}}{section*.309}{}} -\@writefile{toc}{\contentsline {paragraph}{FullLogsPath}{149}{section*.310}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ad031047c157ca34623ef3d8794c321a4_ad031047c157ca34623ef3d8794c321a4}{{7.10.4}{149}{\texorpdfstring {FullLogsPath}{FullLogsPath}}{section*.310}{}} -\@writefile{toc}{\contentsline {paragraph}{FullPackagesPath}{149}{section*.311}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_af15b23e15a17c04d3a45a054a18d6443_af15b23e15a17c04d3a45a054a18d6443}{{7.10.4}{149}{\texorpdfstring {FullPackagesPath}{FullPackagesPath}}{section*.311}{}} -\@writefile{toc}{\contentsline {paragraph}{FullPath}{149}{section*.312}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a3a4a27e26891e69d91d724cdf661656e_a3a4a27e26891e69d91d724cdf661656e}{{7.10.4}{149}{\texorpdfstring {FullPath}{FullPath}}{section*.312}{}} -\@writefile{toc}{\contentsline {paragraph}{FullProjectPath}{149}{section*.313}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ac7167ec9e63c61ff6a42a820af23747c_ac7167ec9e63c61ff6a42a820af23747c}{{7.10.4}{149}{\texorpdfstring {FullProjectPath}{FullProjectPath}}{section*.313}{}} -\@writefile{toc}{\contentsline {paragraph}{FullProjectSettingsPath}{150}{section*.314}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a77508ff7f04d30b6160f254e53adbeb6_a77508ff7f04d30b6160f254e53adbeb6}{{7.10.4}{150}{\texorpdfstring {FullProjectSettingsPath}{FullProjectSettingsPath}}{section*.314}{}} -\@writefile{toc}{\contentsline {paragraph}{FullProjectTempPath}{150}{section*.315}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a2fcfa4fd2c52adca3fa729bf78e72d3b_a2fcfa4fd2c52adca3fa729bf78e72d3b}{{7.10.4}{150}{\texorpdfstring {FullProjectTempPath}{FullProjectTempPath}}{section*.315}{}} -\@writefile{toc}{\contentsline {paragraph}{FullUserSettingsPath}{150}{section*.316}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a66a3fc7176ae79e7e9ee85df99c5ff7c_a66a3fc7176ae79e7e9ee85df99c5ff7c}{{7.10.4}{150}{\texorpdfstring {FullUserSettingsPath}{FullUserSettingsPath}}{section*.316}{}} -\@writefile{toc}{\contentsline {paragraph}{Guid}{150}{section*.317}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a0084f5ad8a13c505013748101a81b1df_a0084f5ad8a13c505013748101a81b1df}{{7.10.4}{150}{\texorpdfstring {Guid}{Guid}}{section*.317}{}} -\@writefile{toc}{\contentsline {paragraph}{MetaPath}{151}{section*.318}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a0247c4e1ee282e42b31b89c70bebe85f_a0247c4e1ee282e42b31b89c70bebe85f}{{7.10.4}{151}{\texorpdfstring {MetaPath}{MetaPath}}{section*.318}{}} -\@writefile{toc}{\contentsline {paragraph}{SubFolders}{151}{section*.319}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a095641cd17b35305e83b4dcee0704e0b_a095641cd17b35305e83b4dcee0704e0b}{{7.10.4}{151}{\texorpdfstring {SubFolders}{SubFolders}}{section*.319}{}} -\@writefile{toc}{\contentsline {paragraph}{UniqueFilePath}{151}{section*.320}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.11}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Status Class Reference}{152}{subsection.7.11}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_status}{{7.11}{152}{Asset.\+Status Class Reference}{subsection.7.11}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.11.1}Detailed Description}{152}{subsubsection.7.11.1}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{ToString()}{146}{section*.298}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a698b564cc49ed111277f35dac618252d_a698b564cc49ed111277f35dac618252d}{{7.10.3}{146}{\texorpdfstring {ToString()}{ToString()}}{section*.298}{}} +\@writefile{toc}{\contentsline {paragraph}{ToStrings()}{146}{section*.299}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a90bc7d03e89ae59ba4653ff9109f0fec_a90bc7d03e89ae59ba4653ff9109f0fec}{{7.10.3}{146}{\texorpdfstring {ToStrings()}{ToStrings()}}{table.170}{}} +\@writefile{toc}{\contentsline {paragraph}{UniquifyFileName()}{146}{section*.300}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.10.4}Property Documentation}{147}{subsubsection.7.10.4}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a54bbd4600c9787134d849c022cefe90e_a54bbd4600c9787134d849c022cefe90e}{{7.10.4}{147}{Property Documentation}{subsubsection.7.10.4}{}} +\@writefile{toc}{\contentsline {paragraph}{AssetPath}{147}{section*.301}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_abd65d5ceb97d69f280079d5bfa8c75ea_abd65d5ceb97d69f280079d5bfa8c75ea}{{7.10.4}{147}{\texorpdfstring {AssetPath}{AssetPath}}{section*.301}{}} +\@writefile{toc}{\contentsline {paragraph}{Exists}{147}{section*.302}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a60c6f10f04d962b32a6563c6b842b81c_a60c6f10f04d962b32a6563c6b842b81c}{{7.10.4}{147}{\texorpdfstring {Exists}{Exists}}{section*.302}{}} +\@writefile{toc}{\contentsline {paragraph}{ExistsInFileSystem}{148}{section*.303}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a66d760f8140181f272630b4f226a56c5_a66d760f8140181f272630b4f226a56c5}{{7.10.4}{148}{\texorpdfstring {ExistsInFileSystem}{ExistsInFileSystem}}{section*.303}{}} +\@writefile{toc}{\contentsline {paragraph}{Extension}{148}{section*.304}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a5066dd8adab56e4ea54fe46b9db3bd9a_a5066dd8adab56e4ea54fe46b9db3bd9a}{{7.10.4}{148}{\texorpdfstring {Extension}{Extension}}{section*.304}{}} +\@writefile{toc}{\contentsline {paragraph}{FileName}{148}{section*.305}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a3693da5482c390a2146fe9dc6d38b197_a3693da5482c390a2146fe9dc6d38b197}{{7.10.4}{148}{\texorpdfstring {FileName}{FileName}}{section*.305}{}} +\@writefile{toc}{\contentsline {paragraph}{FileNameWithoutExtension}{149}{section*.306}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a86fde1a385ff90d8002ae30a7c39cab9_a86fde1a385ff90d8002ae30a7c39cab9}{{7.10.4}{149}{\texorpdfstring {FileNameWithoutExtension}{FileNameWithoutExtension}}{section*.306}{}} +\@writefile{toc}{\contentsline {paragraph}{FolderPath}{149}{section*.307}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_abd29565587282b14cb265fb107ae0093_abd29565587282b14cb265fb107ae0093}{{7.10.4}{149}{\texorpdfstring {FolderPath}{FolderPath}}{section*.307}{}} +\@writefile{toc}{\contentsline {paragraph}{FullAssetsPath}{149}{section*.308}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a005a32c04a661e398af4f2a6f866242a_a005a32c04a661e398af4f2a6f866242a}{{7.10.4}{149}{\texorpdfstring {FullAssetsPath}{FullAssetsPath}}{section*.308}{}} +\@writefile{toc}{\contentsline {paragraph}{FullLibraryPath}{150}{section*.309}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a6724fa2743590cd1a81b41b61102e7fe_a6724fa2743590cd1a81b41b61102e7fe}{{7.10.4}{150}{\texorpdfstring {FullLibraryPath}{FullLibraryPath}}{section*.309}{}} +\@writefile{toc}{\contentsline {paragraph}{FullLogsPath}{150}{section*.310}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ad031047c157ca34623ef3d8794c321a4_ad031047c157ca34623ef3d8794c321a4}{{7.10.4}{150}{\texorpdfstring {FullLogsPath}{FullLogsPath}}{section*.310}{}} +\@writefile{toc}{\contentsline {paragraph}{FullPackagesPath}{150}{section*.311}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_af15b23e15a17c04d3a45a054a18d6443_af15b23e15a17c04d3a45a054a18d6443}{{7.10.4}{150}{\texorpdfstring {FullPackagesPath}{FullPackagesPath}}{section*.311}{}} +\@writefile{toc}{\contentsline {paragraph}{FullPath}{150}{section*.312}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a3a4a27e26891e69d91d724cdf661656e_a3a4a27e26891e69d91d724cdf661656e}{{7.10.4}{150}{\texorpdfstring {FullPath}{FullPath}}{section*.312}{}} +\@writefile{toc}{\contentsline {paragraph}{FullProjectPath}{150}{section*.313}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_ac7167ec9e63c61ff6a42a820af23747c_ac7167ec9e63c61ff6a42a820af23747c}{{7.10.4}{150}{\texorpdfstring {FullProjectPath}{FullProjectPath}}{section*.313}{}} +\@writefile{toc}{\contentsline {paragraph}{FullProjectSettingsPath}{151}{section*.314}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a77508ff7f04d30b6160f254e53adbeb6_a77508ff7f04d30b6160f254e53adbeb6}{{7.10.4}{151}{\texorpdfstring {FullProjectSettingsPath}{FullProjectSettingsPath}}{section*.314}{}} +\@writefile{toc}{\contentsline {paragraph}{FullProjectTempPath}{151}{section*.315}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a2fcfa4fd2c52adca3fa729bf78e72d3b_a2fcfa4fd2c52adca3fa729bf78e72d3b}{{7.10.4}{151}{\texorpdfstring {FullProjectTempPath}{FullProjectTempPath}}{section*.315}{}} +\@writefile{toc}{\contentsline {paragraph}{FullUserSettingsPath}{151}{section*.316}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a66a3fc7176ae79e7e9ee85df99c5ff7c_a66a3fc7176ae79e7e9ee85df99c5ff7c}{{7.10.4}{151}{\texorpdfstring {FullUserSettingsPath}{FullUserSettingsPath}}{section*.316}{}} +\@writefile{toc}{\contentsline {paragraph}{Guid}{151}{section*.317}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a0084f5ad8a13c505013748101a81b1df_a0084f5ad8a13c505013748101a81b1df}{{7.10.4}{151}{\texorpdfstring {Guid}{Guid}}{section*.317}{}} +\@writefile{toc}{\contentsline {paragraph}{MetaPath}{152}{section*.318}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a0247c4e1ee282e42b31b89c70bebe85f_a0247c4e1ee282e42b31b89c70bebe85f}{{7.10.4}{152}{\texorpdfstring {MetaPath}{MetaPath}}{section*.318}{}} +\@writefile{toc}{\contentsline {paragraph}{SubFolders}{152}{section*.319}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_path_a095641cd17b35305e83b4dcee0704e0b_a095641cd17b35305e83b4dcee0704e0b}{{7.10.4}{152}{\texorpdfstring {SubFolders}{SubFolders}}{section*.319}{}} +\@writefile{toc}{\contentsline {paragraph}{UniqueFilePath}{152}{section*.320}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.11}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Status Class Reference}{153}{subsection.7.11}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_status}{{7.11}{153}{Asset.\+Status Class Reference}{subsection.7.11}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.11.1}Detailed Description}{153}{subsubsection.7.11.1}\protected@file@percent } \gdef \LT@clxxii {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} \gdef \LT@clxxiii {\LT@entry {3}{46.3154pt}\LT@entry {3}{93.44319pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.11.2}Member Function Documentation}{153}{subsubsection.7.11.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a7e01a4788d69647e6e8340c25603bf55_a7e01a4788d69647e6e8340c25603bf55}{{7.11.2}{153}{Member Function Documentation}{subsubsection.7.11.2}{}} -\@writefile{toc}{\contentsline {paragraph}{IsForeign()}{153}{section*.323}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_status_afcaefd0248a5d2a59a833699fb4f1d51_afcaefd0248a5d2a59a833699fb4f1d51}{{7.11.2}{153}{\texorpdfstring {IsForeign()}{IsForeign()}}{table.172}{}} -\@writefile{toc}{\contentsline {paragraph}{IsImported()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{153}{section*.324}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.11.2}Member Function Documentation}{154}{subsubsection.7.11.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a7e01a4788d69647e6e8340c25603bf55_a7e01a4788d69647e6e8340c25603bf55}{{7.11.2}{154}{Member Function Documentation}{subsubsection.7.11.2}{}} +\@writefile{toc}{\contentsline {paragraph}{IsForeign()}{154}{section*.323}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_status_afcaefd0248a5d2a59a833699fb4f1d51_afcaefd0248a5d2a59a833699fb4f1d51}{{7.11.2}{154}{\texorpdfstring {IsForeign()}{IsForeign()}}{table.172}{}} +\@writefile{toc}{\contentsline {paragraph}{IsImported()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{154}{section*.324}\protected@file@percent } \gdef \LT@clxxiv {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a377ccf450db930a010100f0d89b09285_a377ccf450db930a010100f0d89b09285}{{7.11.2}{154}{\texorpdfstring {IsImported()}{IsImported()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.173}{}} -\@writefile{toc}{\contentsline {paragraph}{IsImported()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{154}{section*.325}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a8d5877df6d14dca99ed79ec50f067783_a8d5877df6d14dca99ed79ec50f067783}{{7.11.2}{154}{\texorpdfstring {IsImported()}{IsImported()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.174}{}} -\@writefile{toc}{\contentsline {paragraph}{IsLoaded()}{154}{section*.326}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a377ccf450db930a010100f0d89b09285_a377ccf450db930a010100f0d89b09285}{{7.11.2}{155}{\texorpdfstring {IsImported()}{IsImported()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.173}{}} +\@writefile{toc}{\contentsline {paragraph}{IsImported()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{155}{section*.325}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a8d5877df6d14dca99ed79ec50f067783_a8d5877df6d14dca99ed79ec50f067783}{{7.11.2}{155}{\texorpdfstring {IsImported()}{IsImported()}\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{table.174}{}} +\@writefile{toc}{\contentsline {paragraph}{IsLoaded()}{155}{section*.326}\protected@file@percent } \gdef \LT@clxxv {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} \gdef \LT@clxxvi {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a2e6860cd8479a284c3c81f4377ed100a_a2e6860cd8479a284c3c81f4377ed100a}{{7.11.2}{155}{\texorpdfstring {IsLoaded()}{IsLoaded()}}{table.175}{}} -\@writefile{toc}{\contentsline {paragraph}{IsMain()}{155}{section*.327}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_status_ae18940b59316f20181bba69e710e0cba_ae18940b59316f20181bba69e710e0cba}{{7.11.2}{155}{\texorpdfstring {IsMain()}{IsMain()}}{table.176}{}} -\@writefile{toc}{\contentsline {paragraph}{IsNative()}{155}{section*.328}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a2e6860cd8479a284c3c81f4377ed100a_a2e6860cd8479a284c3c81f4377ed100a}{{7.11.2}{156}{\texorpdfstring {IsLoaded()}{IsLoaded()}}{table.175}{}} +\@writefile{toc}{\contentsline {paragraph}{IsMain()}{156}{section*.327}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_status_ae18940b59316f20181bba69e710e0cba_ae18940b59316f20181bba69e710e0cba}{{7.11.2}{156}{\texorpdfstring {IsMain()}{IsMain()}}{table.176}{}} +\@writefile{toc}{\contentsline {paragraph}{IsNative()}{156}{section*.328}\protected@file@percent } \gdef \LT@clxxvii {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} @@ -1156,141 +1156,141 @@ \gdef \LT@clxxix {\LT@entry {3}{34.30963pt}\LT@entry {3}{95.45016pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a6b15799af1dbe039078b5e8c2e435dc2_a6b15799af1dbe039078b5e8c2e435dc2}{{7.11.2}{156}{\texorpdfstring {IsNative()}{IsNative()}}{table.177}{}} -\@writefile{toc}{\contentsline {paragraph}{IsScene()}{156}{section*.329}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_status_ac715a31d20c073c37844f5d8839496cd_ac715a31d20c073c37844f5d8839496cd}{{7.11.2}{156}{\texorpdfstring {IsScene()}{IsScene()}}{table.178}{}} -\@writefile{toc}{\contentsline {paragraph}{IsSub()}{156}{section*.330}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.12}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Sub\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Asset Class Reference}{157}{subsection.7.12}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset}{{7.12}{157}{Asset.\+Sub\+Asset Class Reference}{subsection.7.12}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_status_a6b15799af1dbe039078b5e8c2e435dc2_a6b15799af1dbe039078b5e8c2e435dc2}{{7.11.2}{157}{\texorpdfstring {IsNative()}{IsNative()}}{table.177}{}} +\@writefile{toc}{\contentsline {paragraph}{IsScene()}{157}{section*.329}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_status_ac715a31d20c073c37844f5d8839496cd_ac715a31d20c073c37844f5d8839496cd}{{7.11.2}{157}{\texorpdfstring {IsScene()}{IsScene()}}{table.178}{}} +\@writefile{toc}{\contentsline {paragraph}{IsSub()}{157}{section*.330}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.12}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Sub\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Asset Class Reference}{158}{subsection.7.12}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset}{{7.12}{158}{Asset.\+Sub\+Asset Class Reference}{subsection.7.12}{}} \gdef \LT@clxxx {\LT@entry {3}{83.83574pt}\LT@entry {3}{274.04216pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.12.1}Detailed Description}{158}{subsubsection.7.12.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.12.2}Member Function Documentation}{158}{subsubsection.7.12.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_a651286de3f2c9fef50eb5720f0a1b3a8_a651286de3f2c9fef50eb5720f0a1b3a8}{{7.12.2}{158}{Member Function Documentation}{subsubsection.7.12.2}{}} -\@writefile{toc}{\contentsline {paragraph}{Add()}{158}{section*.333}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_aba5beee6f12d0eed16af62bd8e96d6e6_aba5beee6f12d0eed16af62bd8e96d6e6}{{7.12.2}{158}{\texorpdfstring {Add()}{Add()}}{table.180}{}} -\@writefile{toc}{\contentsline {paragraph}{Extract()}{158}{section*.334}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.12.1}Detailed Description}{159}{subsubsection.7.12.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.12.2}Member Function Documentation}{159}{subsubsection.7.12.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_a651286de3f2c9fef50eb5720f0a1b3a8_a651286de3f2c9fef50eb5720f0a1b3a8}{{7.12.2}{159}{Member Function Documentation}{subsubsection.7.12.2}{}} +\@writefile{toc}{\contentsline {paragraph}{Add()}{159}{section*.333}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_aba5beee6f12d0eed16af62bd8e96d6e6_aba5beee6f12d0eed16af62bd8e96d6e6}{{7.12.2}{159}{\texorpdfstring {Add()}{Add()}}{table.180}{}} +\@writefile{toc}{\contentsline {paragraph}{Extract()}{159}{section*.334}\protected@file@percent } \gdef \LT@clxxxi {\LT@entry {3}{74.47575pt}\LT@entry {3}{135.11241pt}} \gdef \LT@clxxxii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_a5a074e1dfad018aec7956375a8cf6099_a5a074e1dfad018aec7956375a8cf6099}{{7.12.2}{159}{\texorpdfstring {Extract()}{Extract()}}{table.181}{}} -\@writefile{toc}{\contentsline {paragraph}{LoadAll()}{159}{section*.335}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_aa1295ba7d9693917c8af65241aa0d3ae_aa1295ba7d9693917c8af65241aa0d3ae}{{7.12.2}{159}{\texorpdfstring {LoadAll()}{LoadAll()}}{table.182}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_a5a074e1dfad018aec7956375a8cf6099_a5a074e1dfad018aec7956375a8cf6099}{{7.12.2}{160}{\texorpdfstring {Extract()}{Extract()}}{table.181}{}} +\@writefile{toc}{\contentsline {paragraph}{LoadAll()}{160}{section*.335}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_aa1295ba7d9693917c8af65241aa0d3ae_aa1295ba7d9693917c8af65241aa0d3ae}{{7.12.2}{160}{\texorpdfstring {LoadAll()}{LoadAll()}}{table.182}{}} \gdef \LT@clxxxiii {\LT@entry {3}{30.3136pt}\LT@entry {3}{93.45229pt}} \gdef \LT@clxxxiv {\LT@entry {3}{49.81639pt}\LT@entry {3}{107.95097pt}} -\@writefile{toc}{\contentsline {paragraph}{LoadVisible()}{160}{section*.336}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_af2517f14782bec5f449da4bc4937cf8c_af2517f14782bec5f449da4bc4937cf8c}{{7.12.2}{160}{\texorpdfstring {LoadVisible()}{LoadVisible()}}{table.183}{}} -\@writefile{toc}{\contentsline {paragraph}{Remove()}{160}{section*.337}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{LoadVisible()}{161}{section*.336}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_af2517f14782bec5f449da4bc4937cf8c_af2517f14782bec5f449da4bc4937cf8c}{{7.12.2}{161}{\texorpdfstring {LoadVisible()}{LoadVisible()}}{table.183}{}} +\@writefile{toc}{\contentsline {paragraph}{Remove()}{161}{section*.337}\protected@file@percent } \gdef \LT@clxxxv {\LT@entry {3}{49.81639pt}\LT@entry {3}{243.61392pt}} \gdef \LT@clxxxvi {\LT@entry {3}{49.81639pt}\LT@entry {3}{243.61392pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_a61bfe373deb21386f749d2f947da5476_a61bfe373deb21386f749d2f947da5476}{{7.12.2}{161}{\texorpdfstring {Remove()}{Remove()}}{table.184}{}} -\@writefile{toc}{\contentsline {paragraph}{SetMain()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{161}{section*.338}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_ac4fb08375dcad548d850eec212582519_ac4fb08375dcad548d850eec212582519}{{7.12.2}{161}{\texorpdfstring {SetMain()}{SetMain()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.185}{}} -\@writefile{toc}{\contentsline {paragraph}{SetMain()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{161}{section*.339}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.13}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Version\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Control Class Reference}{162}{subsection.7.13}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control}{{7.13}{162}{Asset.\+Version\+Control Class Reference}{subsection.7.13}{}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.13.1}Detailed Description}{163}{subsubsection.7.13.1}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_a61bfe373deb21386f749d2f947da5476_a61bfe373deb21386f749d2f947da5476}{{7.12.2}{162}{\texorpdfstring {Remove()}{Remove()}}{table.184}{}} +\@writefile{toc}{\contentsline {paragraph}{SetMain()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{162}{section*.338}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_sub_asset_ac4fb08375dcad548d850eec212582519_ac4fb08375dcad548d850eec212582519}{{7.12.2}{162}{\texorpdfstring {SetMain()}{SetMain()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.185}{}} +\@writefile{toc}{\contentsline {paragraph}{SetMain()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{162}{section*.339}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.13}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Version\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Control Class Reference}{163}{subsection.7.13}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control}{{7.13}{163}{Asset.\+Version\+Control Class Reference}{subsection.7.13}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.13.1}Detailed Description}{164}{subsubsection.7.13.1}\protected@file@percent } \gdef \LT@clxxxvii {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.13.2}Member Function Documentation}{164}{subsubsection.7.13.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a7f6bbb0782e7f7635706b0e0bc921341_a7f6bbb0782e7f7635706b0e0bc921341}{{7.13.2}{164}{Member Function Documentation}{subsubsection.7.13.2}{}} -\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/5]}}{164}{section*.343}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a2e5d0d18f7ef51ec5ea8a79689584125_a2e5d0d18f7ef51ec5ea8a79689584125}{{7.13.2}{164}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [1/5]}}{figure.caption.344}{}} +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.13.2}Member Function Documentation}{165}{subsubsection.7.13.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a7f6bbb0782e7f7635706b0e0bc921341_a7f6bbb0782e7f7635706b0e0bc921341}{{7.13.2}{165}{Member Function Documentation}{subsubsection.7.13.2}{}} +\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/5]}}{165}{section*.343}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a2e5d0d18f7ef51ec5ea8a79689584125_a2e5d0d18f7ef51ec5ea8a79689584125}{{7.13.2}{165}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [1/5]}}{figure.caption.344}{}} \gdef \LT@clxxxviii {\LT@entry {3}{80.29868pt}\LT@entry {3}{333.40454pt}} \gdef \LT@clxxxix {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} -\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/5]}}{165}{section*.345}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a50c91ed4f4121561ad75f3f2efc38af9_a50c91ed4f4121561ad75f3f2efc38af9}{{7.13.2}{165}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [2/5]}}{table.188}{}} -\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/5]}}{165}{section*.346}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/5]}}{166}{section*.345}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a50c91ed4f4121561ad75f3f2efc38af9_a50c91ed4f4121561ad75f3f2efc38af9}{{7.13.2}{166}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [2/5]}}{table.188}{}} +\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/5]}}{166}{section*.346}\protected@file@percent } \gdef \LT@cxc {\LT@entry {3}{80.29868pt}\LT@entry {3}{333.40454pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a805c285250d01e10b7eafe7f8bea9f3b_a805c285250d01e10b7eafe7f8bea9f3b}{{7.13.2}{166}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [3/5]}}{figure.caption.347}{}} -\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [4/5]}}{166}{section*.348}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a805c285250d01e10b7eafe7f8bea9f3b_a805c285250d01e10b7eafe7f8bea9f3b}{{7.13.2}{167}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [3/5]}}{figure.caption.347}{}} +\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [4/5]}}{167}{section*.348}\protected@file@percent } \gdef \LT@cxci {\LT@entry {3}{80.29868pt}\LT@entry {3}{333.40454pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ac136cd1d20cf4aacbca01dd9d23f4d22_ac136cd1d20cf4aacbca01dd9d23f4d22}{{7.13.2}{167}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [4/5]}}{table.190}{}} -\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [5/5]}}{167}{section*.349}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a14fd4d4a0447ac1dacde2ae694c39339_a14fd4d4a0447ac1dacde2ae694c39339}{{7.13.2}{167}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [5/5]}}{table.191}{}} -\@writefile{toc}{\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{167}{section*.350}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ac136cd1d20cf4aacbca01dd9d23f4d22_ac136cd1d20cf4aacbca01dd9d23f4d22}{{7.13.2}{168}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [4/5]}}{table.190}{}} +\@writefile{toc}{\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [5/5]}}{168}{section*.349}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a14fd4d4a0447ac1dacde2ae694c39339_a14fd4d4a0447ac1dacde2ae694c39339}{{7.13.2}{168}{\texorpdfstring {CanMakeEditable()}{CanMakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [5/5]}}{table.191}{}} +\@writefile{toc}{\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{168}{section*.350}\protected@file@percent } \gdef \LT@cxcii {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} \gdef \LT@cxciii {\LT@entry {3}{80.29868pt}\LT@entry {3}{277.00278pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ad8a9e3f4c51382aa26b9de11e0f9d0a6_ad8a9e3f4c51382aa26b9de11e0f9d0a6}{{7.13.2}{168}{\texorpdfstring {IsEditable()}{IsEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{table.192}{}} -\@writefile{toc}{\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{168}{section*.351}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a01231010fea0f9fbcadb4708e84c668a_a01231010fea0f9fbcadb4708e84c668a}{{7.13.2}{168}{\texorpdfstring {IsEditable()}{IsEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{table.193}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ad8a9e3f4c51382aa26b9de11e0f9d0a6_ad8a9e3f4c51382aa26b9de11e0f9d0a6}{{7.13.2}{169}{\texorpdfstring {IsEditable()}{IsEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{table.192}{}} +\@writefile{toc}{\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{169}{section*.351}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a01231010fea0f9fbcadb4708e84c668a_a01231010fea0f9fbcadb4708e84c668a}{{7.13.2}{169}{\texorpdfstring {IsEditable()}{IsEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{table.193}{}} \gdef \LT@cxciv {\LT@entry {3}{80.29868pt}\LT@entry {3}{277.00278pt}} \gdef \LT@cxcv {\LT@entry {3}{80.29868pt}\LT@entry {3}{277.00278pt}} -\@writefile{toc}{\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{169}{section*.352}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ad786f63df78897c77c7b158140e97ded_ad786f63df78897c77c7b158140e97ded}{{7.13.2}{169}{\texorpdfstring {IsEditable()}{IsEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{table.194}{}} -\@writefile{toc}{\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{169}{section*.353}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{170}{section*.352}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ad786f63df78897c77c7b158140e97ded_ad786f63df78897c77c7b158140e97ded}{{7.13.2}{170}{\texorpdfstring {IsEditable()}{IsEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{table.194}{}} +\@writefile{toc}{\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{170}{section*.353}\protected@file@percent } \gdef \LT@cxcvi {\LT@entry {3}{41.81543pt}\LT@entry {3}{126.4pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a98a4620e539f0cf83a99cb54b154be49_a98a4620e539f0cf83a99cb54b154be49}{{7.13.2}{170}{\texorpdfstring {IsEditable()}{IsEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{table.195}{}} -\@writefile{toc}{\contentsline {paragraph}{IsMetaEditable()}{170}{section*.354}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a43dd5490eaead3d1d8e0b72879e5d2f8_a43dd5490eaead3d1d8e0b72879e5d2f8}{{7.13.2}{170}{\texorpdfstring {IsMetaEditable()}{IsMetaEditable()}}{table.196}{}} -\@writefile{toc}{\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{170}{section*.355}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a98a4620e539f0cf83a99cb54b154be49_a98a4620e539f0cf83a99cb54b154be49}{{7.13.2}{171}{\texorpdfstring {IsEditable()}{IsEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{table.195}{}} +\@writefile{toc}{\contentsline {paragraph}{IsMetaEditable()}{171}{section*.354}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a43dd5490eaead3d1d8e0b72879e5d2f8_a43dd5490eaead3d1d8e0b72879e5d2f8}{{7.13.2}{171}{\texorpdfstring {IsMetaEditable()}{IsMetaEditable()}}{table.196}{}} +\@writefile{toc}{\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{171}{section*.355}\protected@file@percent } \gdef \LT@cxcvii {\LT@entry {3}{30.3136pt}\LT@entry {3}{79.58348pt}} \gdef \LT@cxcviii {\LT@entry {3}{80.29868pt}\LT@entry {3}{277.00278pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ab13913c709a6e8bc08412828d8ce86af_ab13913c709a6e8bc08412828d8ce86af}{{7.13.2}{171}{\texorpdfstring {MakeEditable()}{MakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.197}{}} -\@writefile{toc}{\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{171}{section*.356}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a0418e950cb362718e024a62216d057dc_a0418e950cb362718e024a62216d057dc}{{7.13.2}{171}{\texorpdfstring {MakeEditable()}{MakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.198}{}} -\@writefile{toc}{\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{171}{section*.357}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ab13913c709a6e8bc08412828d8ce86af_ab13913c709a6e8bc08412828d8ce86af}{{7.13.2}{172}{\texorpdfstring {MakeEditable()}{MakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{table.197}{}} +\@writefile{toc}{\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{172}{section*.356}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a0418e950cb362718e024a62216d057dc_a0418e950cb362718e024a62216d057dc}{{7.13.2}{172}{\texorpdfstring {MakeEditable()}{MakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{table.198}{}} +\@writefile{toc}{\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{172}{section*.357}\protected@file@percent } \gdef \LT@cxcix {\LT@entry {3}{80.29868pt}\LT@entry {3}{277.00278pt}} \gdef \LT@cc {\LT@entry {3}{80.29868pt}\LT@entry {3}{294.45398pt}} -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ad298d4e4fcf5043ab4d20e64bce3617f_ad298d4e4fcf5043ab4d20e64bce3617f}{{7.13.2}{172}{\texorpdfstring {MakeEditable()}{MakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.199}{}} -\@writefile{toc}{\contentsline {paragraph}{MakeEditableInteractive()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{172}{section*.358}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a8eac8f1fdbd0e9009799ceeb46dc6b5c_a8eac8f1fdbd0e9009799ceeb46dc6b5c}{{7.13.2}{172}{\texorpdfstring {MakeEditableInteractive()}{MakeEditableInteractive()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.200}{}} +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_ad298d4e4fcf5043ab4d20e64bce3617f_ad298d4e4fcf5043ab4d20e64bce3617f}{{7.13.2}{173}{\texorpdfstring {MakeEditable()}{MakeEditable()}\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{table.199}{}} +\@writefile{toc}{\contentsline {paragraph}{MakeEditableInteractive()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{173}{section*.358}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_1_1_version_control_a8eac8f1fdbd0e9009799ceeb46dc6b5c_a8eac8f1fdbd0e9009799ceeb46dc6b5c}{{7.13.2}{173}{\texorpdfstring {MakeEditableInteractive()}{MakeEditableInteractive()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.200}{}} \gdef \LT@cci {\LT@entry {3}{80.29868pt}\LT@entry {3}{294.45398pt}} -\@writefile{toc}{\contentsline {paragraph}{MakeEditableInteractive()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{173}{section*.359}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {7.14}Asset\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Load\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Exception Class Reference}{173}{subsection.7.14}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_load_exception}{{7.14}{173}{Asset\+Load\+Exception Class Reference}{subsection.7.14}{}} +\@writefile{toc}{\contentsline {paragraph}{MakeEditableInteractive()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{174}{section*.359}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.14}Asset\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Load\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Exception Class Reference}{174}{subsection.7.14}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_load_exception}{{7.14}{174}{Asset\+Load\+Exception Class Reference}{subsection.7.14}{}} \gdef \LT@ccii {\LT@entry {3}{49.31245pt}\LT@entry {3}{90.93265pt}} \gdef \LT@cciii {\LT@entry {3}{72.32489pt}\LT@entry {3}{137.55139pt}} -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.14.1}Detailed Description}{175}{subsubsection.7.14.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.14.2}Constructor \& Destructor Documentation}{175}{subsubsection.7.14.2}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_load_exception_a14844af4b9e1ad1822b11d8e7a99b991_a14844af4b9e1ad1822b11d8e7a99b991}{{7.14.2}{175}{Constructor \& Destructor Documentation}{subsubsection.7.14.2}{}} -\@writefile{toc}{\contentsline {paragraph}{AssetLoadException()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{175}{section*.363}\protected@file@percent } -\newlabel{class_code_smile_editor_1_1_asset_load_exception_a19e920f646406abb17bf92089cd69b8f_a19e920f646406abb17bf92089cd69b8f}{{7.14.2}{175}{\texorpdfstring {AssetLoadException()}{AssetLoadException()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.202}{}} -\@writefile{toc}{\contentsline {paragraph}{AssetLoadException()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{175}{section*.364}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.14.1}Detailed Description}{176}{subsubsection.7.14.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.14.2}Constructor \& Destructor Documentation}{176}{subsubsection.7.14.2}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_load_exception_a14844af4b9e1ad1822b11d8e7a99b991_a14844af4b9e1ad1822b11d8e7a99b991}{{7.14.2}{176}{Constructor \& Destructor Documentation}{subsubsection.7.14.2}{}} +\@writefile{toc}{\contentsline {paragraph}{AssetLoadException()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{176}{section*.363}\protected@file@percent } +\newlabel{class_code_smile_editor_1_1_asset_load_exception_a19e920f646406abb17bf92089cd69b8f_a19e920f646406abb17bf92089cd69b8f}{{7.14.2}{176}{\texorpdfstring {AssetLoadException()}{AssetLoadException()}\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{table.202}{}} +\@writefile{toc}{\contentsline {paragraph}{AssetLoadException()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{176}{section*.364}\protected@file@percent } \@writefile{toc}{\contentsline {section}{Index}{177}{section*.365}\protected@file@percent } \gdef \@abspage@last{184} diff --git a/latex/refman.idx b/latex/refman.idx index ce0c7f3e..b30a41be 100644 --- a/latex/refman.idx +++ b/latex/refman.idx @@ -1,548 +1,548 @@ \indexentry{$<$a href="{}https://assetstore.unity.com/packages/slug/270771"{} target="{}\_blank"{} $>$CodeSmile AssetDatabase$<$/a$>$@{$<$a href=""https://assetstore.unity.com/packages/slug/270771"" target=""\_blank"" $>$CodeSmile AssetDatabase$<$/a$>$}|hyperpage}{1} \indexentry{Change Log@{Change Log}|hyperpage}{6} -\indexentry{CodeSmile Packages -\/ Getting Started@{CodeSmile Packages -\/ Getting Started}|hyperpage}{9} -\indexentry{CodeSmileEditor@{CodeSmileEditor}|hyperpage}{11} +\indexentry{CodeSmile Packages -\/ Getting Started@{CodeSmile Packages -\/ Getting Started}|hyperpage}{10} +\indexentry{CodeSmileEditor@{CodeSmileEditor}|hyperpage}{12} \indexentry{Asset@{Asset}|hyperpage}{12} -\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{16} -\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{16} -\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{16} -\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{16} +\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{17} +\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{17} \indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{17} \indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{17} \indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{18} \indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{18} -\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{18} -\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{18} -\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{20} -\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{20} -\indexentry{Asset@{Asset}!AddLabel@{AddLabel}|hyperpage}{20} -\indexentry{AddLabel@{AddLabel}!Asset@{Asset}|hyperpage}{20} -\indexentry{Asset@{Asset}!AddLabels@{AddLabels}|hyperpage}{21} -\indexentry{AddLabels@{AddLabels}!Asset@{Asset}|hyperpage}{21} -\indexentry{Asset@{Asset}!AddSubAsset@{AddSubAsset}|hyperpage}{21} -\indexentry{AddSubAsset@{AddSubAsset}!Asset@{Asset}|hyperpage}{21} -\indexentry{Asset@{Asset}!CanMove@{CanMove}|hyperpage}{22} -\indexentry{CanMove@{CanMove}!Asset@{Asset}|hyperpage}{22} -\indexentry{Asset@{Asset}!CanOpenInEditor@{CanOpenInEditor}|hyperpage}{22} -\indexentry{CanOpenInEditor@{CanOpenInEditor}!Asset@{Asset}|hyperpage}{22} -\indexentry{Asset@{Asset}!ClearLabels@{ClearLabels}|hyperpage}{22} -\indexentry{ClearLabels@{ClearLabels}!Asset@{Asset}|hyperpage}{22} -\indexentry{Asset@{Asset}!Delete@{Delete}|hyperpage}{23} -\indexentry{Delete@{Delete}!Asset@{Asset}|hyperpage}{23} -\indexentry{Asset@{Asset}!Duplicate@{Duplicate}|hyperpage}{23} -\indexentry{Duplicate@{Duplicate}!Asset@{Asset}|hyperpage}{23} -\indexentry{Asset@{Asset}!ExportPackage@{ExportPackage}|hyperpage}{24} -\indexentry{ExportPackage@{ExportPackage}!Asset@{Asset}|hyperpage}{24} -\indexentry{Asset@{Asset}!ForceSave@{ForceSave}|hyperpage}{24} -\indexentry{ForceSave@{ForceSave}!Asset@{Asset}|hyperpage}{24} -\indexentry{Asset@{Asset}!GetIcon@{GetIcon}|hyperpage}{24} -\indexentry{GetIcon@{GetIcon}!Asset@{Asset}|hyperpage}{24} +\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{19} +\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{19} +\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{19} +\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{19} +\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{21} +\indexentry{Asset@{Asset}!Asset@{Asset}|hyperpage}{21} +\indexentry{Asset@{Asset}!AddLabel@{AddLabel}|hyperpage}{21} +\indexentry{AddLabel@{AddLabel}!Asset@{Asset}|hyperpage}{21} +\indexentry{Asset@{Asset}!AddLabels@{AddLabels}|hyperpage}{22} +\indexentry{AddLabels@{AddLabels}!Asset@{Asset}|hyperpage}{22} +\indexentry{Asset@{Asset}!AddSubAsset@{AddSubAsset}|hyperpage}{22} +\indexentry{AddSubAsset@{AddSubAsset}!Asset@{Asset}|hyperpage}{22} +\indexentry{Asset@{Asset}!CanMove@{CanMove}|hyperpage}{23} +\indexentry{CanMove@{CanMove}!Asset@{Asset}|hyperpage}{23} +\indexentry{Asset@{Asset}!CanOpenInEditor@{CanOpenInEditor}|hyperpage}{23} +\indexentry{CanOpenInEditor@{CanOpenInEditor}!Asset@{Asset}|hyperpage}{23} +\indexentry{Asset@{Asset}!ClearLabels@{ClearLabels}|hyperpage}{23} +\indexentry{ClearLabels@{ClearLabels}!Asset@{Asset}|hyperpage}{23} +\indexentry{Asset@{Asset}!Delete@{Delete}|hyperpage}{24} +\indexentry{Delete@{Delete}!Asset@{Asset}|hyperpage}{24} +\indexentry{Asset@{Asset}!Duplicate@{Duplicate}|hyperpage}{24} +\indexentry{Duplicate@{Duplicate}!Asset@{Asset}|hyperpage}{24} +\indexentry{Asset@{Asset}!ExportPackage@{ExportPackage}|hyperpage}{25} +\indexentry{ExportPackage@{ExportPackage}!Asset@{Asset}|hyperpage}{25} +\indexentry{Asset@{Asset}!ForceSave@{ForceSave}|hyperpage}{25} +\indexentry{ForceSave@{ForceSave}!Asset@{Asset}|hyperpage}{25} \indexentry{Asset@{Asset}!GetIcon@{GetIcon}|hyperpage}{25} \indexentry{GetIcon@{GetIcon}!Asset@{Asset}|hyperpage}{25} -\indexentry{Asset@{Asset}!GetLastErrorMessage@{GetLastErrorMessage}|hyperpage}{25} -\indexentry{GetLastErrorMessage@{GetLastErrorMessage}!Asset@{Asset}|hyperpage}{25} -\indexentry{Asset@{Asset}!GetMain$<$ T $>$@{GetMain$<$ T $>$}|hyperpage}{26} -\indexentry{GetMain$<$ T $>$@{GetMain$<$ T $>$}!Asset@{Asset}|hyperpage}{26} -\indexentry{Asset@{Asset}!Load$<$ T $>$@{Load$<$ T $>$}|hyperpage}{27} -\indexentry{Load$<$ T $>$@{Load$<$ T $>$}!Asset@{Asset}|hyperpage}{27} -\indexentry{Asset@{Asset}!Move@{Move}|hyperpage}{27} -\indexentry{Move@{Move}!Asset@{Asset}|hyperpage}{27} -\indexentry{Asset@{Asset}!OpenExternal@{OpenExternal}|hyperpage}{28} -\indexentry{OpenExternal@{OpenExternal}!Asset@{Asset}|hyperpage}{28} -\indexentry{Asset@{Asset}!operator Asset@{operator Asset}|hyperpage}{29} -\indexentry{operator Asset@{operator Asset}!Asset@{Asset}|hyperpage}{29} -\indexentry{Asset@{Asset}!operator Asset@{operator Asset}|hyperpage}{29} -\indexentry{operator Asset@{operator Asset}!Asset@{Asset}|hyperpage}{29} -\indexentry{Asset@{Asset}!operator Asset@{operator Asset}|hyperpage}{29} -\indexentry{operator Asset@{operator Asset}!Asset@{Asset}|hyperpage}{29} -\indexentry{Asset@{Asset}!operator Asset@{operator Asset}|hyperpage}{29} -\indexentry{operator Asset@{operator Asset}!Asset@{Asset}|hyperpage}{29} -\indexentry{Asset@{Asset}!operator Object@{operator Object}|hyperpage}{30} -\indexentry{operator Object@{operator Object}!Asset@{Asset}|hyperpage}{30} -\indexentry{Asset@{Asset}!RemoveLabel@{RemoveLabel}|hyperpage}{30} -\indexentry{RemoveLabel@{RemoveLabel}!Asset@{Asset}|hyperpage}{30} -\indexentry{Asset@{Asset}!RemoveSubAsset@{RemoveSubAsset}|hyperpage}{30} -\indexentry{RemoveSubAsset@{RemoveSubAsset}!Asset@{Asset}|hyperpage}{30} -\indexentry{Asset@{Asset}!Rename@{Rename}|hyperpage}{31} -\indexentry{Rename@{Rename}!Asset@{Asset}|hyperpage}{31} -\indexentry{Asset@{Asset}!Save@{Save}|hyperpage}{32} -\indexentry{Save@{Save}!Asset@{Asset}|hyperpage}{32} -\indexentry{Asset@{Asset}!SaveAs@{SaveAs}|hyperpage}{32} -\indexentry{SaveAs@{SaveAs}!Asset@{Asset}|hyperpage}{32} -\indexentry{Asset@{Asset}!SaveAsNew@{SaveAsNew}|hyperpage}{33} -\indexentry{SaveAsNew@{SaveAsNew}!Asset@{Asset}|hyperpage}{33} -\indexentry{Asset@{Asset}!SetDirty@{SetDirty}|hyperpage}{34} -\indexentry{SetDirty@{SetDirty}!Asset@{Asset}|hyperpage}{34} -\indexentry{Asset@{Asset}!SetLabels@{SetLabels}|hyperpage}{34} -\indexentry{SetLabels@{SetLabels}!Asset@{Asset}|hyperpage}{34} -\indexentry{Asset@{Asset}!Trash@{Trash}|hyperpage}{35} -\indexentry{Trash@{Trash}!Asset@{Asset}|hyperpage}{35} -\indexentry{Asset@{Asset}!ActiveImporter@{ActiveImporter}|hyperpage}{36} -\indexentry{ActiveImporter@{ActiveImporter}!Asset@{Asset}|hyperpage}{36} -\indexentry{Asset@{Asset}!AssetPath@{AssetPath}|hyperpage}{36} -\indexentry{AssetPath@{AssetPath}!Asset@{Asset}|hyperpage}{36} -\indexentry{Asset@{Asset}!AvailableImporters@{AvailableImporters}|hyperpage}{36} -\indexentry{AvailableImporters@{AvailableImporters}!Asset@{Asset}|hyperpage}{36} -\indexentry{Asset@{Asset}!DefaultImporter@{DefaultImporter}|hyperpage}{36} -\indexentry{DefaultImporter@{DefaultImporter}!Asset@{Asset}|hyperpage}{36} -\indexentry{Asset@{Asset}!Dependencies@{Dependencies}|hyperpage}{37} -\indexentry{Dependencies@{Dependencies}!Asset@{Asset}|hyperpage}{37} -\indexentry{Asset@{Asset}!DirectDependencies@{DirectDependencies}|hyperpage}{37} -\indexentry{DirectDependencies@{DirectDependencies}!Asset@{Asset}|hyperpage}{37} -\indexentry{Asset@{Asset}!FileId@{FileId}|hyperpage}{37} -\indexentry{FileId@{FileId}!Asset@{Asset}|hyperpage}{37} -\indexentry{Asset@{Asset}!Guid@{Guid}|hyperpage}{38} -\indexentry{Guid@{Guid}!Asset@{Asset}|hyperpage}{38} -\indexentry{Asset@{Asset}!Icon@{Icon}|hyperpage}{38} -\indexentry{Icon@{Icon}!Asset@{Asset}|hyperpage}{38} -\indexentry{Asset@{Asset}!IsDeleted@{IsDeleted}|hyperpage}{38} -\indexentry{IsDeleted@{IsDeleted}!Asset@{Asset}|hyperpage}{38} -\indexentry{Asset@{Asset}!IsForeign@{IsForeign}|hyperpage}{38} -\indexentry{IsForeign@{IsForeign}!Asset@{Asset}|hyperpage}{38} -\indexentry{Asset@{Asset}!IsImporterOverridden@{IsImporterOverridden}|hyperpage}{39} -\indexentry{IsImporterOverridden@{IsImporterOverridden}!Asset@{Asset}|hyperpage}{39} -\indexentry{Asset@{Asset}!IsNative@{IsNative}|hyperpage}{39} -\indexentry{IsNative@{IsNative}!Asset@{Asset}|hyperpage}{39} -\indexentry{Asset@{Asset}!IsScene@{IsScene}|hyperpage}{39} -\indexentry{IsScene@{IsScene}!Asset@{Asset}|hyperpage}{39} -\indexentry{Asset@{Asset}!Labels@{Labels}|hyperpage}{40} -\indexentry{Labels@{Labels}!Asset@{Asset}|hyperpage}{40} -\indexentry{Asset@{Asset}!MainObject@{MainObject}|hyperpage}{40} -\indexentry{MainObject@{MainObject}!Asset@{Asset}|hyperpage}{40} -\indexentry{Asset@{Asset}!MainObjectType@{MainObjectType}|hyperpage}{40} -\indexentry{MainObjectType@{MainObjectType}!Asset@{Asset}|hyperpage}{40} -\indexentry{Asset@{Asset}!MetaPath@{MetaPath}|hyperpage}{41} -\indexentry{MetaPath@{MetaPath}!Asset@{Asset}|hyperpage}{41} -\indexentry{Asset@{Asset}!OwningBundle@{OwningBundle}|hyperpage}{41} -\indexentry{OwningBundle@{OwningBundle}!Asset@{Asset}|hyperpage}{41} -\indexentry{Asset@{Asset}!OwningBundleVariant@{OwningBundleVariant}|hyperpage}{41} -\indexentry{OwningBundleVariant@{OwningBundleVariant}!Asset@{Asset}|hyperpage}{41} -\indexentry{Asset@{Asset}!SubAssets@{SubAssets}|hyperpage}{42} -\indexentry{SubAssets@{SubAssets}!Asset@{Asset}|hyperpage}{42} -\indexentry{Asset@{Asset}!VisibleSubAssets@{VisibleSubAssets}|hyperpage}{42} -\indexentry{VisibleSubAssets@{VisibleSubAssets}!Asset@{Asset}|hyperpage}{42} -\indexentry{Asset.Bundle@{Asset.Bundle}|hyperpage}{43} -\indexentry{Asset.Bundle@{Asset.Bundle}!ForceRemove@{ForceRemove}|hyperpage}{44} -\indexentry{ForceRemove@{ForceRemove}!Asset.Bundle@{Asset.Bundle}|hyperpage}{44} -\indexentry{Asset.Bundle@{Asset.Bundle}!GetAllDependencies@{GetAllDependencies}|hyperpage}{44} -\indexentry{GetAllDependencies@{GetAllDependencies}!Asset.Bundle@{Asset.Bundle}|hyperpage}{44} -\indexentry{Asset.Bundle@{Asset.Bundle}!GetAllPaths@{GetAllPaths}|hyperpage}{45} -\indexentry{GetAllPaths@{GetAllPaths}!Asset.Bundle@{Asset.Bundle}|hyperpage}{45} -\indexentry{Asset.Bundle@{Asset.Bundle}!GetDirectDependencies@{GetDirectDependencies}|hyperpage}{45} -\indexentry{GetDirectDependencies@{GetDirectDependencies}!Asset.Bundle@{Asset.Bundle}|hyperpage}{45} -\indexentry{Asset.Bundle@{Asset.Bundle}!GetOwningBundle@{GetOwningBundle}|hyperpage}{46} -\indexentry{GetOwningBundle@{GetOwningBundle}!Asset.Bundle@{Asset.Bundle}|hyperpage}{46} -\indexentry{Asset.Bundle@{Asset.Bundle}!GetOwningBundleVariant@{GetOwningBundleVariant}|hyperpage}{46} -\indexentry{GetOwningBundleVariant@{GetOwningBundleVariant}!Asset.Bundle@{Asset.Bundle}|hyperpage}{46} -\indexentry{Asset.Bundle@{Asset.Bundle}!GetPaths@{GetPaths}|hyperpage}{47} -\indexentry{GetPaths@{GetPaths}!Asset.Bundle@{Asset.Bundle}|hyperpage}{47} -\indexentry{Asset.Bundle@{Asset.Bundle}!Remove@{Remove}|hyperpage}{47} -\indexentry{Remove@{Remove}!Asset.Bundle@{Asset.Bundle}|hyperpage}{47} -\indexentry{Asset.Bundle@{Asset.Bundle}!RemoveUnused@{RemoveUnused}|hyperpage}{48} -\indexentry{RemoveUnused@{RemoveUnused}!Asset.Bundle@{Asset.Bundle}|hyperpage}{48} -\indexentry{Asset.Bundle@{Asset.Bundle}!All@{All}|hyperpage}{48} -\indexentry{All@{All}!Asset.Bundle@{Asset.Bundle}|hyperpage}{48} -\indexentry{Asset.Bundle@{Asset.Bundle}!Unused@{Unused}|hyperpage}{48} -\indexentry{Unused@{Unused}!Asset.Bundle@{Asset.Bundle}|hyperpage}{48} -\indexentry{Asset.Database@{Asset.Database}|hyperpage}{49} -\indexentry{Asset.Database@{Asset.Database}!AllowAutoRefresh@{AllowAutoRefresh}|hyperpage}{50} -\indexentry{AllowAutoRefresh@{AllowAutoRefresh}!Asset.Database@{Asset.Database}|hyperpage}{50} -\indexentry{Asset.Database@{Asset.Database}!Contains@{Contains}|hyperpage}{50} -\indexentry{Contains@{Contains}!Asset.Database@{Asset.Database}|hyperpage}{50} +\indexentry{Asset@{Asset}!GetIcon@{GetIcon}|hyperpage}{26} +\indexentry{GetIcon@{GetIcon}!Asset@{Asset}|hyperpage}{26} +\indexentry{Asset@{Asset}!GetLastErrorMessage@{GetLastErrorMessage}|hyperpage}{26} +\indexentry{GetLastErrorMessage@{GetLastErrorMessage}!Asset@{Asset}|hyperpage}{26} +\indexentry{Asset@{Asset}!GetMain$<$ T $>$@{GetMain$<$ T $>$}|hyperpage}{27} +\indexentry{GetMain$<$ T $>$@{GetMain$<$ T $>$}!Asset@{Asset}|hyperpage}{27} +\indexentry{Asset@{Asset}!Load$<$ T $>$@{Load$<$ T $>$}|hyperpage}{28} +\indexentry{Load$<$ T $>$@{Load$<$ T $>$}!Asset@{Asset}|hyperpage}{28} +\indexentry{Asset@{Asset}!Move@{Move}|hyperpage}{28} +\indexentry{Move@{Move}!Asset@{Asset}|hyperpage}{28} +\indexentry{Asset@{Asset}!OpenExternal@{OpenExternal}|hyperpage}{29} +\indexentry{OpenExternal@{OpenExternal}!Asset@{Asset}|hyperpage}{29} +\indexentry{Asset@{Asset}!operator Asset@{operator Asset}|hyperpage}{30} +\indexentry{operator Asset@{operator Asset}!Asset@{Asset}|hyperpage}{30} +\indexentry{Asset@{Asset}!operator Asset@{operator Asset}|hyperpage}{30} +\indexentry{operator Asset@{operator Asset}!Asset@{Asset}|hyperpage}{30} +\indexentry{Asset@{Asset}!operator Asset@{operator Asset}|hyperpage}{30} +\indexentry{operator Asset@{operator Asset}!Asset@{Asset}|hyperpage}{30} +\indexentry{Asset@{Asset}!operator Asset@{operator Asset}|hyperpage}{30} +\indexentry{operator Asset@{operator Asset}!Asset@{Asset}|hyperpage}{30} +\indexentry{Asset@{Asset}!operator Object@{operator Object}|hyperpage}{31} +\indexentry{operator Object@{operator Object}!Asset@{Asset}|hyperpage}{31} +\indexentry{Asset@{Asset}!RemoveLabel@{RemoveLabel}|hyperpage}{31} +\indexentry{RemoveLabel@{RemoveLabel}!Asset@{Asset}|hyperpage}{31} +\indexentry{Asset@{Asset}!RemoveSubAsset@{RemoveSubAsset}|hyperpage}{31} +\indexentry{RemoveSubAsset@{RemoveSubAsset}!Asset@{Asset}|hyperpage}{31} +\indexentry{Asset@{Asset}!Rename@{Rename}|hyperpage}{32} +\indexentry{Rename@{Rename}!Asset@{Asset}|hyperpage}{32} +\indexentry{Asset@{Asset}!Save@{Save}|hyperpage}{33} +\indexentry{Save@{Save}!Asset@{Asset}|hyperpage}{33} +\indexentry{Asset@{Asset}!SaveAs@{SaveAs}|hyperpage}{33} +\indexentry{SaveAs@{SaveAs}!Asset@{Asset}|hyperpage}{33} +\indexentry{Asset@{Asset}!SaveAsNew@{SaveAsNew}|hyperpage}{34} +\indexentry{SaveAsNew@{SaveAsNew}!Asset@{Asset}|hyperpage}{34} +\indexentry{Asset@{Asset}!SetDirty@{SetDirty}|hyperpage}{35} +\indexentry{SetDirty@{SetDirty}!Asset@{Asset}|hyperpage}{35} +\indexentry{Asset@{Asset}!SetLabels@{SetLabels}|hyperpage}{35} +\indexentry{SetLabels@{SetLabels}!Asset@{Asset}|hyperpage}{35} +\indexentry{Asset@{Asset}!Trash@{Trash}|hyperpage}{36} +\indexentry{Trash@{Trash}!Asset@{Asset}|hyperpage}{36} +\indexentry{Asset@{Asset}!ActiveImporter@{ActiveImporter}|hyperpage}{37} +\indexentry{ActiveImporter@{ActiveImporter}!Asset@{Asset}|hyperpage}{37} +\indexentry{Asset@{Asset}!AssetPath@{AssetPath}|hyperpage}{37} +\indexentry{AssetPath@{AssetPath}!Asset@{Asset}|hyperpage}{37} +\indexentry{Asset@{Asset}!AvailableImporters@{AvailableImporters}|hyperpage}{37} +\indexentry{AvailableImporters@{AvailableImporters}!Asset@{Asset}|hyperpage}{37} +\indexentry{Asset@{Asset}!DefaultImporter@{DefaultImporter}|hyperpage}{37} +\indexentry{DefaultImporter@{DefaultImporter}!Asset@{Asset}|hyperpage}{37} +\indexentry{Asset@{Asset}!Dependencies@{Dependencies}|hyperpage}{38} +\indexentry{Dependencies@{Dependencies}!Asset@{Asset}|hyperpage}{38} +\indexentry{Asset@{Asset}!DirectDependencies@{DirectDependencies}|hyperpage}{38} +\indexentry{DirectDependencies@{DirectDependencies}!Asset@{Asset}|hyperpage}{38} +\indexentry{Asset@{Asset}!FileId@{FileId}|hyperpage}{38} +\indexentry{FileId@{FileId}!Asset@{Asset}|hyperpage}{38} +\indexentry{Asset@{Asset}!Guid@{Guid}|hyperpage}{39} +\indexentry{Guid@{Guid}!Asset@{Asset}|hyperpage}{39} +\indexentry{Asset@{Asset}!Icon@{Icon}|hyperpage}{39} +\indexentry{Icon@{Icon}!Asset@{Asset}|hyperpage}{39} +\indexentry{Asset@{Asset}!IsDeleted@{IsDeleted}|hyperpage}{39} +\indexentry{IsDeleted@{IsDeleted}!Asset@{Asset}|hyperpage}{39} +\indexentry{Asset@{Asset}!IsForeign@{IsForeign}|hyperpage}{39} +\indexentry{IsForeign@{IsForeign}!Asset@{Asset}|hyperpage}{39} +\indexentry{Asset@{Asset}!IsImporterOverridden@{IsImporterOverridden}|hyperpage}{40} +\indexentry{IsImporterOverridden@{IsImporterOverridden}!Asset@{Asset}|hyperpage}{40} +\indexentry{Asset@{Asset}!IsNative@{IsNative}|hyperpage}{40} +\indexentry{IsNative@{IsNative}!Asset@{Asset}|hyperpage}{40} +\indexentry{Asset@{Asset}!IsScene@{IsScene}|hyperpage}{40} +\indexentry{IsScene@{IsScene}!Asset@{Asset}|hyperpage}{40} +\indexentry{Asset@{Asset}!Labels@{Labels}|hyperpage}{41} +\indexentry{Labels@{Labels}!Asset@{Asset}|hyperpage}{41} +\indexentry{Asset@{Asset}!MainObject@{MainObject}|hyperpage}{41} +\indexentry{MainObject@{MainObject}!Asset@{Asset}|hyperpage}{41} +\indexentry{Asset@{Asset}!MainObjectType@{MainObjectType}|hyperpage}{41} +\indexentry{MainObjectType@{MainObjectType}!Asset@{Asset}|hyperpage}{41} +\indexentry{Asset@{Asset}!MetaPath@{MetaPath}|hyperpage}{42} +\indexentry{MetaPath@{MetaPath}!Asset@{Asset}|hyperpage}{42} +\indexentry{Asset@{Asset}!OwningBundle@{OwningBundle}|hyperpage}{42} +\indexentry{OwningBundle@{OwningBundle}!Asset@{Asset}|hyperpage}{42} +\indexentry{Asset@{Asset}!OwningBundleVariant@{OwningBundleVariant}|hyperpage}{42} +\indexentry{OwningBundleVariant@{OwningBundleVariant}!Asset@{Asset}|hyperpage}{42} +\indexentry{Asset@{Asset}!SubAssets@{SubAssets}|hyperpage}{43} +\indexentry{SubAssets@{SubAssets}!Asset@{Asset}|hyperpage}{43} +\indexentry{Asset@{Asset}!VisibleSubAssets@{VisibleSubAssets}|hyperpage}{43} +\indexentry{VisibleSubAssets@{VisibleSubAssets}!Asset@{Asset}|hyperpage}{43} +\indexentry{Asset.Bundle@{Asset.Bundle}|hyperpage}{44} +\indexentry{Asset.Bundle@{Asset.Bundle}!ForceRemove@{ForceRemove}|hyperpage}{45} +\indexentry{ForceRemove@{ForceRemove}!Asset.Bundle@{Asset.Bundle}|hyperpage}{45} +\indexentry{Asset.Bundle@{Asset.Bundle}!GetAllDependencies@{GetAllDependencies}|hyperpage}{45} +\indexentry{GetAllDependencies@{GetAllDependencies}!Asset.Bundle@{Asset.Bundle}|hyperpage}{45} +\indexentry{Asset.Bundle@{Asset.Bundle}!GetAllPaths@{GetAllPaths}|hyperpage}{46} +\indexentry{GetAllPaths@{GetAllPaths}!Asset.Bundle@{Asset.Bundle}|hyperpage}{46} +\indexentry{Asset.Bundle@{Asset.Bundle}!GetDirectDependencies@{GetDirectDependencies}|hyperpage}{46} +\indexentry{GetDirectDependencies@{GetDirectDependencies}!Asset.Bundle@{Asset.Bundle}|hyperpage}{46} +\indexentry{Asset.Bundle@{Asset.Bundle}!GetOwningBundle@{GetOwningBundle}|hyperpage}{47} +\indexentry{GetOwningBundle@{GetOwningBundle}!Asset.Bundle@{Asset.Bundle}|hyperpage}{47} +\indexentry{Asset.Bundle@{Asset.Bundle}!GetOwningBundleVariant@{GetOwningBundleVariant}|hyperpage}{47} +\indexentry{GetOwningBundleVariant@{GetOwningBundleVariant}!Asset.Bundle@{Asset.Bundle}|hyperpage}{47} +\indexentry{Asset.Bundle@{Asset.Bundle}!GetPaths@{GetPaths}|hyperpage}{48} +\indexentry{GetPaths@{GetPaths}!Asset.Bundle@{Asset.Bundle}|hyperpage}{48} +\indexentry{Asset.Bundle@{Asset.Bundle}!Remove@{Remove}|hyperpage}{48} +\indexentry{Remove@{Remove}!Asset.Bundle@{Asset.Bundle}|hyperpage}{48} +\indexentry{Asset.Bundle@{Asset.Bundle}!RemoveUnused@{RemoveUnused}|hyperpage}{49} +\indexentry{RemoveUnused@{RemoveUnused}!Asset.Bundle@{Asset.Bundle}|hyperpage}{49} +\indexentry{Asset.Bundle@{Asset.Bundle}!All@{All}|hyperpage}{49} +\indexentry{All@{All}!Asset.Bundle@{Asset.Bundle}|hyperpage}{49} +\indexentry{Asset.Bundle@{Asset.Bundle}!Unused@{Unused}|hyperpage}{49} +\indexentry{Unused@{Unused}!Asset.Bundle@{Asset.Bundle}|hyperpage}{49} +\indexentry{Asset.Database@{Asset.Database}|hyperpage}{50} +\indexentry{Asset.Database@{Asset.Database}!AllowAutoRefresh@{AllowAutoRefresh}|hyperpage}{51} +\indexentry{AllowAutoRefresh@{AllowAutoRefresh}!Asset.Database@{Asset.Database}|hyperpage}{51} \indexentry{Asset.Database@{Asset.Database}!Contains@{Contains}|hyperpage}{51} \indexentry{Contains@{Contains}!Asset.Database@{Asset.Database}|hyperpage}{51} -\indexentry{Asset.Database@{Asset.Database}!DisallowAutoRefresh@{DisallowAutoRefresh}|hyperpage}{51} -\indexentry{DisallowAutoRefresh@{DisallowAutoRefresh}!Asset.Database@{Asset.Database}|hyperpage}{51} -\indexentry{Asset.Database@{Asset.Database}!ImportAll@{ImportAll}|hyperpage}{51} -\indexentry{ImportAll@{ImportAll}!Asset.Database@{Asset.Database}|hyperpage}{51} -\indexentry{Asset.Database@{Asset.Database}!ReleaseFileHandles@{ReleaseFileHandles}|hyperpage}{53} -\indexentry{ReleaseFileHandles@{ReleaseFileHandles}!Asset.Database@{Asset.Database}|hyperpage}{53} -\indexentry{Asset.Database@{Asset.Database}!SaveAll@{SaveAll}|hyperpage}{53} -\indexentry{SaveAll@{SaveAll}!Asset.Database@{Asset.Database}|hyperpage}{53} -\indexentry{Asset.Database@{Asset.Database}!UpgradeAllAssetSerializationVersions@{UpgradeAllAssetSerializationVersions}|hyperpage}{53} -\indexentry{UpgradeAllAssetSerializationVersions@{UpgradeAllAssetSerializationVersions}!Asset.Database@{Asset.Database}|hyperpage}{53} -\indexentry{Asset.Database@{Asset.Database}!UpgradeAssetSerializationVersion@{UpgradeAssetSerializationVersion}|hyperpage}{53} -\indexentry{UpgradeAssetSerializationVersion@{UpgradeAssetSerializationVersion}!Asset.Database@{Asset.Database}|hyperpage}{53} +\indexentry{Asset.Database@{Asset.Database}!Contains@{Contains}|hyperpage}{52} +\indexentry{Contains@{Contains}!Asset.Database@{Asset.Database}|hyperpage}{52} +\indexentry{Asset.Database@{Asset.Database}!DisallowAutoRefresh@{DisallowAutoRefresh}|hyperpage}{52} +\indexentry{DisallowAutoRefresh@{DisallowAutoRefresh}!Asset.Database@{Asset.Database}|hyperpage}{52} +\indexentry{Asset.Database@{Asset.Database}!ImportAll@{ImportAll}|hyperpage}{52} +\indexentry{ImportAll@{ImportAll}!Asset.Database@{Asset.Database}|hyperpage}{52} +\indexentry{Asset.Database@{Asset.Database}!ReleaseFileHandles@{ReleaseFileHandles}|hyperpage}{54} +\indexentry{ReleaseFileHandles@{ReleaseFileHandles}!Asset.Database@{Asset.Database}|hyperpage}{54} +\indexentry{Asset.Database@{Asset.Database}!SaveAll@{SaveAll}|hyperpage}{54} +\indexentry{SaveAll@{SaveAll}!Asset.Database@{Asset.Database}|hyperpage}{54} +\indexentry{Asset.Database@{Asset.Database}!UpgradeAllAssetSerializationVersions@{UpgradeAllAssetSerializationVersions}|hyperpage}{54} +\indexentry{UpgradeAllAssetSerializationVersions@{UpgradeAllAssetSerializationVersions}!Asset.Database@{Asset.Database}|hyperpage}{54} \indexentry{Asset.Database@{Asset.Database}!UpgradeAssetSerializationVersion@{UpgradeAssetSerializationVersion}|hyperpage}{54} \indexentry{UpgradeAssetSerializationVersion@{UpgradeAssetSerializationVersion}!Asset.Database@{Asset.Database}|hyperpage}{54} -\indexentry{Asset.Database@{Asset.Database}!DesiredWorkerCount@{DesiredWorkerCount}|hyperpage}{55} -\indexentry{DesiredWorkerCount@{DesiredWorkerCount}!Asset.Database@{Asset.Database}|hyperpage}{55} -\indexentry{Asset.Database@{Asset.Database}!DirectoryMonitoring@{DirectoryMonitoring}|hyperpage}{55} -\indexentry{DirectoryMonitoring@{DirectoryMonitoring}!Asset.Database@{Asset.Database}|hyperpage}{55} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{56} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!ApplySettings@{ApplySettings}|hyperpage}{57} -\indexentry{ApplySettings@{ApplySettings}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{57} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!CanConnect@{CanConnect}|hyperpage}{57} -\indexentry{CanConnect@{CanConnect}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{57} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Disconnect@{Disconnect}|hyperpage}{58} -\indexentry{Disconnect@{Disconnect}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{58} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!ResetReconnectTimer@{ResetReconnectTimer}|hyperpage}{58} -\indexentry{ResetReconnectTimer@{ResetReconnectTimer}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{58} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Address@{Address}|hyperpage}{58} -\indexentry{Address@{Address}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{58} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Connected@{Connected}|hyperpage}{58} -\indexentry{Connected@{Connected}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{58} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!ConnectedAddress@{ConnectedAddress}|hyperpage}{59} -\indexentry{ConnectedAddress@{ConnectedAddress}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{59} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!DownloadsAllowed@{DownloadsAllowed}|hyperpage}{59} -\indexentry{DownloadsAllowed@{DownloadsAllowed}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{59} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Enabled@{Enabled}|hyperpage}{59} -\indexentry{Enabled@{Enabled}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{59} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!NamespacePrefix@{NamespacePrefix}|hyperpage}{60} -\indexentry{NamespacePrefix@{NamespacePrefix}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{60} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Port@{Port}|hyperpage}{60} -\indexentry{Port@{Port}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{60} -\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!UploadsAllowed@{UploadsAllowed}|hyperpage}{60} -\indexentry{UploadsAllowed@{UploadsAllowed}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{60} -\indexentry{Asset.Dependency@{Asset.Dependency}|hyperpage}{61} -\indexentry{Asset.Dependency@{Asset.Dependency}!GetAll@{GetAll}|hyperpage}{62} -\indexentry{GetAll@{GetAll}!Asset.Dependency@{Asset.Dependency}|hyperpage}{62} -\indexentry{Asset.Dependency@{Asset.Dependency}!GetAll@{GetAll}|hyperpage}{62} -\indexentry{GetAll@{GetAll}!Asset.Dependency@{Asset.Dependency}|hyperpage}{62} -\indexentry{Asset.Dependency@{Asset.Dependency}!GetDirect@{GetDirect}|hyperpage}{63} -\indexentry{GetDirect@{GetDirect}!Asset.Dependency@{Asset.Dependency}|hyperpage}{63} -\indexentry{Asset.Dependency@{Asset.Dependency}!GetDirect@{GetDirect}|hyperpage}{63} -\indexentry{GetDirect@{GetDirect}!Asset.Dependency@{Asset.Dependency}|hyperpage}{63} -\indexentry{Asset.Dependency@{Asset.Dependency}!GetHash@{GetHash}|hyperpage}{64} -\indexentry{GetHash@{GetHash}!Asset.Dependency@{Asset.Dependency}|hyperpage}{64} -\indexentry{Asset.Dependency@{Asset.Dependency}!GetHash@{GetHash}|hyperpage}{64} -\indexentry{GetHash@{GetHash}!Asset.Dependency@{Asset.Dependency}|hyperpage}{64} -\indexentry{Asset.Dependency@{Asset.Dependency}!Register@{Register}|hyperpage}{65} -\indexentry{Register@{Register}!Asset.Dependency@{Asset.Dependency}|hyperpage}{65} -\indexentry{Asset.Dependency@{Asset.Dependency}!Unregister@{Unregister}|hyperpage}{65} -\indexentry{Unregister@{Unregister}!Asset.Dependency@{Asset.Dependency}|hyperpage}{65} -\indexentry{Asset.File@{Asset.File}|hyperpage}{66} -\indexentry{Asset.File@{Asset.File}!BatchEditing@{BatchEditing}|hyperpage}{69} -\indexentry{BatchEditing@{BatchEditing}!Asset.File@{Asset.File}|hyperpage}{69} -\indexentry{Asset.File@{Asset.File}!CanMove@{CanMove}|hyperpage}{70} -\indexentry{CanMove@{CanMove}!Asset.File@{Asset.File}|hyperpage}{70} -\indexentry{Asset.File@{Asset.File}!CanOpenInEditor@{CanOpenInEditor}|hyperpage}{70} -\indexentry{CanOpenInEditor@{CanOpenInEditor}!Asset.File@{Asset.File}|hyperpage}{70} +\indexentry{Asset.Database@{Asset.Database}!UpgradeAssetSerializationVersion@{UpgradeAssetSerializationVersion}|hyperpage}{55} +\indexentry{UpgradeAssetSerializationVersion@{UpgradeAssetSerializationVersion}!Asset.Database@{Asset.Database}|hyperpage}{55} +\indexentry{Asset.Database@{Asset.Database}!DesiredWorkerCount@{DesiredWorkerCount}|hyperpage}{56} +\indexentry{DesiredWorkerCount@{DesiredWorkerCount}!Asset.Database@{Asset.Database}|hyperpage}{56} +\indexentry{Asset.Database@{Asset.Database}!DirectoryMonitoring@{DirectoryMonitoring}|hyperpage}{56} +\indexentry{DirectoryMonitoring@{DirectoryMonitoring}!Asset.Database@{Asset.Database}|hyperpage}{56} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{57} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!ApplySettings@{ApplySettings}|hyperpage}{58} +\indexentry{ApplySettings@{ApplySettings}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{58} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!CanConnect@{CanConnect}|hyperpage}{58} +\indexentry{CanConnect@{CanConnect}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{58} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Disconnect@{Disconnect}|hyperpage}{59} +\indexentry{Disconnect@{Disconnect}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{59} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!ResetReconnectTimer@{ResetReconnectTimer}|hyperpage}{59} +\indexentry{ResetReconnectTimer@{ResetReconnectTimer}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{59} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Address@{Address}|hyperpage}{59} +\indexentry{Address@{Address}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{59} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Connected@{Connected}|hyperpage}{59} +\indexentry{Connected@{Connected}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{59} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!ConnectedAddress@{ConnectedAddress}|hyperpage}{60} +\indexentry{ConnectedAddress@{ConnectedAddress}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{60} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!DownloadsAllowed@{DownloadsAllowed}|hyperpage}{60} +\indexentry{DownloadsAllowed@{DownloadsAllowed}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{60} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Enabled@{Enabled}|hyperpage}{60} +\indexentry{Enabled@{Enabled}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{60} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!NamespacePrefix@{NamespacePrefix}|hyperpage}{61} +\indexentry{NamespacePrefix@{NamespacePrefix}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{61} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!Port@{Port}|hyperpage}{61} +\indexentry{Port@{Port}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{61} +\indexentry{Asset.Database.CacheServer@{Asset.Database.CacheServer}!UploadsAllowed@{UploadsAllowed}|hyperpage}{61} +\indexentry{UploadsAllowed@{UploadsAllowed}!Asset.Database.CacheServer@{Asset.Database.CacheServer}|hyperpage}{61} +\indexentry{Asset.Dependency@{Asset.Dependency}|hyperpage}{62} +\indexentry{Asset.Dependency@{Asset.Dependency}!GetAll@{GetAll}|hyperpage}{63} +\indexentry{GetAll@{GetAll}!Asset.Dependency@{Asset.Dependency}|hyperpage}{63} +\indexentry{Asset.Dependency@{Asset.Dependency}!GetAll@{GetAll}|hyperpage}{63} +\indexentry{GetAll@{GetAll}!Asset.Dependency@{Asset.Dependency}|hyperpage}{63} +\indexentry{Asset.Dependency@{Asset.Dependency}!GetDirect@{GetDirect}|hyperpage}{64} +\indexentry{GetDirect@{GetDirect}!Asset.Dependency@{Asset.Dependency}|hyperpage}{64} +\indexentry{Asset.Dependency@{Asset.Dependency}!GetDirect@{GetDirect}|hyperpage}{64} +\indexentry{GetDirect@{GetDirect}!Asset.Dependency@{Asset.Dependency}|hyperpage}{64} +\indexentry{Asset.Dependency@{Asset.Dependency}!GetHash@{GetHash}|hyperpage}{65} +\indexentry{GetHash@{GetHash}!Asset.Dependency@{Asset.Dependency}|hyperpage}{65} +\indexentry{Asset.Dependency@{Asset.Dependency}!GetHash@{GetHash}|hyperpage}{65} +\indexentry{GetHash@{GetHash}!Asset.Dependency@{Asset.Dependency}|hyperpage}{65} +\indexentry{Asset.Dependency@{Asset.Dependency}!Register@{Register}|hyperpage}{66} +\indexentry{Register@{Register}!Asset.Dependency@{Asset.Dependency}|hyperpage}{66} +\indexentry{Asset.Dependency@{Asset.Dependency}!Unregister@{Unregister}|hyperpage}{66} +\indexentry{Unregister@{Unregister}!Asset.Dependency@{Asset.Dependency}|hyperpage}{66} +\indexentry{Asset.File@{Asset.File}|hyperpage}{67} +\indexentry{Asset.File@{Asset.File}!BatchEditing@{BatchEditing}|hyperpage}{70} +\indexentry{BatchEditing@{BatchEditing}!Asset.File@{Asset.File}|hyperpage}{70} +\indexentry{Asset.File@{Asset.File}!CanMove@{CanMove}|hyperpage}{71} +\indexentry{CanMove@{CanMove}!Asset.File@{Asset.File}|hyperpage}{71} \indexentry{Asset.File@{Asset.File}!CanOpenInEditor@{CanOpenInEditor}|hyperpage}{71} \indexentry{CanOpenInEditor@{CanOpenInEditor}!Asset.File@{Asset.File}|hyperpage}{71} -\indexentry{Asset.File@{Asset.File}!Copy@{Copy}|hyperpage}{71} -\indexentry{Copy@{Copy}!Asset.File@{Asset.File}|hyperpage}{71} -\indexentry{Asset.File@{Asset.File}!CopyAsNew@{CopyAsNew}|hyperpage}{72} -\indexentry{CopyAsNew@{CopyAsNew}!Asset.File@{Asset.File}|hyperpage}{72} -\indexentry{Asset.File@{Asset.File}!Create@{Create}|hyperpage}{72} -\indexentry{Create@{Create}!Asset.File@{Asset.File}|hyperpage}{72} +\indexentry{Asset.File@{Asset.File}!CanOpenInEditor@{CanOpenInEditor}|hyperpage}{72} +\indexentry{CanOpenInEditor@{CanOpenInEditor}!Asset.File@{Asset.File}|hyperpage}{72} +\indexentry{Asset.File@{Asset.File}!Copy@{Copy}|hyperpage}{72} +\indexentry{Copy@{Copy}!Asset.File@{Asset.File}|hyperpage}{72} +\indexentry{Asset.File@{Asset.File}!CopyAsNew@{CopyAsNew}|hyperpage}{73} +\indexentry{CopyAsNew@{CopyAsNew}!Asset.File@{Asset.File}|hyperpage}{73} \indexentry{Asset.File@{Asset.File}!Create@{Create}|hyperpage}{73} \indexentry{Create@{Create}!Asset.File@{Asset.File}|hyperpage}{73} \indexentry{Asset.File@{Asset.File}!Create@{Create}|hyperpage}{74} \indexentry{Create@{Create}!Asset.File@{Asset.File}|hyperpage}{74} -\indexentry{Asset.File@{Asset.File}!CreateAsNew@{CreateAsNew}|hyperpage}{74} -\indexentry{CreateAsNew@{CreateAsNew}!Asset.File@{Asset.File}|hyperpage}{74} +\indexentry{Asset.File@{Asset.File}!Create@{Create}|hyperpage}{75} +\indexentry{Create@{Create}!Asset.File@{Asset.File}|hyperpage}{75} \indexentry{Asset.File@{Asset.File}!CreateAsNew@{CreateAsNew}|hyperpage}{75} \indexentry{CreateAsNew@{CreateAsNew}!Asset.File@{Asset.File}|hyperpage}{75} \indexentry{Asset.File@{Asset.File}!CreateAsNew@{CreateAsNew}|hyperpage}{76} \indexentry{CreateAsNew@{CreateAsNew}!Asset.File@{Asset.File}|hyperpage}{76} -\indexentry{Asset.File@{Asset.File}!CreateOrLoad$<$ T $>$@{CreateOrLoad$<$ T $>$}|hyperpage}{76} -\indexentry{CreateOrLoad$<$ T $>$@{CreateOrLoad$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{76} -\indexentry{Asset.File@{Asset.File}!Delete@{Delete}|hyperpage}{77} -\indexentry{Delete@{Delete}!Asset.File@{Asset.File}|hyperpage}{77} -\indexentry{Asset.File@{Asset.File}!Delete@{Delete}|hyperpage}{77} -\indexentry{Delete@{Delete}!Asset.File@{Asset.File}|hyperpage}{77} +\indexentry{Asset.File@{Asset.File}!CreateAsNew@{CreateAsNew}|hyperpage}{77} +\indexentry{CreateAsNew@{CreateAsNew}!Asset.File@{Asset.File}|hyperpage}{77} +\indexentry{Asset.File@{Asset.File}!CreateOrLoad$<$ T $>$@{CreateOrLoad$<$ T $>$}|hyperpage}{77} +\indexentry{CreateOrLoad$<$ T $>$@{CreateOrLoad$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{77} \indexentry{Asset.File@{Asset.File}!Delete@{Delete}|hyperpage}{78} \indexentry{Delete@{Delete}!Asset.File@{Asset.File}|hyperpage}{78} \indexentry{Asset.File@{Asset.File}!Delete@{Delete}|hyperpage}{78} \indexentry{Delete@{Delete}!Asset.File@{Asset.File}|hyperpage}{78} -\indexentry{Asset.File@{Asset.File}!Find@{Find}|hyperpage}{79} -\indexentry{Find@{Find}!Asset.File@{Asset.File}|hyperpage}{79} -\indexentry{Asset.File@{Asset.File}!FindGuids@{FindGuids}|hyperpage}{80} -\indexentry{FindGuids@{FindGuids}!Asset.File@{Asset.File}|hyperpage}{80} -\indexentry{Asset.File@{Asset.File}!FindPaths@{FindPaths}|hyperpage}{80} -\indexentry{FindPaths@{FindPaths}!Asset.File@{Asset.File}|hyperpage}{80} +\indexentry{Asset.File@{Asset.File}!Delete@{Delete}|hyperpage}{79} +\indexentry{Delete@{Delete}!Asset.File@{Asset.File}|hyperpage}{79} +\indexentry{Asset.File@{Asset.File}!Delete@{Delete}|hyperpage}{79} +\indexentry{Delete@{Delete}!Asset.File@{Asset.File}|hyperpage}{79} +\indexentry{Asset.File@{Asset.File}!Find@{Find}|hyperpage}{80} +\indexentry{Find@{Find}!Asset.File@{Asset.File}|hyperpage}{80} +\indexentry{Asset.File@{Asset.File}!FindGuids@{FindGuids}|hyperpage}{81} +\indexentry{FindGuids@{FindGuids}!Asset.File@{Asset.File}|hyperpage}{81} \indexentry{Asset.File@{Asset.File}!FindPaths@{FindPaths}|hyperpage}{81} \indexentry{FindPaths@{FindPaths}!Asset.File@{Asset.File}|hyperpage}{81} -\indexentry{Asset.File@{Asset.File}!ForceSave@{ForceSave}|hyperpage}{82} -\indexentry{ForceSave@{ForceSave}!Asset.File@{Asset.File}|hyperpage}{82} -\indexentry{Asset.File@{Asset.File}!GetFileId@{GetFileId}|hyperpage}{82} -\indexentry{GetFileId@{GetFileId}!Asset.File@{Asset.File}|hyperpage}{82} -\indexentry{Asset.File@{Asset.File}!GetGuid@{GetGuid}|hyperpage}{83} -\indexentry{GetGuid@{GetGuid}!Asset.File@{Asset.File}|hyperpage}{83} -\indexentry{Asset.File@{Asset.File}!GetGuidAndFileId@{GetGuidAndFileId}|hyperpage}{83} -\indexentry{GetGuidAndFileId@{GetGuidAndFileId}!Asset.File@{Asset.File}|hyperpage}{83} -\indexentry{Asset.File@{Asset.File}!GetMainType@{GetMainType}|hyperpage}{84} -\indexentry{GetMainType@{GetMainType}!Asset.File@{Asset.File}|hyperpage}{84} +\indexentry{Asset.File@{Asset.File}!FindPaths@{FindPaths}|hyperpage}{82} +\indexentry{FindPaths@{FindPaths}!Asset.File@{Asset.File}|hyperpage}{82} +\indexentry{Asset.File@{Asset.File}!ForceSave@{ForceSave}|hyperpage}{83} +\indexentry{ForceSave@{ForceSave}!Asset.File@{Asset.File}|hyperpage}{83} +\indexentry{Asset.File@{Asset.File}!GetFileId@{GetFileId}|hyperpage}{83} +\indexentry{GetFileId@{GetFileId}!Asset.File@{Asset.File}|hyperpage}{83} +\indexentry{Asset.File@{Asset.File}!GetGuid@{GetGuid}|hyperpage}{84} +\indexentry{GetGuid@{GetGuid}!Asset.File@{Asset.File}|hyperpage}{84} +\indexentry{Asset.File@{Asset.File}!GetGuidAndFileId@{GetGuidAndFileId}|hyperpage}{84} +\indexentry{GetGuidAndFileId@{GetGuidAndFileId}!Asset.File@{Asset.File}|hyperpage}{84} \indexentry{Asset.File@{Asset.File}!GetMainType@{GetMainType}|hyperpage}{85} \indexentry{GetMainType@{GetMainType}!Asset.File@{Asset.File}|hyperpage}{85} -\indexentry{Asset.File@{Asset.File}!GetSubType@{GetSubType}|hyperpage}{86} -\indexentry{GetSubType@{GetSubType}!Asset.File@{Asset.File}|hyperpage}{86} -\indexentry{Asset.File@{Asset.File}!Import@{Import}|hyperpage}{86} -\indexentry{Import@{Import}!Asset.File@{Asset.File}|hyperpage}{86} +\indexentry{Asset.File@{Asset.File}!GetMainType@{GetMainType}|hyperpage}{86} +\indexentry{GetMainType@{GetMainType}!Asset.File@{Asset.File}|hyperpage}{86} +\indexentry{Asset.File@{Asset.File}!GetSubType@{GetSubType}|hyperpage}{87} +\indexentry{GetSubType@{GetSubType}!Asset.File@{Asset.File}|hyperpage}{87} \indexentry{Asset.File@{Asset.File}!Import@{Import}|hyperpage}{87} \indexentry{Import@{Import}!Asset.File@{Asset.File}|hyperpage}{87} \indexentry{Asset.File@{Asset.File}!Import@{Import}|hyperpage}{88} \indexentry{Import@{Import}!Asset.File@{Asset.File}|hyperpage}{88} -\indexentry{Asset.File@{Asset.File}!ImportAndLoad$<$ T $>$@{ImportAndLoad$<$ T $>$}|hyperpage}{88} -\indexentry{ImportAndLoad$<$ T $>$@{ImportAndLoad$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{88} -\indexentry{Asset.File@{Asset.File}!Load$<$ T $>$@{Load$<$ T $>$}|hyperpage}{89} -\indexentry{Load$<$ T $>$@{Load$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{89} -\indexentry{Asset.File@{Asset.File}!LoadAsync@{LoadAsync}|hyperpage}{90} -\indexentry{LoadAsync@{LoadAsync}!Asset.File@{Asset.File}|hyperpage}{90} -\indexentry{Asset.File@{Asset.File}!LoadMain$<$ T $>$@{LoadMain$<$ T $>$}|hyperpage}{91} -\indexentry{LoadMain$<$ T $>$@{LoadMain$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{91} +\indexentry{Asset.File@{Asset.File}!Import@{Import}|hyperpage}{88} +\indexentry{Import@{Import}!Asset.File@{Asset.File}|hyperpage}{88} +\indexentry{Asset.File@{Asset.File}!ImportAndLoad$<$ T $>$@{ImportAndLoad$<$ T $>$}|hyperpage}{89} +\indexentry{ImportAndLoad$<$ T $>$@{ImportAndLoad$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{89} +\indexentry{Asset.File@{Asset.File}!Load$<$ T $>$@{Load$<$ T $>$}|hyperpage}{90} +\indexentry{Load$<$ T $>$@{Load$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{90} +\indexentry{Asset.File@{Asset.File}!LoadAsync@{LoadAsync}|hyperpage}{91} +\indexentry{LoadAsync@{LoadAsync}!Asset.File@{Asset.File}|hyperpage}{91} \indexentry{Asset.File@{Asset.File}!LoadMain$<$ T $>$@{LoadMain$<$ T $>$}|hyperpage}{92} \indexentry{LoadMain$<$ T $>$@{LoadMain$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{92} -\indexentry{Asset.File@{Asset.File}!LoadOrCreate$<$ T $>$@{LoadOrCreate$<$ T $>$}|hyperpage}{93} -\indexentry{LoadOrCreate$<$ T $>$@{LoadOrCreate$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{93} -\indexentry{Asset.File@{Asset.File}!Move@{Move}|hyperpage}{94} -\indexentry{Move@{Move}!Asset.File@{Asset.File}|hyperpage}{94} -\indexentry{Asset.File@{Asset.File}!OpenExternal@{OpenExternal}|hyperpage}{95} -\indexentry{OpenExternal@{OpenExternal}!Asset.File@{Asset.File}|hyperpage}{95} -\indexentry{Asset.File@{Asset.File}!OpenExternal@{OpenExternal}|hyperpage}{95} -\indexentry{OpenExternal@{OpenExternal}!Asset.File@{Asset.File}|hyperpage}{95} +\indexentry{Asset.File@{Asset.File}!LoadMain$<$ T $>$@{LoadMain$<$ T $>$}|hyperpage}{93} +\indexentry{LoadMain$<$ T $>$@{LoadMain$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{93} +\indexentry{Asset.File@{Asset.File}!LoadOrCreate$<$ T $>$@{LoadOrCreate$<$ T $>$}|hyperpage}{94} +\indexentry{LoadOrCreate$<$ T $>$@{LoadOrCreate$<$ T $>$}!Asset.File@{Asset.File}|hyperpage}{94} +\indexentry{Asset.File@{Asset.File}!Move@{Move}|hyperpage}{95} +\indexentry{Move@{Move}!Asset.File@{Asset.File}|hyperpage}{95} +\indexentry{Asset.File@{Asset.File}!OpenExternal@{OpenExternal}|hyperpage}{96} +\indexentry{OpenExternal@{OpenExternal}!Asset.File@{Asset.File}|hyperpage}{96} \indexentry{Asset.File@{Asset.File}!OpenExternal@{OpenExternal}|hyperpage}{96} \indexentry{OpenExternal@{OpenExternal}!Asset.File@{Asset.File}|hyperpage}{96} -\indexentry{Asset.File@{Asset.File}!Rename@{Rename}|hyperpage}{96} -\indexentry{Rename@{Rename}!Asset.File@{Asset.File}|hyperpage}{96} -\indexentry{Asset.File@{Asset.File}!Save@{Save}|hyperpage}{97} -\indexentry{Save@{Save}!Asset.File@{Asset.File}|hyperpage}{97} +\indexentry{Asset.File@{Asset.File}!OpenExternal@{OpenExternal}|hyperpage}{97} +\indexentry{OpenExternal@{OpenExternal}!Asset.File@{Asset.File}|hyperpage}{97} +\indexentry{Asset.File@{Asset.File}!Rename@{Rename}|hyperpage}{97} +\indexentry{Rename@{Rename}!Asset.File@{Asset.File}|hyperpage}{97} \indexentry{Asset.File@{Asset.File}!Save@{Save}|hyperpage}{98} \indexentry{Save@{Save}!Asset.File@{Asset.File}|hyperpage}{98} -\indexentry{Asset.File@{Asset.File}!Trash@{Trash}|hyperpage}{98} -\indexentry{Trash@{Trash}!Asset.File@{Asset.File}|hyperpage}{98} -\indexentry{Asset.File@{Asset.File}!Trash@{Trash}|hyperpage}{99} -\indexentry{Trash@{Trash}!Asset.File@{Asset.File}|hyperpage}{99} +\indexentry{Asset.File@{Asset.File}!Save@{Save}|hyperpage}{99} +\indexentry{Save@{Save}!Asset.File@{Asset.File}|hyperpage}{99} \indexentry{Asset.File@{Asset.File}!Trash@{Trash}|hyperpage}{99} \indexentry{Trash@{Trash}!Asset.File@{Asset.File}|hyperpage}{99} \indexentry{Asset.File@{Asset.File}!Trash@{Trash}|hyperpage}{100} \indexentry{Trash@{Trash}!Asset.File@{Asset.File}|hyperpage}{100} -\indexentry{Asset.File@{Asset.File}!PathsNotDeleted@{PathsNotDeleted}|hyperpage}{101} -\indexentry{PathsNotDeleted@{PathsNotDeleted}!Asset.File@{Asset.File}|hyperpage}{101} -\indexentry{Asset.Importer@{Asset.Importer}|hyperpage}{101} -\indexentry{Asset.Importer@{Asset.Importer}!ApplySettings@{ApplySettings}|hyperpage}{103} -\indexentry{ApplySettings@{ApplySettings}!Asset.Importer@{Asset.Importer}|hyperpage}{103} -\indexentry{Asset.Importer@{Asset.Importer}!ClearOverride@{ClearOverride}|hyperpage}{103} -\indexentry{ClearOverride@{ClearOverride}!Asset.Importer@{Asset.Importer}|hyperpage}{103} -\indexentry{Asset.Importer@{Asset.Importer}!GetActive@{GetActive}|hyperpage}{104} -\indexentry{GetActive@{GetActive}!Asset.Importer@{Asset.Importer}|hyperpage}{104} -\indexentry{Asset.Importer@{Asset.Importer}!GetActive@{GetActive}|hyperpage}{104} -\indexentry{GetActive@{GetActive}!Asset.Importer@{Asset.Importer}|hyperpage}{104} +\indexentry{Asset.File@{Asset.File}!Trash@{Trash}|hyperpage}{100} +\indexentry{Trash@{Trash}!Asset.File@{Asset.File}|hyperpage}{100} +\indexentry{Asset.File@{Asset.File}!Trash@{Trash}|hyperpage}{101} +\indexentry{Trash@{Trash}!Asset.File@{Asset.File}|hyperpage}{101} +\indexentry{Asset.File@{Asset.File}!PathsNotDeleted@{PathsNotDeleted}|hyperpage}{102} +\indexentry{PathsNotDeleted@{PathsNotDeleted}!Asset.File@{Asset.File}|hyperpage}{102} +\indexentry{Asset.Importer@{Asset.Importer}|hyperpage}{102} +\indexentry{Asset.Importer@{Asset.Importer}!ApplySettings@{ApplySettings}|hyperpage}{104} +\indexentry{ApplySettings@{ApplySettings}!Asset.Importer@{Asset.Importer}|hyperpage}{104} +\indexentry{Asset.Importer@{Asset.Importer}!ClearOverride@{ClearOverride}|hyperpage}{104} +\indexentry{ClearOverride@{ClearOverride}!Asset.Importer@{Asset.Importer}|hyperpage}{104} \indexentry{Asset.Importer@{Asset.Importer}!GetActive@{GetActive}|hyperpage}{105} \indexentry{GetActive@{GetActive}!Asset.Importer@{Asset.Importer}|hyperpage}{105} \indexentry{Asset.Importer@{Asset.Importer}!GetActive@{GetActive}|hyperpage}{105} \indexentry{GetActive@{GetActive}!Asset.Importer@{Asset.Importer}|hyperpage}{105} \indexentry{Asset.Importer@{Asset.Importer}!GetActive@{GetActive}|hyperpage}{106} \indexentry{GetActive@{GetActive}!Asset.Importer@{Asset.Importer}|hyperpage}{106} +\indexentry{Asset.Importer@{Asset.Importer}!GetActive@{GetActive}|hyperpage}{106} +\indexentry{GetActive@{GetActive}!Asset.Importer@{Asset.Importer}|hyperpage}{106} \indexentry{Asset.Importer@{Asset.Importer}!GetActive@{GetActive}|hyperpage}{107} \indexentry{GetActive@{GetActive}!Asset.Importer@{Asset.Importer}|hyperpage}{107} -\indexentry{Asset.Importer@{Asset.Importer}!GetAvailable@{GetAvailable}|hyperpage}{107} -\indexentry{GetAvailable@{GetAvailable}!Asset.Importer@{Asset.Importer}|hyperpage}{107} +\indexentry{Asset.Importer@{Asset.Importer}!GetActive@{GetActive}|hyperpage}{108} +\indexentry{GetActive@{GetActive}!Asset.Importer@{Asset.Importer}|hyperpage}{108} \indexentry{Asset.Importer@{Asset.Importer}!GetAvailable@{GetAvailable}|hyperpage}{108} \indexentry{GetAvailable@{GetAvailable}!Asset.Importer@{Asset.Importer}|hyperpage}{108} -\indexentry{Asset.Importer@{Asset.Importer}!GetDefault@{GetDefault}|hyperpage}{108} -\indexentry{GetDefault@{GetDefault}!Asset.Importer@{Asset.Importer}|hyperpage}{108} +\indexentry{Asset.Importer@{Asset.Importer}!GetAvailable@{GetAvailable}|hyperpage}{109} +\indexentry{GetAvailable@{GetAvailable}!Asset.Importer@{Asset.Importer}|hyperpage}{109} \indexentry{Asset.Importer@{Asset.Importer}!GetDefault@{GetDefault}|hyperpage}{109} \indexentry{GetDefault@{GetDefault}!Asset.Importer@{Asset.Importer}|hyperpage}{109} -\indexentry{Asset.Importer@{Asset.Importer}!GetOverride@{GetOverride}|hyperpage}{109} -\indexentry{GetOverride@{GetOverride}!Asset.Importer@{Asset.Importer}|hyperpage}{109} +\indexentry{Asset.Importer@{Asset.Importer}!GetDefault@{GetDefault}|hyperpage}{110} +\indexentry{GetDefault@{GetDefault}!Asset.Importer@{Asset.Importer}|hyperpage}{110} \indexentry{Asset.Importer@{Asset.Importer}!GetOverride@{GetOverride}|hyperpage}{110} \indexentry{GetOverride@{GetOverride}!Asset.Importer@{Asset.Importer}|hyperpage}{110} -\indexentry{Asset.Importer@{Asset.Importer}!IsOverridden@{IsOverridden}|hyperpage}{110} -\indexentry{IsOverridden@{IsOverridden}!Asset.Importer@{Asset.Importer}|hyperpage}{110} -\indexentry{Asset.Importer@{Asset.Importer}!SetOverride$<$ T $>$@{SetOverride$<$ T $>$}|hyperpage}{111} -\indexentry{SetOverride$<$ T $>$@{SetOverride$<$ T $>$}!Asset.Importer@{Asset.Importer}|hyperpage}{111} -\indexentry{Asset.Label@{Asset.Label}|hyperpage}{112} -\indexentry{Asset.Label@{Asset.Label}!Add@{Add}|hyperpage}{113} -\indexentry{Add@{Add}!Asset.Label@{Asset.Label}|hyperpage}{113} +\indexentry{Asset.Importer@{Asset.Importer}!GetOverride@{GetOverride}|hyperpage}{111} +\indexentry{GetOverride@{GetOverride}!Asset.Importer@{Asset.Importer}|hyperpage}{111} +\indexentry{Asset.Importer@{Asset.Importer}!IsOverridden@{IsOverridden}|hyperpage}{111} +\indexentry{IsOverridden@{IsOverridden}!Asset.Importer@{Asset.Importer}|hyperpage}{111} +\indexentry{Asset.Importer@{Asset.Importer}!SetOverride$<$ T $>$@{SetOverride$<$ T $>$}|hyperpage}{112} +\indexentry{SetOverride$<$ T $>$@{SetOverride$<$ T $>$}!Asset.Importer@{Asset.Importer}|hyperpage}{112} +\indexentry{Asset.Label@{Asset.Label}|hyperpage}{113} \indexentry{Asset.Label@{Asset.Label}!Add@{Add}|hyperpage}{114} \indexentry{Add@{Add}!Asset.Label@{Asset.Label}|hyperpage}{114} -\indexentry{Asset.Label@{Asset.Label}!ClearAll@{ClearAll}|hyperpage}{114} -\indexentry{ClearAll@{ClearAll}!Asset.Label@{Asset.Label}|hyperpage}{114} -\indexentry{Asset.Label@{Asset.Label}!GetAll@{GetAll}|hyperpage}{115} -\indexentry{GetAll@{GetAll}!Asset.Label@{Asset.Label}|hyperpage}{115} -\indexentry{Asset.Label@{Asset.Label}!GetAll@{GetAll}|hyperpage}{116} -\indexentry{GetAll@{GetAll}!Asset.Label@{Asset.Label}|hyperpage}{116} +\indexentry{Asset.Label@{Asset.Label}!Add@{Add}|hyperpage}{115} +\indexentry{Add@{Add}!Asset.Label@{Asset.Label}|hyperpage}{115} +\indexentry{Asset.Label@{Asset.Label}!ClearAll@{ClearAll}|hyperpage}{115} +\indexentry{ClearAll@{ClearAll}!Asset.Label@{Asset.Label}|hyperpage}{115} \indexentry{Asset.Label@{Asset.Label}!GetAll@{GetAll}|hyperpage}{116} \indexentry{GetAll@{GetAll}!Asset.Label@{Asset.Label}|hyperpage}{116} -\indexentry{Asset.Label@{Asset.Label}!Remove@{Remove}|hyperpage}{117} -\indexentry{Remove@{Remove}!Asset.Label@{Asset.Label}|hyperpage}{117} -\indexentry{Asset.Label@{Asset.Label}!SetAll@{SetAll}|hyperpage}{118} -\indexentry{SetAll@{SetAll}!Asset.Label@{Asset.Label}|hyperpage}{118} -\indexentry{Asset.Package@{Asset.Package}|hyperpage}{119} -\indexentry{Asset.Package@{Asset.Package}!Export@{Export}|hyperpage}{119} -\indexentry{Export@{Export}!Asset.Package@{Asset.Package}|hyperpage}{119} -\indexentry{Asset.Package@{Asset.Package}!Export@{Export}|hyperpage}{120} -\indexentry{Export@{Export}!Asset.Package@{Asset.Package}|hyperpage}{120} +\indexentry{Asset.Label@{Asset.Label}!GetAll@{GetAll}|hyperpage}{117} +\indexentry{GetAll@{GetAll}!Asset.Label@{Asset.Label}|hyperpage}{117} +\indexentry{Asset.Label@{Asset.Label}!GetAll@{GetAll}|hyperpage}{117} +\indexentry{GetAll@{GetAll}!Asset.Label@{Asset.Label}|hyperpage}{117} +\indexentry{Asset.Label@{Asset.Label}!Remove@{Remove}|hyperpage}{118} +\indexentry{Remove@{Remove}!Asset.Label@{Asset.Label}|hyperpage}{118} +\indexentry{Asset.Label@{Asset.Label}!SetAll@{SetAll}|hyperpage}{119} +\indexentry{SetAll@{SetAll}!Asset.Label@{Asset.Label}|hyperpage}{119} +\indexentry{Asset.Package@{Asset.Package}|hyperpage}{120} \indexentry{Asset.Package@{Asset.Package}!Export@{Export}|hyperpage}{120} \indexentry{Export@{Export}!Asset.Package@{Asset.Package}|hyperpage}{120} -\indexentry{Asset.Package@{Asset.Package}!Import@{Import}|hyperpage}{121} -\indexentry{Import@{Import}!Asset.Package@{Asset.Package}|hyperpage}{121} -\indexentry{Asset.Package@{Asset.Package}!ImportInteractive@{ImportInteractive}|hyperpage}{121} -\indexentry{ImportInteractive@{ImportInteractive}!Asset.Package@{Asset.Package}|hyperpage}{121} -\indexentry{Asset.Path@{Asset.Path}|hyperpage}{122} -\indexentry{Asset.Path@{Asset.Path}!Path@{Path}|hyperpage}{127} -\indexentry{Path@{Path}!Asset.Path@{Asset.Path}|hyperpage}{127} -\indexentry{Asset.Path@{Asset.Path}!Path@{Path}|hyperpage}{128} -\indexentry{Path@{Path}!Asset.Path@{Asset.Path}|hyperpage}{128} +\indexentry{Asset.Package@{Asset.Package}!Export@{Export}|hyperpage}{121} +\indexentry{Export@{Export}!Asset.Package@{Asset.Package}|hyperpage}{121} +\indexentry{Asset.Package@{Asset.Package}!Export@{Export}|hyperpage}{121} +\indexentry{Export@{Export}!Asset.Package@{Asset.Package}|hyperpage}{121} +\indexentry{Asset.Package@{Asset.Package}!Import@{Import}|hyperpage}{122} +\indexentry{Import@{Import}!Asset.Package@{Asset.Package}|hyperpage}{122} +\indexentry{Asset.Package@{Asset.Package}!ImportInteractive@{ImportInteractive}|hyperpage}{122} +\indexentry{ImportInteractive@{ImportInteractive}!Asset.Package@{Asset.Package}|hyperpage}{122} +\indexentry{Asset.Path@{Asset.Path}|hyperpage}{123} \indexentry{Asset.Path@{Asset.Path}!Path@{Path}|hyperpage}{128} \indexentry{Path@{Path}!Asset.Path@{Asset.Path}|hyperpage}{128} -\indexentry{Asset.Path@{Asset.Path}!CreateFolders@{CreateFolders}|hyperpage}{129} -\indexentry{CreateFolders@{CreateFolders}!Asset.Path@{Asset.Path}|hyperpage}{129} -\indexentry{Asset.Path@{Asset.Path}!CreateFolders@{CreateFolders}|hyperpage}{129} -\indexentry{CreateFolders@{CreateFolders}!Asset.Path@{Asset.Path}|hyperpage}{129} -\indexentry{Asset.Path@{Asset.Path}!Equals@{Equals}|hyperpage}{131} -\indexentry{Equals@{Equals}!Asset.Path@{Asset.Path}|hyperpage}{131} -\indexentry{Asset.Path@{Asset.Path}!Equals@{Equals}|hyperpage}{132} -\indexentry{Equals@{Equals}!Asset.Path@{Asset.Path}|hyperpage}{132} +\indexentry{Asset.Path@{Asset.Path}!Path@{Path}|hyperpage}{129} +\indexentry{Path@{Path}!Asset.Path@{Asset.Path}|hyperpage}{129} +\indexentry{Asset.Path@{Asset.Path}!Path@{Path}|hyperpage}{129} +\indexentry{Path@{Path}!Asset.Path@{Asset.Path}|hyperpage}{129} +\indexentry{Asset.Path@{Asset.Path}!CreateFolders@{CreateFolders}|hyperpage}{130} +\indexentry{CreateFolders@{CreateFolders}!Asset.Path@{Asset.Path}|hyperpage}{130} +\indexentry{Asset.Path@{Asset.Path}!CreateFolders@{CreateFolders}|hyperpage}{130} +\indexentry{CreateFolders@{CreateFolders}!Asset.Path@{Asset.Path}|hyperpage}{130} \indexentry{Asset.Path@{Asset.Path}!Equals@{Equals}|hyperpage}{132} \indexentry{Equals@{Equals}!Asset.Path@{Asset.Path}|hyperpage}{132} -\indexentry{Asset.Path@{Asset.Path}!FileExists@{FileExists}|hyperpage}{133} -\indexentry{FileExists@{FileExists}!Asset.Path@{Asset.Path}|hyperpage}{133} -\indexentry{Asset.Path@{Asset.Path}!FolderExists@{FolderExists}|hyperpage}{134} -\indexentry{FolderExists@{FolderExists}!Asset.Path@{Asset.Path}|hyperpage}{134} -\indexentry{Asset.Path@{Asset.Path}!FromMeta@{FromMeta}|hyperpage}{134} -\indexentry{FromMeta@{FromMeta}!Asset.Path@{Asset.Path}|hyperpage}{134} -\indexentry{Asset.Path@{Asset.Path}!Get@{Get}|hyperpage}{135} -\indexentry{Get@{Get}!Asset.Path@{Asset.Path}|hyperpage}{135} +\indexentry{Asset.Path@{Asset.Path}!Equals@{Equals}|hyperpage}{133} +\indexentry{Equals@{Equals}!Asset.Path@{Asset.Path}|hyperpage}{133} +\indexentry{Asset.Path@{Asset.Path}!Equals@{Equals}|hyperpage}{133} +\indexentry{Equals@{Equals}!Asset.Path@{Asset.Path}|hyperpage}{133} +\indexentry{Asset.Path@{Asset.Path}!FileExists@{FileExists}|hyperpage}{134} +\indexentry{FileExists@{FileExists}!Asset.Path@{Asset.Path}|hyperpage}{134} +\indexentry{Asset.Path@{Asset.Path}!FolderExists@{FolderExists}|hyperpage}{135} +\indexentry{FolderExists@{FolderExists}!Asset.Path@{Asset.Path}|hyperpage}{135} +\indexentry{Asset.Path@{Asset.Path}!FromMeta@{FromMeta}|hyperpage}{135} +\indexentry{FromMeta@{FromMeta}!Asset.Path@{Asset.Path}|hyperpage}{135} \indexentry{Asset.Path@{Asset.Path}!Get@{Get}|hyperpage}{136} \indexentry{Get@{Get}!Asset.Path@{Asset.Path}|hyperpage}{136} \indexentry{Asset.Path@{Asset.Path}!Get@{Get}|hyperpage}{137} \indexentry{Get@{Get}!Asset.Path@{Asset.Path}|hyperpage}{137} -\indexentry{Asset.Path@{Asset.Path}!GetGuid@{GetGuid}|hyperpage}{137} -\indexentry{GetGuid@{GetGuid}!Asset.Path@{Asset.Path}|hyperpage}{137} -\indexentry{Asset.Path@{Asset.Path}!GetHashCode@{GetHashCode}|hyperpage}{138} -\indexentry{GetHashCode@{GetHashCode}!Asset.Path@{Asset.Path}|hyperpage}{138} -\indexentry{Asset.Path@{Asset.Path}!GetScene@{GetScene}|hyperpage}{138} -\indexentry{GetScene@{GetScene}!Asset.Path@{Asset.Path}|hyperpage}{138} -\indexentry{Asset.Path@{Asset.Path}!GetSubFolders@{GetSubFolders}|hyperpage}{139} -\indexentry{GetSubFolders@{GetSubFolders}!Asset.Path@{Asset.Path}|hyperpage}{139} -\indexentry{Asset.Path@{Asset.Path}!IsValid@{IsValid}|hyperpage}{139} -\indexentry{IsValid@{IsValid}!Asset.Path@{Asset.Path}|hyperpage}{139} -\indexentry{Asset.Path@{Asset.Path}!OpenExternal@{OpenExternal}|hyperpage}{140} -\indexentry{OpenExternal@{OpenExternal}!Asset.Path@{Asset.Path}|hyperpage}{140} -\indexentry{Asset.Path@{Asset.Path}!operator Path@{operator Path}|hyperpage}{140} -\indexentry{operator Path@{operator Path}!Asset.Path@{Asset.Path}|hyperpage}{140} -\indexentry{Asset.Path@{Asset.Path}!operator String@{operator String}|hyperpage}{141} -\indexentry{operator String@{operator String}!Asset.Path@{Asset.Path}|hyperpage}{141} -\indexentry{Asset.Path@{Asset.Path}!operator"!=@{operator"!=}|hyperpage}{141} -\indexentry{operator"!=@{operator"!=}!Asset.Path@{Asset.Path}|hyperpage}{141} -\indexentry{Asset.Path@{Asset.Path}!operator"!=@{operator"!=}|hyperpage}{141} -\indexentry{operator"!=@{operator"!=}!Asset.Path@{Asset.Path}|hyperpage}{141} +\indexentry{Asset.Path@{Asset.Path}!Get@{Get}|hyperpage}{138} +\indexentry{Get@{Get}!Asset.Path@{Asset.Path}|hyperpage}{138} +\indexentry{Asset.Path@{Asset.Path}!GetGuid@{GetGuid}|hyperpage}{138} +\indexentry{GetGuid@{GetGuid}!Asset.Path@{Asset.Path}|hyperpage}{138} +\indexentry{Asset.Path@{Asset.Path}!GetHashCode@{GetHashCode}|hyperpage}{139} +\indexentry{GetHashCode@{GetHashCode}!Asset.Path@{Asset.Path}|hyperpage}{139} +\indexentry{Asset.Path@{Asset.Path}!GetScene@{GetScene}|hyperpage}{139} +\indexentry{GetScene@{GetScene}!Asset.Path@{Asset.Path}|hyperpage}{139} +\indexentry{Asset.Path@{Asset.Path}!GetSubFolders@{GetSubFolders}|hyperpage}{140} +\indexentry{GetSubFolders@{GetSubFolders}!Asset.Path@{Asset.Path}|hyperpage}{140} +\indexentry{Asset.Path@{Asset.Path}!IsValid@{IsValid}|hyperpage}{140} +\indexentry{IsValid@{IsValid}!Asset.Path@{Asset.Path}|hyperpage}{140} +\indexentry{Asset.Path@{Asset.Path}!OpenExternal@{OpenExternal}|hyperpage}{141} +\indexentry{OpenExternal@{OpenExternal}!Asset.Path@{Asset.Path}|hyperpage}{141} +\indexentry{Asset.Path@{Asset.Path}!operator Path@{operator Path}|hyperpage}{141} +\indexentry{operator Path@{operator Path}!Asset.Path@{Asset.Path}|hyperpage}{141} +\indexentry{Asset.Path@{Asset.Path}!operator String@{operator String}|hyperpage}{142} +\indexentry{operator String@{operator String}!Asset.Path@{Asset.Path}|hyperpage}{142} \indexentry{Asset.Path@{Asset.Path}!operator"!=@{operator"!=}|hyperpage}{142} \indexentry{operator"!=@{operator"!=}!Asset.Path@{Asset.Path}|hyperpage}{142} -\indexentry{Asset.Path@{Asset.Path}!operator==@{operator==}|hyperpage}{142} -\indexentry{operator==@{operator==}!Asset.Path@{Asset.Path}|hyperpage}{142} -\indexentry{Asset.Path@{Asset.Path}!operator==@{operator==}|hyperpage}{143} -\indexentry{operator==@{operator==}!Asset.Path@{Asset.Path}|hyperpage}{143} +\indexentry{Asset.Path@{Asset.Path}!operator"!=@{operator"!=}|hyperpage}{142} +\indexentry{operator"!=@{operator"!=}!Asset.Path@{Asset.Path}|hyperpage}{142} +\indexentry{Asset.Path@{Asset.Path}!operator"!=@{operator"!=}|hyperpage}{143} +\indexentry{operator"!=@{operator"!=}!Asset.Path@{Asset.Path}|hyperpage}{143} \indexentry{Asset.Path@{Asset.Path}!operator==@{operator==}|hyperpage}{143} \indexentry{operator==@{operator==}!Asset.Path@{Asset.Path}|hyperpage}{143} -\indexentry{Asset.Path@{Asset.Path}!Rename@{Rename}|hyperpage}{144} -\indexentry{Rename@{Rename}!Asset.Path@{Asset.Path}|hyperpage}{144} -\indexentry{Asset.Path@{Asset.Path}!ToMeta@{ToMeta}|hyperpage}{144} -\indexentry{ToMeta@{ToMeta}!Asset.Path@{Asset.Path}|hyperpage}{144} -\indexentry{Asset.Path@{Asset.Path}!ToString@{ToString}|hyperpage}{144} -\indexentry{ToString@{ToString}!Asset.Path@{Asset.Path}|hyperpage}{144} -\indexentry{Asset.Path@{Asset.Path}!ToStrings@{ToStrings}|hyperpage}{145} -\indexentry{ToStrings@{ToStrings}!Asset.Path@{Asset.Path}|hyperpage}{145} -\indexentry{Asset.Path@{Asset.Path}!UniquifyFileName@{UniquifyFileName}|hyperpage}{145} -\indexentry{UniquifyFileName@{UniquifyFileName}!Asset.Path@{Asset.Path}|hyperpage}{145} -\indexentry{Asset.Path@{Asset.Path}!AssetPath@{AssetPath}|hyperpage}{146} -\indexentry{AssetPath@{AssetPath}!Asset.Path@{Asset.Path}|hyperpage}{146} -\indexentry{Asset.Path@{Asset.Path}!Exists@{Exists}|hyperpage}{146} -\indexentry{Exists@{Exists}!Asset.Path@{Asset.Path}|hyperpage}{146} -\indexentry{Asset.Path@{Asset.Path}!ExistsInFileSystem@{ExistsInFileSystem}|hyperpage}{146} -\indexentry{ExistsInFileSystem@{ExistsInFileSystem}!Asset.Path@{Asset.Path}|hyperpage}{146} -\indexentry{Asset.Path@{Asset.Path}!Extension@{Extension}|hyperpage}{147} -\indexentry{Extension@{Extension}!Asset.Path@{Asset.Path}|hyperpage}{147} -\indexentry{Asset.Path@{Asset.Path}!FileName@{FileName}|hyperpage}{147} -\indexentry{FileName@{FileName}!Asset.Path@{Asset.Path}|hyperpage}{147} -\indexentry{Asset.Path@{Asset.Path}!FileNameWithoutExtension@{FileNameWithoutExtension}|hyperpage}{147} -\indexentry{FileNameWithoutExtension@{FileNameWithoutExtension}!Asset.Path@{Asset.Path}|hyperpage}{147} -\indexentry{Asset.Path@{Asset.Path}!FolderPath@{FolderPath}|hyperpage}{148} -\indexentry{FolderPath@{FolderPath}!Asset.Path@{Asset.Path}|hyperpage}{148} -\indexentry{Asset.Path@{Asset.Path}!FullAssetsPath@{FullAssetsPath}|hyperpage}{148} -\indexentry{FullAssetsPath@{FullAssetsPath}!Asset.Path@{Asset.Path}|hyperpage}{148} -\indexentry{Asset.Path@{Asset.Path}!FullLibraryPath@{FullLibraryPath}|hyperpage}{148} -\indexentry{FullLibraryPath@{FullLibraryPath}!Asset.Path@{Asset.Path}|hyperpage}{148} -\indexentry{Asset.Path@{Asset.Path}!FullLogsPath@{FullLogsPath}|hyperpage}{149} -\indexentry{FullLogsPath@{FullLogsPath}!Asset.Path@{Asset.Path}|hyperpage}{149} -\indexentry{Asset.Path@{Asset.Path}!FullPackagesPath@{FullPackagesPath}|hyperpage}{149} -\indexentry{FullPackagesPath@{FullPackagesPath}!Asset.Path@{Asset.Path}|hyperpage}{149} -\indexentry{Asset.Path@{Asset.Path}!FullPath@{FullPath}|hyperpage}{149} -\indexentry{FullPath@{FullPath}!Asset.Path@{Asset.Path}|hyperpage}{149} -\indexentry{Asset.Path@{Asset.Path}!FullProjectPath@{FullProjectPath}|hyperpage}{149} -\indexentry{FullProjectPath@{FullProjectPath}!Asset.Path@{Asset.Path}|hyperpage}{149} -\indexentry{Asset.Path@{Asset.Path}!FullProjectSettingsPath@{FullProjectSettingsPath}|hyperpage}{149} -\indexentry{FullProjectSettingsPath@{FullProjectSettingsPath}!Asset.Path@{Asset.Path}|hyperpage}{149} -\indexentry{Asset.Path@{Asset.Path}!FullProjectTempPath@{FullProjectTempPath}|hyperpage}{150} -\indexentry{FullProjectTempPath@{FullProjectTempPath}!Asset.Path@{Asset.Path}|hyperpage}{150} -\indexentry{Asset.Path@{Asset.Path}!FullUserSettingsPath@{FullUserSettingsPath}|hyperpage}{150} -\indexentry{FullUserSettingsPath@{FullUserSettingsPath}!Asset.Path@{Asset.Path}|hyperpage}{150} -\indexentry{Asset.Path@{Asset.Path}!Guid@{Guid}|hyperpage}{150} -\indexentry{Guid@{Guid}!Asset.Path@{Asset.Path}|hyperpage}{150} -\indexentry{Asset.Path@{Asset.Path}!MetaPath@{MetaPath}|hyperpage}{150} -\indexentry{MetaPath@{MetaPath}!Asset.Path@{Asset.Path}|hyperpage}{150} -\indexentry{Asset.Path@{Asset.Path}!SubFolders@{SubFolders}|hyperpage}{151} -\indexentry{SubFolders@{SubFolders}!Asset.Path@{Asset.Path}|hyperpage}{151} -\indexentry{Asset.Path@{Asset.Path}!UniqueFilePath@{UniqueFilePath}|hyperpage}{151} -\indexentry{UniqueFilePath@{UniqueFilePath}!Asset.Path@{Asset.Path}|hyperpage}{151} -\indexentry{Asset.Status@{Asset.Status}|hyperpage}{152} -\indexentry{Asset.Status@{Asset.Status}!IsForeign@{IsForeign}|hyperpage}{153} -\indexentry{IsForeign@{IsForeign}!Asset.Status@{Asset.Status}|hyperpage}{153} -\indexentry{Asset.Status@{Asset.Status}!IsImported@{IsImported}|hyperpage}{153} -\indexentry{IsImported@{IsImported}!Asset.Status@{Asset.Status}|hyperpage}{153} +\indexentry{Asset.Path@{Asset.Path}!operator==@{operator==}|hyperpage}{144} +\indexentry{operator==@{operator==}!Asset.Path@{Asset.Path}|hyperpage}{144} +\indexentry{Asset.Path@{Asset.Path}!operator==@{operator==}|hyperpage}{144} +\indexentry{operator==@{operator==}!Asset.Path@{Asset.Path}|hyperpage}{144} +\indexentry{Asset.Path@{Asset.Path}!Rename@{Rename}|hyperpage}{145} +\indexentry{Rename@{Rename}!Asset.Path@{Asset.Path}|hyperpage}{145} +\indexentry{Asset.Path@{Asset.Path}!ToMeta@{ToMeta}|hyperpage}{145} +\indexentry{ToMeta@{ToMeta}!Asset.Path@{Asset.Path}|hyperpage}{145} +\indexentry{Asset.Path@{Asset.Path}!ToString@{ToString}|hyperpage}{145} +\indexentry{ToString@{ToString}!Asset.Path@{Asset.Path}|hyperpage}{145} +\indexentry{Asset.Path@{Asset.Path}!ToStrings@{ToStrings}|hyperpage}{146} +\indexentry{ToStrings@{ToStrings}!Asset.Path@{Asset.Path}|hyperpage}{146} +\indexentry{Asset.Path@{Asset.Path}!UniquifyFileName@{UniquifyFileName}|hyperpage}{146} +\indexentry{UniquifyFileName@{UniquifyFileName}!Asset.Path@{Asset.Path}|hyperpage}{146} +\indexentry{Asset.Path@{Asset.Path}!AssetPath@{AssetPath}|hyperpage}{147} +\indexentry{AssetPath@{AssetPath}!Asset.Path@{Asset.Path}|hyperpage}{147} +\indexentry{Asset.Path@{Asset.Path}!Exists@{Exists}|hyperpage}{147} +\indexentry{Exists@{Exists}!Asset.Path@{Asset.Path}|hyperpage}{147} +\indexentry{Asset.Path@{Asset.Path}!ExistsInFileSystem@{ExistsInFileSystem}|hyperpage}{147} +\indexentry{ExistsInFileSystem@{ExistsInFileSystem}!Asset.Path@{Asset.Path}|hyperpage}{147} +\indexentry{Asset.Path@{Asset.Path}!Extension@{Extension}|hyperpage}{148} +\indexentry{Extension@{Extension}!Asset.Path@{Asset.Path}|hyperpage}{148} +\indexentry{Asset.Path@{Asset.Path}!FileName@{FileName}|hyperpage}{148} +\indexentry{FileName@{FileName}!Asset.Path@{Asset.Path}|hyperpage}{148} +\indexentry{Asset.Path@{Asset.Path}!FileNameWithoutExtension@{FileNameWithoutExtension}|hyperpage}{148} +\indexentry{FileNameWithoutExtension@{FileNameWithoutExtension}!Asset.Path@{Asset.Path}|hyperpage}{148} +\indexentry{Asset.Path@{Asset.Path}!FolderPath@{FolderPath}|hyperpage}{149} +\indexentry{FolderPath@{FolderPath}!Asset.Path@{Asset.Path}|hyperpage}{149} +\indexentry{Asset.Path@{Asset.Path}!FullAssetsPath@{FullAssetsPath}|hyperpage}{149} +\indexentry{FullAssetsPath@{FullAssetsPath}!Asset.Path@{Asset.Path}|hyperpage}{149} +\indexentry{Asset.Path@{Asset.Path}!FullLibraryPath@{FullLibraryPath}|hyperpage}{149} +\indexentry{FullLibraryPath@{FullLibraryPath}!Asset.Path@{Asset.Path}|hyperpage}{149} +\indexentry{Asset.Path@{Asset.Path}!FullLogsPath@{FullLogsPath}|hyperpage}{150} +\indexentry{FullLogsPath@{FullLogsPath}!Asset.Path@{Asset.Path}|hyperpage}{150} +\indexentry{Asset.Path@{Asset.Path}!FullPackagesPath@{FullPackagesPath}|hyperpage}{150} +\indexentry{FullPackagesPath@{FullPackagesPath}!Asset.Path@{Asset.Path}|hyperpage}{150} +\indexentry{Asset.Path@{Asset.Path}!FullPath@{FullPath}|hyperpage}{150} +\indexentry{FullPath@{FullPath}!Asset.Path@{Asset.Path}|hyperpage}{150} +\indexentry{Asset.Path@{Asset.Path}!FullProjectPath@{FullProjectPath}|hyperpage}{150} +\indexentry{FullProjectPath@{FullProjectPath}!Asset.Path@{Asset.Path}|hyperpage}{150} +\indexentry{Asset.Path@{Asset.Path}!FullProjectSettingsPath@{FullProjectSettingsPath}|hyperpage}{150} +\indexentry{FullProjectSettingsPath@{FullProjectSettingsPath}!Asset.Path@{Asset.Path}|hyperpage}{150} +\indexentry{Asset.Path@{Asset.Path}!FullProjectTempPath@{FullProjectTempPath}|hyperpage}{151} +\indexentry{FullProjectTempPath@{FullProjectTempPath}!Asset.Path@{Asset.Path}|hyperpage}{151} +\indexentry{Asset.Path@{Asset.Path}!FullUserSettingsPath@{FullUserSettingsPath}|hyperpage}{151} +\indexentry{FullUserSettingsPath@{FullUserSettingsPath}!Asset.Path@{Asset.Path}|hyperpage}{151} +\indexentry{Asset.Path@{Asset.Path}!Guid@{Guid}|hyperpage}{151} +\indexentry{Guid@{Guid}!Asset.Path@{Asset.Path}|hyperpage}{151} +\indexentry{Asset.Path@{Asset.Path}!MetaPath@{MetaPath}|hyperpage}{151} +\indexentry{MetaPath@{MetaPath}!Asset.Path@{Asset.Path}|hyperpage}{151} +\indexentry{Asset.Path@{Asset.Path}!SubFolders@{SubFolders}|hyperpage}{152} +\indexentry{SubFolders@{SubFolders}!Asset.Path@{Asset.Path}|hyperpage}{152} +\indexentry{Asset.Path@{Asset.Path}!UniqueFilePath@{UniqueFilePath}|hyperpage}{152} +\indexentry{UniqueFilePath@{UniqueFilePath}!Asset.Path@{Asset.Path}|hyperpage}{152} +\indexentry{Asset.Status@{Asset.Status}|hyperpage}{153} +\indexentry{Asset.Status@{Asset.Status}!IsForeign@{IsForeign}|hyperpage}{154} +\indexentry{IsForeign@{IsForeign}!Asset.Status@{Asset.Status}|hyperpage}{154} \indexentry{Asset.Status@{Asset.Status}!IsImported@{IsImported}|hyperpage}{154} \indexentry{IsImported@{IsImported}!Asset.Status@{Asset.Status}|hyperpage}{154} -\indexentry{Asset.Status@{Asset.Status}!IsLoaded@{IsLoaded}|hyperpage}{154} -\indexentry{IsLoaded@{IsLoaded}!Asset.Status@{Asset.Status}|hyperpage}{154} -\indexentry{Asset.Status@{Asset.Status}!IsMain@{IsMain}|hyperpage}{155} -\indexentry{IsMain@{IsMain}!Asset.Status@{Asset.Status}|hyperpage}{155} -\indexentry{Asset.Status@{Asset.Status}!IsNative@{IsNative}|hyperpage}{155} -\indexentry{IsNative@{IsNative}!Asset.Status@{Asset.Status}|hyperpage}{155} -\indexentry{Asset.Status@{Asset.Status}!IsScene@{IsScene}|hyperpage}{156} -\indexentry{IsScene@{IsScene}!Asset.Status@{Asset.Status}|hyperpage}{156} -\indexentry{Asset.Status@{Asset.Status}!IsSub@{IsSub}|hyperpage}{156} -\indexentry{IsSub@{IsSub}!Asset.Status@{Asset.Status}|hyperpage}{156} -\indexentry{Asset.SubAsset@{Asset.SubAsset}|hyperpage}{157} -\indexentry{Asset.SubAsset@{Asset.SubAsset}!Add@{Add}|hyperpage}{158} -\indexentry{Add@{Add}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{158} -\indexentry{Asset.SubAsset@{Asset.SubAsset}!Extract@{Extract}|hyperpage}{158} -\indexentry{Extract@{Extract}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{158} -\indexentry{Asset.SubAsset@{Asset.SubAsset}!LoadAll@{LoadAll}|hyperpage}{159} -\indexentry{LoadAll@{LoadAll}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{159} -\indexentry{Asset.SubAsset@{Asset.SubAsset}!LoadVisible@{LoadVisible}|hyperpage}{159} -\indexentry{LoadVisible@{LoadVisible}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{159} -\indexentry{Asset.SubAsset@{Asset.SubAsset}!Remove@{Remove}|hyperpage}{160} -\indexentry{Remove@{Remove}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{160} -\indexentry{Asset.SubAsset@{Asset.SubAsset}!SetMain@{SetMain}|hyperpage}{161} -\indexentry{SetMain@{SetMain}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{161} -\indexentry{Asset.SubAsset@{Asset.SubAsset}!SetMain@{SetMain}|hyperpage}{161} -\indexentry{SetMain@{SetMain}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{161} -\indexentry{Asset.VersionControl@{Asset.VersionControl}|hyperpage}{162} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!CanMakeEditable@{CanMakeEditable}|hyperpage}{164} -\indexentry{CanMakeEditable@{CanMakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{164} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!CanMakeEditable@{CanMakeEditable}|hyperpage}{164} -\indexentry{CanMakeEditable@{CanMakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{164} +\indexentry{Asset.Status@{Asset.Status}!IsImported@{IsImported}|hyperpage}{155} +\indexentry{IsImported@{IsImported}!Asset.Status@{Asset.Status}|hyperpage}{155} +\indexentry{Asset.Status@{Asset.Status}!IsLoaded@{IsLoaded}|hyperpage}{155} +\indexentry{IsLoaded@{IsLoaded}!Asset.Status@{Asset.Status}|hyperpage}{155} +\indexentry{Asset.Status@{Asset.Status}!IsMain@{IsMain}|hyperpage}{156} +\indexentry{IsMain@{IsMain}!Asset.Status@{Asset.Status}|hyperpage}{156} +\indexentry{Asset.Status@{Asset.Status}!IsNative@{IsNative}|hyperpage}{156} +\indexentry{IsNative@{IsNative}!Asset.Status@{Asset.Status}|hyperpage}{156} +\indexentry{Asset.Status@{Asset.Status}!IsScene@{IsScene}|hyperpage}{157} +\indexentry{IsScene@{IsScene}!Asset.Status@{Asset.Status}|hyperpage}{157} +\indexentry{Asset.Status@{Asset.Status}!IsSub@{IsSub}|hyperpage}{157} +\indexentry{IsSub@{IsSub}!Asset.Status@{Asset.Status}|hyperpage}{157} +\indexentry{Asset.SubAsset@{Asset.SubAsset}|hyperpage}{158} +\indexentry{Asset.SubAsset@{Asset.SubAsset}!Add@{Add}|hyperpage}{159} +\indexentry{Add@{Add}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{159} +\indexentry{Asset.SubAsset@{Asset.SubAsset}!Extract@{Extract}|hyperpage}{159} +\indexentry{Extract@{Extract}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{159} +\indexentry{Asset.SubAsset@{Asset.SubAsset}!LoadAll@{LoadAll}|hyperpage}{160} +\indexentry{LoadAll@{LoadAll}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{160} +\indexentry{Asset.SubAsset@{Asset.SubAsset}!LoadVisible@{LoadVisible}|hyperpage}{160} +\indexentry{LoadVisible@{LoadVisible}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{160} +\indexentry{Asset.SubAsset@{Asset.SubAsset}!Remove@{Remove}|hyperpage}{161} +\indexentry{Remove@{Remove}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{161} +\indexentry{Asset.SubAsset@{Asset.SubAsset}!SetMain@{SetMain}|hyperpage}{162} +\indexentry{SetMain@{SetMain}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{162} +\indexentry{Asset.SubAsset@{Asset.SubAsset}!SetMain@{SetMain}|hyperpage}{162} +\indexentry{SetMain@{SetMain}!Asset.SubAsset@{Asset.SubAsset}|hyperpage}{162} +\indexentry{Asset.VersionControl@{Asset.VersionControl}|hyperpage}{163} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!CanMakeEditable@{CanMakeEditable}|hyperpage}{165} +\indexentry{CanMakeEditable@{CanMakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{165} \indexentry{Asset.VersionControl@{Asset.VersionControl}!CanMakeEditable@{CanMakeEditable}|hyperpage}{165} \indexentry{CanMakeEditable@{CanMakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{165} \indexentry{Asset.VersionControl@{Asset.VersionControl}!CanMakeEditable@{CanMakeEditable}|hyperpage}{166} \indexentry{CanMakeEditable@{CanMakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{166} \indexentry{Asset.VersionControl@{Asset.VersionControl}!CanMakeEditable@{CanMakeEditable}|hyperpage}{167} \indexentry{CanMakeEditable@{CanMakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{167} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!IsEditable@{IsEditable}|hyperpage}{167} -\indexentry{IsEditable@{IsEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{167} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!IsEditable@{IsEditable}|hyperpage}{168} -\indexentry{IsEditable@{IsEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{168} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!CanMakeEditable@{CanMakeEditable}|hyperpage}{168} +\indexentry{CanMakeEditable@{CanMakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{168} \indexentry{Asset.VersionControl@{Asset.VersionControl}!IsEditable@{IsEditable}|hyperpage}{168} \indexentry{IsEditable@{IsEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{168} \indexentry{Asset.VersionControl@{Asset.VersionControl}!IsEditable@{IsEditable}|hyperpage}{169} \indexentry{IsEditable@{IsEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{169} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!IsMetaEditable@{IsMetaEditable}|hyperpage}{170} -\indexentry{IsMetaEditable@{IsMetaEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{170} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditable@{MakeEditable}|hyperpage}{170} -\indexentry{MakeEditable@{MakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{170} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditable@{MakeEditable}|hyperpage}{171} -\indexentry{MakeEditable@{MakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{171} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!IsEditable@{IsEditable}|hyperpage}{169} +\indexentry{IsEditable@{IsEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{169} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!IsEditable@{IsEditable}|hyperpage}{170} +\indexentry{IsEditable@{IsEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{170} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!IsMetaEditable@{IsMetaEditable}|hyperpage}{171} +\indexentry{IsMetaEditable@{IsMetaEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{171} \indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditable@{MakeEditable}|hyperpage}{171} \indexentry{MakeEditable@{MakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{171} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditableInteractive@{MakeEditableInteractive}|hyperpage}{172} -\indexentry{MakeEditableInteractive@{MakeEditableInteractive}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{172} -\indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditableInteractive@{MakeEditableInteractive}|hyperpage}{172} -\indexentry{MakeEditableInteractive@{MakeEditableInteractive}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{172} -\indexentry{AssetLoadException@{AssetLoadException}|hyperpage}{173} -\indexentry{AssetLoadException@{AssetLoadException}!AssetLoadException@{AssetLoadException}|hyperpage}{175} -\indexentry{AssetLoadException@{AssetLoadException}!AssetLoadException@{AssetLoadException}|hyperpage}{175} -\indexentry{AssetLoadException@{AssetLoadException}!AssetLoadException@{AssetLoadException}|hyperpage}{175} -\indexentry{AssetLoadException@{AssetLoadException}!AssetLoadException@{AssetLoadException}|hyperpage}{175} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditable@{MakeEditable}|hyperpage}{172} +\indexentry{MakeEditable@{MakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{172} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditable@{MakeEditable}|hyperpage}{172} +\indexentry{MakeEditable@{MakeEditable}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{172} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditableInteractive@{MakeEditableInteractive}|hyperpage}{173} +\indexentry{MakeEditableInteractive@{MakeEditableInteractive}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{173} +\indexentry{Asset.VersionControl@{Asset.VersionControl}!MakeEditableInteractive@{MakeEditableInteractive}|hyperpage}{173} +\indexentry{MakeEditableInteractive@{MakeEditableInteractive}!Asset.VersionControl@{Asset.VersionControl}|hyperpage}{173} +\indexentry{AssetLoadException@{AssetLoadException}|hyperpage}{174} +\indexentry{AssetLoadException@{AssetLoadException}!AssetLoadException@{AssetLoadException}|hyperpage}{176} +\indexentry{AssetLoadException@{AssetLoadException}!AssetLoadException@{AssetLoadException}|hyperpage}{176} +\indexentry{AssetLoadException@{AssetLoadException}!AssetLoadException@{AssetLoadException}|hyperpage}{176} +\indexentry{AssetLoadException@{AssetLoadException}!AssetLoadException@{AssetLoadException}|hyperpage}{176} diff --git a/latex/refman.ilg b/latex/refman.ilg index d91f974f..f6ed1f6b 100644 --- a/latex/refman.ilg +++ b/latex/refman.ilg @@ -3,7 +3,7 @@ Scanning input file refman.idx... !! Input index error (file = refman.idx, line = 1): -- No opening delimiter for second argument (illegal character `h'). .done (547 entries accepted, 1 rejected). -Sorting entries.......done (5307 comparisons). +Sorting entries.......done (5276 comparisons). Generating output file refman.ind....done (628 lines written, 0 warnings). Output written in refman.ind. Transcript written in refman.ilg. diff --git a/latex/refman.ind b/latex/refman.ind index df68007b..4e350c05 100644 --- a/latex/refman.ind +++ b/latex/refman.ind @@ -1,628 +1,628 @@ \begin{theindex} \item {ActiveImporter} - \subitem {Asset}, \hyperpage{36} + \subitem {Asset}, \hyperpage{37} \item {Add} - \subitem {Asset.Label}, \hyperpage{113, 114} - \subitem {Asset.SubAsset}, \hyperpage{158} + \subitem {Asset.Label}, \hyperpage{114, 115} + \subitem {Asset.SubAsset}, \hyperpage{159} \item {AddLabel} - \subitem {Asset}, \hyperpage{20} - \item {AddLabels} \subitem {Asset}, \hyperpage{21} + \item {AddLabels} + \subitem {Asset}, \hyperpage{22} \item {Address} - \subitem {Asset.Database.CacheServer}, \hyperpage{58} + \subitem {Asset.Database.CacheServer}, \hyperpage{59} \item {AddSubAsset} - \subitem {Asset}, \hyperpage{21} + \subitem {Asset}, \hyperpage{22} \item {All} - \subitem {Asset.Bundle}, \hyperpage{48} + \subitem {Asset.Bundle}, \hyperpage{49} \item {AllowAutoRefresh} - \subitem {Asset.Database}, \hyperpage{50} + \subitem {Asset.Database}, \hyperpage{51} \item {ApplySettings} - \subitem {Asset.Database.CacheServer}, \hyperpage{57} - \subitem {Asset.Importer}, \hyperpage{103} + \subitem {Asset.Database.CacheServer}, \hyperpage{58} + \subitem {Asset.Importer}, \hyperpage{104} \item {Asset}, \hyperpage{12} - \subitem {ActiveImporter}, \hyperpage{36} - \subitem {AddLabel}, \hyperpage{20} - \subitem {AddLabels}, \hyperpage{21} - \subitem {AddSubAsset}, \hyperpage{21} - \subitem {Asset}, \hyperpage{16--18}, \hyperpage{20} - \subitem {AssetPath}, \hyperpage{36} - \subitem {AvailableImporters}, \hyperpage{36} - \subitem {CanMove}, \hyperpage{22} - \subitem {CanOpenInEditor}, \hyperpage{22} - \subitem {ClearLabels}, \hyperpage{22} - \subitem {DefaultImporter}, \hyperpage{36} - \subitem {Delete}, \hyperpage{23} - \subitem {Dependencies}, \hyperpage{37} - \subitem {DirectDependencies}, \hyperpage{37} - \subitem {Duplicate}, \hyperpage{23} - \subitem {ExportPackage}, \hyperpage{24} - \subitem {FileId}, \hyperpage{37} - \subitem {ForceSave}, \hyperpage{24} - \subitem {GetIcon}, \hyperpage{24, 25} - \subitem {GetLastErrorMessage}, \hyperpage{25} - \subitem {GetMain$<$ T $>$}, \hyperpage{26} - \subitem {Guid}, \hyperpage{38} - \subitem {Icon}, \hyperpage{38} - \subitem {IsDeleted}, \hyperpage{38} - \subitem {IsForeign}, \hyperpage{38} - \subitem {IsImporterOverridden}, \hyperpage{39} - \subitem {IsNative}, \hyperpage{39} - \subitem {IsScene}, \hyperpage{39} - \subitem {Labels}, \hyperpage{40} - \subitem {Load$<$ T $>$}, \hyperpage{27} - \subitem {MainObject}, \hyperpage{40} - \subitem {MainObjectType}, \hyperpage{40} - \subitem {MetaPath}, \hyperpage{41} - \subitem {Move}, \hyperpage{27} - \subitem {OpenExternal}, \hyperpage{28} - \subitem {operator Asset}, \hyperpage{29} - \subitem {operator Object}, \hyperpage{30} - \subitem {OwningBundle}, \hyperpage{41} - \subitem {OwningBundleVariant}, \hyperpage{41} - \subitem {RemoveLabel}, \hyperpage{30} - \subitem {RemoveSubAsset}, \hyperpage{30} - \subitem {Rename}, \hyperpage{31} - \subitem {Save}, \hyperpage{32} - \subitem {SaveAs}, \hyperpage{32} - \subitem {SaveAsNew}, \hyperpage{33} - \subitem {SetDirty}, \hyperpage{34} - \subitem {SetLabels}, \hyperpage{34} - \subitem {SubAssets}, \hyperpage{42} - \subitem {Trash}, \hyperpage{35} - \subitem {VisibleSubAssets}, \hyperpage{42} - \item {Asset.Bundle}, \hyperpage{43} - \subitem {All}, \hyperpage{48} - \subitem {ForceRemove}, \hyperpage{44} - \subitem {GetAllDependencies}, \hyperpage{44} - \subitem {GetAllPaths}, \hyperpage{45} - \subitem {GetDirectDependencies}, \hyperpage{45} - \subitem {GetOwningBundle}, \hyperpage{46} - \subitem {GetOwningBundleVariant}, \hyperpage{46} - \subitem {GetPaths}, \hyperpage{47} - \subitem {Remove}, \hyperpage{47} - \subitem {RemoveUnused}, \hyperpage{48} - \subitem {Unused}, \hyperpage{48} - \item {Asset.Database}, \hyperpage{49} - \subitem {AllowAutoRefresh}, \hyperpage{50} - \subitem {Contains}, \hyperpage{50, 51} - \subitem {DesiredWorkerCount}, \hyperpage{55} - \subitem {DirectoryMonitoring}, \hyperpage{55} - \subitem {DisallowAutoRefresh}, \hyperpage{51} - \subitem {ImportAll}, \hyperpage{51} - \subitem {ReleaseFileHandles}, \hyperpage{53} - \subitem {SaveAll}, \hyperpage{53} - \subitem {UpgradeAllAssetSerializationVersions}, \hyperpage{53} - \subitem {UpgradeAssetSerializationVersion}, \hyperpage{53, 54} - \item {Asset.Database.CacheServer}, \hyperpage{56} - \subitem {Address}, \hyperpage{58} - \subitem {ApplySettings}, \hyperpage{57} - \subitem {CanConnect}, \hyperpage{57} - \subitem {Connected}, \hyperpage{58} - \subitem {ConnectedAddress}, \hyperpage{59} - \subitem {Disconnect}, \hyperpage{58} - \subitem {DownloadsAllowed}, \hyperpage{59} - \subitem {Enabled}, \hyperpage{59} - \subitem {NamespacePrefix}, \hyperpage{60} - \subitem {Port}, \hyperpage{60} - \subitem {ResetReconnectTimer}, \hyperpage{58} - \subitem {UploadsAllowed}, \hyperpage{60} - \item {Asset.Dependency}, \hyperpage{61} - \subitem {GetAll}, \hyperpage{62} - \subitem {GetDirect}, \hyperpage{63} - \subitem {GetHash}, \hyperpage{64} - \subitem {Register}, \hyperpage{65} - \subitem {Unregister}, \hyperpage{65} - \item {Asset.File}, \hyperpage{66} - \subitem {BatchEditing}, \hyperpage{69} - \subitem {CanMove}, \hyperpage{70} - \subitem {CanOpenInEditor}, \hyperpage{70, 71} - \subitem {Copy}, \hyperpage{71} - \subitem {CopyAsNew}, \hyperpage{72} - \subitem {Create}, \hyperpage{72--74} - \subitem {CreateAsNew}, \hyperpage{74--76} - \subitem {CreateOrLoad$<$ T $>$}, \hyperpage{76} - \subitem {Delete}, \hyperpage{77, 78} - \subitem {Find}, \hyperpage{79} - \subitem {FindGuids}, \hyperpage{80} - \subitem {FindPaths}, \hyperpage{80, 81} - \subitem {ForceSave}, \hyperpage{82} - \subitem {GetFileId}, \hyperpage{82} - \subitem {GetGuid}, \hyperpage{83} - \subitem {GetGuidAndFileId}, \hyperpage{83} - \subitem {GetMainType}, \hyperpage{84, 85} - \subitem {GetSubType}, \hyperpage{86} - \subitem {Import}, \hyperpage{86--88} - \subitem {ImportAndLoad$<$ T $>$}, \hyperpage{88} - \subitem {Load$<$ T $>$}, \hyperpage{89} - \subitem {LoadAsync}, \hyperpage{90} - \subitem {LoadMain$<$ T $>$}, \hyperpage{91, 92} - \subitem {LoadOrCreate$<$ T $>$}, \hyperpage{93} - \subitem {Move}, \hyperpage{94} - \subitem {OpenExternal}, \hyperpage{95, 96} - \subitem {PathsNotDeleted}, \hyperpage{101} - \subitem {Rename}, \hyperpage{96} - \subitem {Save}, \hyperpage{97, 98} - \subitem {Trash}, \hyperpage{98--100} - \item {Asset.Importer}, \hyperpage{101} - \subitem {ApplySettings}, \hyperpage{103} - \subitem {ClearOverride}, \hyperpage{103} - \subitem {GetActive}, \hyperpage{104--107} - \subitem {GetAvailable}, \hyperpage{107, 108} - \subitem {GetDefault}, \hyperpage{108, 109} - \subitem {GetOverride}, \hyperpage{109, 110} - \subitem {IsOverridden}, \hyperpage{110} - \subitem {SetOverride$<$ T $>$}, \hyperpage{111} - \item {Asset.Label}, \hyperpage{112} - \subitem {Add}, \hyperpage{113, 114} - \subitem {ClearAll}, \hyperpage{114} - \subitem {GetAll}, \hyperpage{115, 116} - \subitem {Remove}, \hyperpage{117} - \subitem {SetAll}, \hyperpage{118} - \item {Asset.Package}, \hyperpage{119} - \subitem {Export}, \hyperpage{119, 120} - \subitem {Import}, \hyperpage{121} - \subitem {ImportInteractive}, \hyperpage{121} - \item {Asset.Path}, \hyperpage{122} - \subitem {AssetPath}, \hyperpage{146} - \subitem {CreateFolders}, \hyperpage{129} - \subitem {Equals}, \hyperpage{131, 132} - \subitem {Exists}, \hyperpage{146} - \subitem {ExistsInFileSystem}, \hyperpage{146} - \subitem {Extension}, \hyperpage{147} - \subitem {FileExists}, \hyperpage{133} - \subitem {FileName}, \hyperpage{147} - \subitem {FileNameWithoutExtension}, \hyperpage{147} - \subitem {FolderExists}, \hyperpage{134} - \subitem {FolderPath}, \hyperpage{148} - \subitem {FromMeta}, \hyperpage{134} - \subitem {FullAssetsPath}, \hyperpage{148} - \subitem {FullLibraryPath}, \hyperpage{148} - \subitem {FullLogsPath}, \hyperpage{149} - \subitem {FullPackagesPath}, \hyperpage{149} - \subitem {FullPath}, \hyperpage{149} - \subitem {FullProjectPath}, \hyperpage{149} - \subitem {FullProjectSettingsPath}, \hyperpage{149} - \subitem {FullProjectTempPath}, \hyperpage{150} - \subitem {FullUserSettingsPath}, \hyperpage{150} - \subitem {Get}, \hyperpage{135--137} - \subitem {GetGuid}, \hyperpage{137} - \subitem {GetHashCode}, \hyperpage{138} - \subitem {GetScene}, \hyperpage{138} - \subitem {GetSubFolders}, \hyperpage{139} - \subitem {Guid}, \hyperpage{150} - \subitem {IsValid}, \hyperpage{139} - \subitem {MetaPath}, \hyperpage{150} - \subitem {OpenExternal}, \hyperpage{140} - \subitem {operator Path}, \hyperpage{140} - \subitem {operator String}, \hyperpage{141} - \subitem {operator!=}, \hyperpage{141, 142} - \subitem {operator==}, \hyperpage{142, 143} - \subitem {Path}, \hyperpage{127, 128} - \subitem {Rename}, \hyperpage{144} - \subitem {SubFolders}, \hyperpage{151} - \subitem {ToMeta}, \hyperpage{144} - \subitem {ToString}, \hyperpage{144} - \subitem {ToStrings}, \hyperpage{145} - \subitem {UniqueFilePath}, \hyperpage{151} - \subitem {UniquifyFileName}, \hyperpage{145} - \item {Asset.Status}, \hyperpage{152} - \subitem {IsForeign}, \hyperpage{153} - \subitem {IsImported}, \hyperpage{153, 154} - \subitem {IsLoaded}, \hyperpage{154} - \subitem {IsMain}, \hyperpage{155} - \subitem {IsNative}, \hyperpage{155} - \subitem {IsScene}, \hyperpage{156} - \subitem {IsSub}, \hyperpage{156} - \item {Asset.SubAsset}, \hyperpage{157} - \subitem {Add}, \hyperpage{158} - \subitem {Extract}, \hyperpage{158} - \subitem {LoadAll}, \hyperpage{159} - \subitem {LoadVisible}, \hyperpage{159} - \subitem {Remove}, \hyperpage{160} - \subitem {SetMain}, \hyperpage{161} - \item {Asset.VersionControl}, \hyperpage{162} - \subitem {CanMakeEditable}, \hyperpage{164--167} - \subitem {IsEditable}, \hyperpage{167--169} - \subitem {IsMetaEditable}, \hyperpage{170} - \subitem {MakeEditable}, \hyperpage{170, 171} - \subitem {MakeEditableInteractive}, \hyperpage{172} - \item {AssetLoadException}, \hyperpage{173} - \subitem {AssetLoadException}, \hyperpage{175} + \subitem {ActiveImporter}, \hyperpage{37} + \subitem {AddLabel}, \hyperpage{21} + \subitem {AddLabels}, \hyperpage{22} + \subitem {AddSubAsset}, \hyperpage{22} + \subitem {Asset}, \hyperpage{17--19}, \hyperpage{21} + \subitem {AssetPath}, \hyperpage{37} + \subitem {AvailableImporters}, \hyperpage{37} + \subitem {CanMove}, \hyperpage{23} + \subitem {CanOpenInEditor}, \hyperpage{23} + \subitem {ClearLabels}, \hyperpage{23} + \subitem {DefaultImporter}, \hyperpage{37} + \subitem {Delete}, \hyperpage{24} + \subitem {Dependencies}, \hyperpage{38} + \subitem {DirectDependencies}, \hyperpage{38} + \subitem {Duplicate}, \hyperpage{24} + \subitem {ExportPackage}, \hyperpage{25} + \subitem {FileId}, \hyperpage{38} + \subitem {ForceSave}, \hyperpage{25} + \subitem {GetIcon}, \hyperpage{25, 26} + \subitem {GetLastErrorMessage}, \hyperpage{26} + \subitem {GetMain$<$ T $>$}, \hyperpage{27} + \subitem {Guid}, \hyperpage{39} + \subitem {Icon}, \hyperpage{39} + \subitem {IsDeleted}, \hyperpage{39} + \subitem {IsForeign}, \hyperpage{39} + \subitem {IsImporterOverridden}, \hyperpage{40} + \subitem {IsNative}, \hyperpage{40} + \subitem {IsScene}, \hyperpage{40} + \subitem {Labels}, \hyperpage{41} + \subitem {Load$<$ T $>$}, \hyperpage{28} + \subitem {MainObject}, \hyperpage{41} + \subitem {MainObjectType}, \hyperpage{41} + \subitem {MetaPath}, \hyperpage{42} + \subitem {Move}, \hyperpage{28} + \subitem {OpenExternal}, \hyperpage{29} + \subitem {operator Asset}, \hyperpage{30} + \subitem {operator Object}, \hyperpage{31} + \subitem {OwningBundle}, \hyperpage{42} + \subitem {OwningBundleVariant}, \hyperpage{42} + \subitem {RemoveLabel}, \hyperpage{31} + \subitem {RemoveSubAsset}, \hyperpage{31} + \subitem {Rename}, \hyperpage{32} + \subitem {Save}, \hyperpage{33} + \subitem {SaveAs}, \hyperpage{33} + \subitem {SaveAsNew}, \hyperpage{34} + \subitem {SetDirty}, \hyperpage{35} + \subitem {SetLabels}, \hyperpage{35} + \subitem {SubAssets}, \hyperpage{43} + \subitem {Trash}, \hyperpage{36} + \subitem {VisibleSubAssets}, \hyperpage{43} + \item {Asset.Bundle}, \hyperpage{44} + \subitem {All}, \hyperpage{49} + \subitem {ForceRemove}, \hyperpage{45} + \subitem {GetAllDependencies}, \hyperpage{45} + \subitem {GetAllPaths}, \hyperpage{46} + \subitem {GetDirectDependencies}, \hyperpage{46} + \subitem {GetOwningBundle}, \hyperpage{47} + \subitem {GetOwningBundleVariant}, \hyperpage{47} + \subitem {GetPaths}, \hyperpage{48} + \subitem {Remove}, \hyperpage{48} + \subitem {RemoveUnused}, \hyperpage{49} + \subitem {Unused}, \hyperpage{49} + \item {Asset.Database}, \hyperpage{50} + \subitem {AllowAutoRefresh}, \hyperpage{51} + \subitem {Contains}, \hyperpage{51, 52} + \subitem {DesiredWorkerCount}, \hyperpage{56} + \subitem {DirectoryMonitoring}, \hyperpage{56} + \subitem {DisallowAutoRefresh}, \hyperpage{52} + \subitem {ImportAll}, \hyperpage{52} + \subitem {ReleaseFileHandles}, \hyperpage{54} + \subitem {SaveAll}, \hyperpage{54} + \subitem {UpgradeAllAssetSerializationVersions}, \hyperpage{54} + \subitem {UpgradeAssetSerializationVersion}, \hyperpage{54, 55} + \item {Asset.Database.CacheServer}, \hyperpage{57} + \subitem {Address}, \hyperpage{59} + \subitem {ApplySettings}, \hyperpage{58} + \subitem {CanConnect}, \hyperpage{58} + \subitem {Connected}, \hyperpage{59} + \subitem {ConnectedAddress}, \hyperpage{60} + \subitem {Disconnect}, \hyperpage{59} + \subitem {DownloadsAllowed}, \hyperpage{60} + \subitem {Enabled}, \hyperpage{60} + \subitem {NamespacePrefix}, \hyperpage{61} + \subitem {Port}, \hyperpage{61} + \subitem {ResetReconnectTimer}, \hyperpage{59} + \subitem {UploadsAllowed}, \hyperpage{61} + \item {Asset.Dependency}, \hyperpage{62} + \subitem {GetAll}, \hyperpage{63} + \subitem {GetDirect}, \hyperpage{64} + \subitem {GetHash}, \hyperpage{65} + \subitem {Register}, \hyperpage{66} + \subitem {Unregister}, \hyperpage{66} + \item {Asset.File}, \hyperpage{67} + \subitem {BatchEditing}, \hyperpage{70} + \subitem {CanMove}, \hyperpage{71} + \subitem {CanOpenInEditor}, \hyperpage{71, 72} + \subitem {Copy}, \hyperpage{72} + \subitem {CopyAsNew}, \hyperpage{73} + \subitem {Create}, \hyperpage{73--75} + \subitem {CreateAsNew}, \hyperpage{75--77} + \subitem {CreateOrLoad$<$ T $>$}, \hyperpage{77} + \subitem {Delete}, \hyperpage{78, 79} + \subitem {Find}, \hyperpage{80} + \subitem {FindGuids}, \hyperpage{81} + \subitem {FindPaths}, \hyperpage{81, 82} + \subitem {ForceSave}, \hyperpage{83} + \subitem {GetFileId}, \hyperpage{83} + \subitem {GetGuid}, \hyperpage{84} + \subitem {GetGuidAndFileId}, \hyperpage{84} + \subitem {GetMainType}, \hyperpage{85, 86} + \subitem {GetSubType}, \hyperpage{87} + \subitem {Import}, \hyperpage{87, 88} + \subitem {ImportAndLoad$<$ T $>$}, \hyperpage{89} + \subitem {Load$<$ T $>$}, \hyperpage{90} + \subitem {LoadAsync}, \hyperpage{91} + \subitem {LoadMain$<$ T $>$}, \hyperpage{92, 93} + \subitem {LoadOrCreate$<$ T $>$}, \hyperpage{94} + \subitem {Move}, \hyperpage{95} + \subitem {OpenExternal}, \hyperpage{96, 97} + \subitem {PathsNotDeleted}, \hyperpage{102} + \subitem {Rename}, \hyperpage{97} + \subitem {Save}, \hyperpage{98, 99} + \subitem {Trash}, \hyperpage{99--101} + \item {Asset.Importer}, \hyperpage{102} + \subitem {ApplySettings}, \hyperpage{104} + \subitem {ClearOverride}, \hyperpage{104} + \subitem {GetActive}, \hyperpage{105--108} + \subitem {GetAvailable}, \hyperpage{108, 109} + \subitem {GetDefault}, \hyperpage{109, 110} + \subitem {GetOverride}, \hyperpage{110, 111} + \subitem {IsOverridden}, \hyperpage{111} + \subitem {SetOverride$<$ T $>$}, \hyperpage{112} + \item {Asset.Label}, \hyperpage{113} + \subitem {Add}, \hyperpage{114, 115} + \subitem {ClearAll}, \hyperpage{115} + \subitem {GetAll}, \hyperpage{116, 117} + \subitem {Remove}, \hyperpage{118} + \subitem {SetAll}, \hyperpage{119} + \item {Asset.Package}, \hyperpage{120} + \subitem {Export}, \hyperpage{120, 121} + \subitem {Import}, \hyperpage{122} + \subitem {ImportInteractive}, \hyperpage{122} + \item {Asset.Path}, \hyperpage{123} + \subitem {AssetPath}, \hyperpage{147} + \subitem {CreateFolders}, \hyperpage{130} + \subitem {Equals}, \hyperpage{132, 133} + \subitem {Exists}, \hyperpage{147} + \subitem {ExistsInFileSystem}, \hyperpage{147} + \subitem {Extension}, \hyperpage{148} + \subitem {FileExists}, \hyperpage{134} + \subitem {FileName}, \hyperpage{148} + \subitem {FileNameWithoutExtension}, \hyperpage{148} + \subitem {FolderExists}, \hyperpage{135} + \subitem {FolderPath}, \hyperpage{149} + \subitem {FromMeta}, \hyperpage{135} + \subitem {FullAssetsPath}, \hyperpage{149} + \subitem {FullLibraryPath}, \hyperpage{149} + \subitem {FullLogsPath}, \hyperpage{150} + \subitem {FullPackagesPath}, \hyperpage{150} + \subitem {FullPath}, \hyperpage{150} + \subitem {FullProjectPath}, \hyperpage{150} + \subitem {FullProjectSettingsPath}, \hyperpage{150} + \subitem {FullProjectTempPath}, \hyperpage{151} + \subitem {FullUserSettingsPath}, \hyperpage{151} + \subitem {Get}, \hyperpage{136--138} + \subitem {GetGuid}, \hyperpage{138} + \subitem {GetHashCode}, \hyperpage{139} + \subitem {GetScene}, \hyperpage{139} + \subitem {GetSubFolders}, \hyperpage{140} + \subitem {Guid}, \hyperpage{151} + \subitem {IsValid}, \hyperpage{140} + \subitem {MetaPath}, \hyperpage{151} + \subitem {OpenExternal}, \hyperpage{141} + \subitem {operator Path}, \hyperpage{141} + \subitem {operator String}, \hyperpage{142} + \subitem {operator!=}, \hyperpage{142, 143} + \subitem {operator==}, \hyperpage{143, 144} + \subitem {Path}, \hyperpage{128, 129} + \subitem {Rename}, \hyperpage{145} + \subitem {SubFolders}, \hyperpage{152} + \subitem {ToMeta}, \hyperpage{145} + \subitem {ToString}, \hyperpage{145} + \subitem {ToStrings}, \hyperpage{146} + \subitem {UniqueFilePath}, \hyperpage{152} + \subitem {UniquifyFileName}, \hyperpage{146} + \item {Asset.Status}, \hyperpage{153} + \subitem {IsForeign}, \hyperpage{154} + \subitem {IsImported}, \hyperpage{154, 155} + \subitem {IsLoaded}, \hyperpage{155} + \subitem {IsMain}, \hyperpage{156} + \subitem {IsNative}, \hyperpage{156} + \subitem {IsScene}, \hyperpage{157} + \subitem {IsSub}, \hyperpage{157} + \item {Asset.SubAsset}, \hyperpage{158} + \subitem {Add}, \hyperpage{159} + \subitem {Extract}, \hyperpage{159} + \subitem {LoadAll}, \hyperpage{160} + \subitem {LoadVisible}, \hyperpage{160} + \subitem {Remove}, \hyperpage{161} + \subitem {SetMain}, \hyperpage{162} + \item {Asset.VersionControl}, \hyperpage{163} + \subitem {CanMakeEditable}, \hyperpage{165--168} + \subitem {IsEditable}, \hyperpage{168--170} + \subitem {IsMetaEditable}, \hyperpage{171} + \subitem {MakeEditable}, \hyperpage{171, 172} + \subitem {MakeEditableInteractive}, \hyperpage{173} + \item {AssetLoadException}, \hyperpage{174} + \subitem {AssetLoadException}, \hyperpage{176} \item {AssetPath} - \subitem {Asset}, \hyperpage{36} - \subitem {Asset.Path}, \hyperpage{146} + \subitem {Asset}, \hyperpage{37} + \subitem {Asset.Path}, \hyperpage{147} \item {AvailableImporters} - \subitem {Asset}, \hyperpage{36} + \subitem {Asset}, \hyperpage{37} \indexspace \item {BatchEditing} - \subitem {Asset.File}, \hyperpage{69} + \subitem {Asset.File}, \hyperpage{70} \indexspace \item {CanConnect} - \subitem {Asset.Database.CacheServer}, \hyperpage{57} + \subitem {Asset.Database.CacheServer}, \hyperpage{58} \item {CanMakeEditable} - \subitem {Asset.VersionControl}, \hyperpage{164--167} + \subitem {Asset.VersionControl}, \hyperpage{165--168} \item {CanMove} - \subitem {Asset}, \hyperpage{22} - \subitem {Asset.File}, \hyperpage{70} + \subitem {Asset}, \hyperpage{23} + \subitem {Asset.File}, \hyperpage{71} \item {CanOpenInEditor} - \subitem {Asset}, \hyperpage{22} - \subitem {Asset.File}, \hyperpage{70, 71} + \subitem {Asset}, \hyperpage{23} + \subitem {Asset.File}, \hyperpage{71, 72} \item {Change Log}, \hyperpage{6} \item {ClearAll} - \subitem {Asset.Label}, \hyperpage{114} + \subitem {Asset.Label}, \hyperpage{115} \item {ClearLabels} - \subitem {Asset}, \hyperpage{22} + \subitem {Asset}, \hyperpage{23} \item {ClearOverride} - \subitem {Asset.Importer}, \hyperpage{103} - \item {CodeSmile Packages -\/ Getting Started}, \hyperpage{9} - \item {CodeSmileEditor}, \hyperpage{11} + \subitem {Asset.Importer}, \hyperpage{104} + \item {CodeSmile Packages -\/ Getting Started}, \hyperpage{10} + \item {CodeSmileEditor}, \hyperpage{12} \item {Connected} - \subitem {Asset.Database.CacheServer}, \hyperpage{58} - \item {ConnectedAddress} \subitem {Asset.Database.CacheServer}, \hyperpage{59} + \item {ConnectedAddress} + \subitem {Asset.Database.CacheServer}, \hyperpage{60} \item {Contains} - \subitem {Asset.Database}, \hyperpage{50, 51} + \subitem {Asset.Database}, \hyperpage{51, 52} \item {Copy} - \subitem {Asset.File}, \hyperpage{71} - \item {CopyAsNew} \subitem {Asset.File}, \hyperpage{72} + \item {CopyAsNew} + \subitem {Asset.File}, \hyperpage{73} \item {Create} - \subitem {Asset.File}, \hyperpage{72--74} + \subitem {Asset.File}, \hyperpage{73--75} \item {CreateAsNew} - \subitem {Asset.File}, \hyperpage{74--76} + \subitem {Asset.File}, \hyperpage{75--77} \item {CreateFolders} - \subitem {Asset.Path}, \hyperpage{129} + \subitem {Asset.Path}, \hyperpage{130} \item {CreateOrLoad$<$ T $>$} - \subitem {Asset.File}, \hyperpage{76} + \subitem {Asset.File}, \hyperpage{77} \indexspace \item {DefaultImporter} - \subitem {Asset}, \hyperpage{36} + \subitem {Asset}, \hyperpage{37} \item {Delete} - \subitem {Asset}, \hyperpage{23} - \subitem {Asset.File}, \hyperpage{77, 78} + \subitem {Asset}, \hyperpage{24} + \subitem {Asset.File}, \hyperpage{78, 79} \item {Dependencies} - \subitem {Asset}, \hyperpage{37} + \subitem {Asset}, \hyperpage{38} \item {DesiredWorkerCount} - \subitem {Asset.Database}, \hyperpage{55} + \subitem {Asset.Database}, \hyperpage{56} \item {DirectDependencies} - \subitem {Asset}, \hyperpage{37} + \subitem {Asset}, \hyperpage{38} \item {DirectoryMonitoring} - \subitem {Asset.Database}, \hyperpage{55} + \subitem {Asset.Database}, \hyperpage{56} \item {DisallowAutoRefresh} - \subitem {Asset.Database}, \hyperpage{51} + \subitem {Asset.Database}, \hyperpage{52} \item {Disconnect} - \subitem {Asset.Database.CacheServer}, \hyperpage{58} - \item {DownloadsAllowed} \subitem {Asset.Database.CacheServer}, \hyperpage{59} + \item {DownloadsAllowed} + \subitem {Asset.Database.CacheServer}, \hyperpage{60} \item {Duplicate} - \subitem {Asset}, \hyperpage{23} + \subitem {Asset}, \hyperpage{24} \indexspace \item {Enabled} - \subitem {Asset.Database.CacheServer}, \hyperpage{59} + \subitem {Asset.Database.CacheServer}, \hyperpage{60} \item {Equals} - \subitem {Asset.Path}, \hyperpage{131, 132} + \subitem {Asset.Path}, \hyperpage{132, 133} \item {Exists} - \subitem {Asset.Path}, \hyperpage{146} + \subitem {Asset.Path}, \hyperpage{147} \item {ExistsInFileSystem} - \subitem {Asset.Path}, \hyperpage{146} + \subitem {Asset.Path}, \hyperpage{147} \item {Export} - \subitem {Asset.Package}, \hyperpage{119, 120} + \subitem {Asset.Package}, \hyperpage{120, 121} \item {ExportPackage} - \subitem {Asset}, \hyperpage{24} + \subitem {Asset}, \hyperpage{25} \item {Extension} - \subitem {Asset.Path}, \hyperpage{147} + \subitem {Asset.Path}, \hyperpage{148} \item {Extract} - \subitem {Asset.SubAsset}, \hyperpage{158} + \subitem {Asset.SubAsset}, \hyperpage{159} \indexspace \item {FileExists} - \subitem {Asset.Path}, \hyperpage{133} + \subitem {Asset.Path}, \hyperpage{134} \item {FileId} - \subitem {Asset}, \hyperpage{37} + \subitem {Asset}, \hyperpage{38} \item {FileName} - \subitem {Asset.Path}, \hyperpage{147} + \subitem {Asset.Path}, \hyperpage{148} \item {FileNameWithoutExtension} - \subitem {Asset.Path}, \hyperpage{147} + \subitem {Asset.Path}, \hyperpage{148} \item {Find} - \subitem {Asset.File}, \hyperpage{79} - \item {FindGuids} \subitem {Asset.File}, \hyperpage{80} + \item {FindGuids} + \subitem {Asset.File}, \hyperpage{81} \item {FindPaths} - \subitem {Asset.File}, \hyperpage{80, 81} + \subitem {Asset.File}, \hyperpage{81, 82} \item {FolderExists} - \subitem {Asset.Path}, \hyperpage{134} + \subitem {Asset.Path}, \hyperpage{135} \item {FolderPath} - \subitem {Asset.Path}, \hyperpage{148} + \subitem {Asset.Path}, \hyperpage{149} \item {ForceRemove} - \subitem {Asset.Bundle}, \hyperpage{44} + \subitem {Asset.Bundle}, \hyperpage{45} \item {ForceSave} - \subitem {Asset}, \hyperpage{24} - \subitem {Asset.File}, \hyperpage{82} + \subitem {Asset}, \hyperpage{25} + \subitem {Asset.File}, \hyperpage{83} \item {FromMeta} - \subitem {Asset.Path}, \hyperpage{134} + \subitem {Asset.Path}, \hyperpage{135} \item {FullAssetsPath} - \subitem {Asset.Path}, \hyperpage{148} + \subitem {Asset.Path}, \hyperpage{149} \item {FullLibraryPath} - \subitem {Asset.Path}, \hyperpage{148} - \item {FullLogsPath} \subitem {Asset.Path}, \hyperpage{149} + \item {FullLogsPath} + \subitem {Asset.Path}, \hyperpage{150} \item {FullPackagesPath} - \subitem {Asset.Path}, \hyperpage{149} + \subitem {Asset.Path}, \hyperpage{150} \item {FullPath} - \subitem {Asset.Path}, \hyperpage{149} + \subitem {Asset.Path}, \hyperpage{150} \item {FullProjectPath} - \subitem {Asset.Path}, \hyperpage{149} + \subitem {Asset.Path}, \hyperpage{150} \item {FullProjectSettingsPath} - \subitem {Asset.Path}, \hyperpage{149} - \item {FullProjectTempPath} \subitem {Asset.Path}, \hyperpage{150} + \item {FullProjectTempPath} + \subitem {Asset.Path}, \hyperpage{151} \item {FullUserSettingsPath} - \subitem {Asset.Path}, \hyperpage{150} + \subitem {Asset.Path}, \hyperpage{151} \indexspace \item {Get} - \subitem {Asset.Path}, \hyperpage{135--137} + \subitem {Asset.Path}, \hyperpage{136--138} \item {GetActive} - \subitem {Asset.Importer}, \hyperpage{104--107} + \subitem {Asset.Importer}, \hyperpage{105--108} \item {GetAll} - \subitem {Asset.Dependency}, \hyperpage{62} - \subitem {Asset.Label}, \hyperpage{115, 116} + \subitem {Asset.Dependency}, \hyperpage{63} + \subitem {Asset.Label}, \hyperpage{116, 117} \item {GetAllDependencies} - \subitem {Asset.Bundle}, \hyperpage{44} - \item {GetAllPaths} \subitem {Asset.Bundle}, \hyperpage{45} + \item {GetAllPaths} + \subitem {Asset.Bundle}, \hyperpage{46} \item {GetAvailable} - \subitem {Asset.Importer}, \hyperpage{107, 108} - \item {GetDefault} \subitem {Asset.Importer}, \hyperpage{108, 109} + \item {GetDefault} + \subitem {Asset.Importer}, \hyperpage{109, 110} \item {GetDirect} - \subitem {Asset.Dependency}, \hyperpage{63} + \subitem {Asset.Dependency}, \hyperpage{64} \item {GetDirectDependencies} - \subitem {Asset.Bundle}, \hyperpage{45} + \subitem {Asset.Bundle}, \hyperpage{46} \item {GetFileId} - \subitem {Asset.File}, \hyperpage{82} - \item {GetGuid} \subitem {Asset.File}, \hyperpage{83} - \subitem {Asset.Path}, \hyperpage{137} + \item {GetGuid} + \subitem {Asset.File}, \hyperpage{84} + \subitem {Asset.Path}, \hyperpage{138} \item {GetGuidAndFileId} - \subitem {Asset.File}, \hyperpage{83} + \subitem {Asset.File}, \hyperpage{84} \item {GetHash} - \subitem {Asset.Dependency}, \hyperpage{64} + \subitem {Asset.Dependency}, \hyperpage{65} \item {GetHashCode} - \subitem {Asset.Path}, \hyperpage{138} + \subitem {Asset.Path}, \hyperpage{139} \item {GetIcon} - \subitem {Asset}, \hyperpage{24, 25} + \subitem {Asset}, \hyperpage{25, 26} \item {GetLastErrorMessage} - \subitem {Asset}, \hyperpage{25} - \item {GetMain$<$ T $>$} \subitem {Asset}, \hyperpage{26} + \item {GetMain$<$ T $>$} + \subitem {Asset}, \hyperpage{27} \item {GetMainType} - \subitem {Asset.File}, \hyperpage{84, 85} + \subitem {Asset.File}, \hyperpage{85, 86} \item {GetOverride} - \subitem {Asset.Importer}, \hyperpage{109, 110} + \subitem {Asset.Importer}, \hyperpage{110, 111} \item {GetOwningBundle} - \subitem {Asset.Bundle}, \hyperpage{46} + \subitem {Asset.Bundle}, \hyperpage{47} \item {GetOwningBundleVariant} - \subitem {Asset.Bundle}, \hyperpage{46} - \item {GetPaths} \subitem {Asset.Bundle}, \hyperpage{47} + \item {GetPaths} + \subitem {Asset.Bundle}, \hyperpage{48} \item {GetScene} - \subitem {Asset.Path}, \hyperpage{138} - \item {GetSubFolders} \subitem {Asset.Path}, \hyperpage{139} + \item {GetSubFolders} + \subitem {Asset.Path}, \hyperpage{140} \item {GetSubType} - \subitem {Asset.File}, \hyperpage{86} + \subitem {Asset.File}, \hyperpage{87} \item {Guid} - \subitem {Asset}, \hyperpage{38} - \subitem {Asset.Path}, \hyperpage{150} + \subitem {Asset}, \hyperpage{39} + \subitem {Asset.Path}, \hyperpage{151} \indexspace \item {Icon} - \subitem {Asset}, \hyperpage{38} + \subitem {Asset}, \hyperpage{39} \item {Import} - \subitem {Asset.File}, \hyperpage{86--88} - \subitem {Asset.Package}, \hyperpage{121} + \subitem {Asset.File}, \hyperpage{87, 88} + \subitem {Asset.Package}, \hyperpage{122} \item {ImportAll} - \subitem {Asset.Database}, \hyperpage{51} + \subitem {Asset.Database}, \hyperpage{52} \item {ImportAndLoad$<$ T $>$} - \subitem {Asset.File}, \hyperpage{88} + \subitem {Asset.File}, \hyperpage{89} \item {ImportInteractive} - \subitem {Asset.Package}, \hyperpage{121} + \subitem {Asset.Package}, \hyperpage{122} \item {IsDeleted} - \subitem {Asset}, \hyperpage{38} + \subitem {Asset}, \hyperpage{39} \item {IsEditable} - \subitem {Asset.VersionControl}, \hyperpage{167--169} + \subitem {Asset.VersionControl}, \hyperpage{168--170} \item {IsForeign} - \subitem {Asset}, \hyperpage{38} - \subitem {Asset.Status}, \hyperpage{153} + \subitem {Asset}, \hyperpage{39} + \subitem {Asset.Status}, \hyperpage{154} \item {IsImported} - \subitem {Asset.Status}, \hyperpage{153, 154} + \subitem {Asset.Status}, \hyperpage{154, 155} \item {IsImporterOverridden} - \subitem {Asset}, \hyperpage{39} + \subitem {Asset}, \hyperpage{40} \item {IsLoaded} - \subitem {Asset.Status}, \hyperpage{154} - \item {IsMain} \subitem {Asset.Status}, \hyperpage{155} + \item {IsMain} + \subitem {Asset.Status}, \hyperpage{156} \item {IsMetaEditable} - \subitem {Asset.VersionControl}, \hyperpage{170} + \subitem {Asset.VersionControl}, \hyperpage{171} \item {IsNative} - \subitem {Asset}, \hyperpage{39} - \subitem {Asset.Status}, \hyperpage{155} + \subitem {Asset}, \hyperpage{40} + \subitem {Asset.Status}, \hyperpage{156} \item {IsOverridden} - \subitem {Asset.Importer}, \hyperpage{110} + \subitem {Asset.Importer}, \hyperpage{111} \item {IsScene} - \subitem {Asset}, \hyperpage{39} - \subitem {Asset.Status}, \hyperpage{156} + \subitem {Asset}, \hyperpage{40} + \subitem {Asset.Status}, \hyperpage{157} \item {IsSub} - \subitem {Asset.Status}, \hyperpage{156} + \subitem {Asset.Status}, \hyperpage{157} \item {IsValid} - \subitem {Asset.Path}, \hyperpage{139} + \subitem {Asset.Path}, \hyperpage{140} \indexspace \item {Labels} - \subitem {Asset}, \hyperpage{40} + \subitem {Asset}, \hyperpage{41} \item {Load$<$ T $>$} - \subitem {Asset}, \hyperpage{27} - \subitem {Asset.File}, \hyperpage{89} + \subitem {Asset}, \hyperpage{28} + \subitem {Asset.File}, \hyperpage{90} \item {LoadAll} - \subitem {Asset.SubAsset}, \hyperpage{159} + \subitem {Asset.SubAsset}, \hyperpage{160} \item {LoadAsync} - \subitem {Asset.File}, \hyperpage{90} + \subitem {Asset.File}, \hyperpage{91} \item {LoadMain$<$ T $>$} - \subitem {Asset.File}, \hyperpage{91, 92} + \subitem {Asset.File}, \hyperpage{92, 93} \item {LoadOrCreate$<$ T $>$} - \subitem {Asset.File}, \hyperpage{93} + \subitem {Asset.File}, \hyperpage{94} \item {LoadVisible} - \subitem {Asset.SubAsset}, \hyperpage{159} + \subitem {Asset.SubAsset}, \hyperpage{160} \indexspace \item {MainObject} - \subitem {Asset}, \hyperpage{40} + \subitem {Asset}, \hyperpage{41} \item {MainObjectType} - \subitem {Asset}, \hyperpage{40} + \subitem {Asset}, \hyperpage{41} \item {MakeEditable} - \subitem {Asset.VersionControl}, \hyperpage{170, 171} + \subitem {Asset.VersionControl}, \hyperpage{171, 172} \item {MakeEditableInteractive} - \subitem {Asset.VersionControl}, \hyperpage{172} + \subitem {Asset.VersionControl}, \hyperpage{173} \item {MetaPath} - \subitem {Asset}, \hyperpage{41} - \subitem {Asset.Path}, \hyperpage{150} + \subitem {Asset}, \hyperpage{42} + \subitem {Asset.Path}, \hyperpage{151} \item {Move} - \subitem {Asset}, \hyperpage{27} - \subitem {Asset.File}, \hyperpage{94} + \subitem {Asset}, \hyperpage{28} + \subitem {Asset.File}, \hyperpage{95} \indexspace \item {NamespacePrefix} - \subitem {Asset.Database.CacheServer}, \hyperpage{60} + \subitem {Asset.Database.CacheServer}, \hyperpage{61} \indexspace \item {OpenExternal} - \subitem {Asset}, \hyperpage{28} - \subitem {Asset.File}, \hyperpage{95, 96} - \subitem {Asset.Path}, \hyperpage{140} - \item {operator Asset} \subitem {Asset}, \hyperpage{29} - \item {operator Object} + \subitem {Asset.File}, \hyperpage{96, 97} + \subitem {Asset.Path}, \hyperpage{141} + \item {operator Asset} \subitem {Asset}, \hyperpage{30} + \item {operator Object} + \subitem {Asset}, \hyperpage{31} \item {operator Path} - \subitem {Asset.Path}, \hyperpage{140} - \item {operator String} \subitem {Asset.Path}, \hyperpage{141} + \item {operator String} + \subitem {Asset.Path}, \hyperpage{142} \item {operator!=} - \subitem {Asset.Path}, \hyperpage{141, 142} - \item {operator==} \subitem {Asset.Path}, \hyperpage{142, 143} + \item {operator==} + \subitem {Asset.Path}, \hyperpage{143, 144} \item {OwningBundle} - \subitem {Asset}, \hyperpage{41} + \subitem {Asset}, \hyperpage{42} \item {OwningBundleVariant} - \subitem {Asset}, \hyperpage{41} + \subitem {Asset}, \hyperpage{42} \indexspace \item {Path} - \subitem {Asset.Path}, \hyperpage{127, 128} + \subitem {Asset.Path}, \hyperpage{128, 129} \item {PathsNotDeleted} - \subitem {Asset.File}, \hyperpage{101} + \subitem {Asset.File}, \hyperpage{102} \item {Port} - \subitem {Asset.Database.CacheServer}, \hyperpage{60} + \subitem {Asset.Database.CacheServer}, \hyperpage{61} \indexspace \item {Register} - \subitem {Asset.Dependency}, \hyperpage{65} + \subitem {Asset.Dependency}, \hyperpage{66} \item {ReleaseFileHandles} - \subitem {Asset.Database}, \hyperpage{53} + \subitem {Asset.Database}, \hyperpage{54} \item {Remove} - \subitem {Asset.Bundle}, \hyperpage{47} - \subitem {Asset.Label}, \hyperpage{117} - \subitem {Asset.SubAsset}, \hyperpage{160} + \subitem {Asset.Bundle}, \hyperpage{48} + \subitem {Asset.Label}, \hyperpage{118} + \subitem {Asset.SubAsset}, \hyperpage{161} \item {RemoveLabel} - \subitem {Asset}, \hyperpage{30} + \subitem {Asset}, \hyperpage{31} \item {RemoveSubAsset} - \subitem {Asset}, \hyperpage{30} + \subitem {Asset}, \hyperpage{31} \item {RemoveUnused} - \subitem {Asset.Bundle}, \hyperpage{48} + \subitem {Asset.Bundle}, \hyperpage{49} \item {Rename} - \subitem {Asset}, \hyperpage{31} - \subitem {Asset.File}, \hyperpage{96} - \subitem {Asset.Path}, \hyperpage{144} + \subitem {Asset}, \hyperpage{32} + \subitem {Asset.File}, \hyperpage{97} + \subitem {Asset.Path}, \hyperpage{145} \item {ResetReconnectTimer} - \subitem {Asset.Database.CacheServer}, \hyperpage{58} + \subitem {Asset.Database.CacheServer}, \hyperpage{59} \indexspace \item {Save} - \subitem {Asset}, \hyperpage{32} - \subitem {Asset.File}, \hyperpage{97, 98} + \subitem {Asset}, \hyperpage{33} + \subitem {Asset.File}, \hyperpage{98, 99} \item {SaveAll} - \subitem {Asset.Database}, \hyperpage{53} + \subitem {Asset.Database}, \hyperpage{54} \item {SaveAs} - \subitem {Asset}, \hyperpage{32} - \item {SaveAsNew} \subitem {Asset}, \hyperpage{33} + \item {SaveAsNew} + \subitem {Asset}, \hyperpage{34} \item {SetAll} - \subitem {Asset.Label}, \hyperpage{118} + \subitem {Asset.Label}, \hyperpage{119} \item {SetDirty} - \subitem {Asset}, \hyperpage{34} + \subitem {Asset}, \hyperpage{35} \item {SetLabels} - \subitem {Asset}, \hyperpage{34} + \subitem {Asset}, \hyperpage{35} \item {SetMain} - \subitem {Asset.SubAsset}, \hyperpage{161} + \subitem {Asset.SubAsset}, \hyperpage{162} \item {SetOverride$<$ T $>$} - \subitem {Asset.Importer}, \hyperpage{111} + \subitem {Asset.Importer}, \hyperpage{112} \item {SubAssets} - \subitem {Asset}, \hyperpage{42} + \subitem {Asset}, \hyperpage{43} \item {SubFolders} - \subitem {Asset.Path}, \hyperpage{151} + \subitem {Asset.Path}, \hyperpage{152} \indexspace \item {ToMeta} - \subitem {Asset.Path}, \hyperpage{144} + \subitem {Asset.Path}, \hyperpage{145} \item {ToString} - \subitem {Asset.Path}, \hyperpage{144} - \item {ToStrings} \subitem {Asset.Path}, \hyperpage{145} + \item {ToStrings} + \subitem {Asset.Path}, \hyperpage{146} \item {Trash} - \subitem {Asset}, \hyperpage{35} - \subitem {Asset.File}, \hyperpage{98--100} + \subitem {Asset}, \hyperpage{36} + \subitem {Asset.File}, \hyperpage{99--101} \indexspace \item {UniqueFilePath} - \subitem {Asset.Path}, \hyperpage{151} + \subitem {Asset.Path}, \hyperpage{152} \item {UniquifyFileName} - \subitem {Asset.Path}, \hyperpage{145} + \subitem {Asset.Path}, \hyperpage{146} \item {Unregister} - \subitem {Asset.Dependency}, \hyperpage{65} + \subitem {Asset.Dependency}, \hyperpage{66} \item {Unused} - \subitem {Asset.Bundle}, \hyperpage{48} + \subitem {Asset.Bundle}, \hyperpage{49} \item {UpgradeAllAssetSerializationVersions} - \subitem {Asset.Database}, \hyperpage{53} + \subitem {Asset.Database}, \hyperpage{54} \item {UpgradeAssetSerializationVersion} - \subitem {Asset.Database}, \hyperpage{53, 54} + \subitem {Asset.Database}, \hyperpage{54, 55} \item {UploadsAllowed} - \subitem {Asset.Database.CacheServer}, \hyperpage{60} + \subitem {Asset.Database.CacheServer}, \hyperpage{61} \indexspace \item {VisibleSubAssets} - \subitem {Asset}, \hyperpage{42} + \subitem {Asset}, \hyperpage{43} \end{theindex} diff --git a/latex/refman.log b/latex/refman.log index 4152ae27..080af69c 100644 --- a/latex/refman.log +++ b/latex/refman.log @@ -1,4 +1,4 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.25 (MiKTeX 23.12) (preloaded format=pdflatex 2024.1.23) 31 JAN 2024 20:14 +This is pdfTeX, Version 3.141592653-2.6-1.40.25 (MiKTeX 23.12) (preloaded format=pdflatex 2024.1.23) 1 FEB 2024 13:02 entering extended mode restricted \write18 enabled. %&-line parsing enabled. @@ -925,14 +925,14 @@ to verbosely named, losely related [2] [3] [4]) (md__p_1_2de_8codesmile_8assetdatabase_2_c_h_a_n_g_e_l_o_g.tex [5] [6] [7] [8]) (md__p_1_2de_8codesmile_8assetdatabase_2_g_e_t_t_i_n_g_01_s_t_a_r_ -t_e_d.tex) (hierarchy.tex [9]) (annotated.tex +t_e_d.tex [9]) (hierarchy.tex [10]) (annotated.tex LaTeX Font Info: Font shape `TS1/phv/b/n' will be (Font) scaled to size 8.99994pt on input line 3. LaTeX Font Info: Font shape `T1/phv/b/it' in size <10> not available (Font) Font shape `T1/phv/b/sl' tried instead on input line 3. LaTeX Font Info: Font shape `T1/phv/b/sl' will be (Font) scaled to size 8.99994pt on input line 3. -[10]) (namespace_code_smile_editor.tex +[11]) (namespace_code_smile_editor.tex LaTeX Font Info: Font shape `T1/phv/m/n' will be (Font) scaled to size 8.09995pt on input line 7. LaTeX Font Info: Font shape `T1/phv/m/it' in size <9> not available @@ -952,8 +952,8 @@ LaTeX Font Info: Font shape `T1/phv/m/it' in size <10> not available (Font) Font shape `T1/phv/m/sl' tried instead on input line 5. LaTeX Font Info: Font shape `T1/phv/m/sl' will be (Font) scaled to size 8.99994pt on input line 5. -[11] <./class_code_smile_editor_1_1_asset__coll__graph.pdf> - + File: class_code_smile_editor_1_1_asset__coll__graph.pdf Graphic file (type pdf ) @@ -961,10 +961,10 @@ File: class_code_smile_editor_1_1_asset__coll__graph.pdf Graphic file (type pdf Package pdftex.def Info: class_code_smile_editor_1_1_asset__coll__graph.pdf us ed on input line 14. (pdftex.def) Requested size: 188.72157pt x 550.0pt. -[12] +[12] [13] LaTeX Font Info: Font shape `T1/pcr/m/it' in size <9> not available (Font) Font shape `T1/pcr/m/sl' tried instead on input line 33. -[13] [14] [15] +[14] [15] LaTeX Font Info: Font shape `T1/phv/b/n' will be (Font) scaled to size 7.19995pt on input line 184. LaTeX Font Info: Font shape `T1/phv/m/n' will be @@ -973,12 +973,12 @@ LaTeX Font Info: Font shape `T1/pcr/m/it' in size <8> not available (Font) Font shape `T1/pcr/m/sl' tried instead on input line 185. LaTeX Font Info: Font shape `T1/pcr/m/it' in size <7> not available (Font) Font shape `T1/pcr/m/sl' tried instead on input line 185. - +[16] Underfull \hbox (badness 10000) detected at line 209 [][][] [] -[16] +[17] Underfull \hbox (badness 10000) detected at line 260 [][][] [] @@ -986,7 +986,7 @@ Underfull \hbox (badness 10000) detected at line 260 Overfull \vbox (31.5251pt too high) has occurred while \output is active [] -[17] +[18] Underfull \hbox (badness 10000) detected at line 315 [][][] [] @@ -996,7 +996,7 @@ Underfull \hbox (badness 10000) detected at line 363 [][][] [] -[18] [19] +[19] [20] Underfull \hbox (badness 10000) detected at line 392 [][][] [] @@ -1006,7 +1006,7 @@ Underfull \hbox (badness 10000) detected at line 423 [][][] [] -[20] +[21] Underfull \hbox (badness 10000) detected at line 452 [][][] [] @@ -1021,7 +1021,7 @@ Underfull \hbox (badness 10000) detected at line 502 [][][] [] -[21] +[22] Overfull \hbox (47.36218pt too wide) in paragraph at lines 521--522 []\T1/phv/m/n/10 Returns false if one or more fold-ers in destination[]Path do not ex-ist. On fail-ure, use [] @@ -1052,7 +1052,7 @@ Underfull \hbox (badness 10000) detected at line 573 [][][] [] -[22] +[23] Underfull \hbox (badness 10000) detected at line 596 [][][] [] @@ -1065,7 +1065,7 @@ Underfull \hbox (badness 10000) detected at line 599 <./class_code_smile_editor_1_1_asset_af6ce8c8d3d810ae286e98e54aa360adf_af6ce8c 8d3d810ae286e98e54aa360adf_cgraph.pdf> +d810ae286e98e54aa360adf_cgraph.pdf, id=893, 300.12125pt x 112.42pt> File: class_code_smile_editor_1_1_asset_af6ce8c8d3d810ae286e98e54aa360adf_af6ce 8c8d3d810ae286e98e54aa360adf_cgraph.pdf Graphic file (type pdf) +a26b2d2d71f6e7b68f18fac_cgraph.pdf, id=947, 191.71625pt x 118.4425pt> File: class_code_smile_editor_1_1_asset_af1aa2544ba26b2d2d71f6e7b68f18fac_af1aa 2544ba26b2d2d71f6e7b68f18fac_cgraph.pdf Graphic file (type pdf) +a26b2d2d71f6e7b68f18fac_icgraph.pdf, id=955, 191.71625pt x 118.4425pt> File: class_code_smile_editor_1_1_asset_af1aa2544ba26b2d2d71f6e7b68f18fac_af1aa 2544ba26b2d2d71f6e7b68f18fac_icgraph.pdf Graphic file (type pdf) +7e3cb57b87d2ae09e4dd7f8_cgraph.pdf, id=1000, 317.185pt x 100.375pt> File: class_code_smile_editor_1_1_asset_a45faf9fc17e3cb57b87d2ae09e4dd7f8_a45fa f9fc17e3cb57b87d2ae09e4dd7f8_cgraph.pdf Graphic file (type pdf) +383d71d5b564df4a46b2675_cgraph.pdf, id=1064, 308.15125pt x 112.42pt> File: class_code_smile_editor_1_1_asset_a28fe22006383d71d5b564df4a46b2675_a28fe 22006383d71d5b564df4a46b2675_cgraph.pdf Graphic file (type pdf) +22d51bcf01bf6ad221e7119_icgraph.pdf, id=1090, 233.87375pt x 100.375pt> File: class_code_smile_editor_1_1_asset_a1c6432dab22d51bcf01bf6ad221e7119_a1c64 32dab22d51bcf01bf6ad221e7119_icgraph.pdf Graphic file (type pdf) +520b7f00cb047865ef50ad0_cgraph.pdf, id=1118, 233.87375pt x 100.375pt> File: class_code_smile_editor_1_1_asset_af23adc642520b7f00cb047865ef50ad0_af23a dc642520b7f00cb047865ef50ad0_cgraph.pdf Graphic file (type pdf) +227ab5d89fdabafffb9876a_cgraph.pdf, id=1144, 296.10625pt x 112.42pt> File: class_code_smile_editor_1_1_asset_a9ff25b59d227ab5d89fdabafffb9876a_a9ff2 5b59d227ab5d89fdabafffb9876a_cgraph.pdf Graphic file (type pdf) - File: class_code_smile_editor_1_1_asset_1_1_bundle__coll__graph.pdf Graphic fil e (type pdf) @@ -1475,12 +1475,12 @@ e (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_bundle__coll__gr aph.pdf used on input line 14. (pdftex.def) Requested size: 212.0pt x 276.01555pt. -[42] [43] +[43] [44] Underfull \hbox (badness 10000) detected at line 74 [][][] [] -[44] +[45] Underfull \hbox (badness 10000) detected at line 98 [][][] [] @@ -1500,7 +1500,7 @@ Underfull \hbox (badness 10000) detected at line 128 [][][] [] -[45] +[46] Underfull \hbox (badness 10000) detected at line 152 [][][] [] @@ -1520,7 +1520,7 @@ Underfull \hbox (badness 10000) detected at line 182 [][][] [] -[46] +[47] Underfull \hbox (badness 10000) detected at line 206 [][][] [] @@ -1543,7 +1543,7 @@ Underfull \hbox (badness 10000) detected at line 238 Overfull \vbox (9.50528pt too high) has occurred while \output is active [] -[47] +[48] Underfull \hbox (badness 10000) detected at line 264 [][][] [] @@ -1565,7 +1565,7 @@ Underfull \hbox (badness 10000) detected at line 330 ) (class_code_smile_editor_1_1_asset_1_1_database.tex <./class_code_smile_edito r_1_1_asset_1_1_database__coll__graph.pdf> - File: class_code_smile_editor_1_1_asset_1_1_database__coll__graph.pdf Graphic f ile (type pdf) @@ -1573,7 +1573,7 @@ ile (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_database__coll__ graph.pdf used on input line 14. (pdftex.def) Requested size: 224.0pt x 328.01346pt. -[48] +[49] LaTeX Font Info: Font shape `T1/phv/b/it' in size <9> not available (Font) Font shape `T1/phv/b/sl' tried instead on input line 34. LaTeX Font Info: Font shape `T1/phv/b/sl' will be @@ -1584,7 +1584,7 @@ Underfull \hbox (badness 3826) in paragraph at lines 34--34 m mod-i-fi-ca-tions and up-dates the Database ac-cord-ingly. Pre-fer to use [] -[49] +[50] Underfull \hbox (badness 10000) detected at line 78 [][][] [] @@ -1594,7 +1594,7 @@ Overfull \hbox (1.47571pt too wide) in paragraph at lines 1--1 []\T1/phv/m/sl/10 instance[] [] -[50] +[51] Underfull \hbox (badness 10000) detected at line 102 [][][] [] @@ -1619,7 +1619,7 @@ Underfull \hbox (badness 10000) detected at line 151 [][][] [] -[51] +[52] Underfull \hbox (badness 2856) in paragraph at lines 168--169 []\T1/phv/m/n/10 Scans for \T1/phv/b/n/10 ex-ter-nal \T1/phv/m/n/10 file sys-te m mod-i-fi-ca-tions and up-dates the Database ac-cord-ingly. Pre-fer to use @@ -1630,7 +1630,7 @@ Underfull \hbox (badness 10000) detected at line 200 [][][] [] -[52] +[53] Underfull \hbox (badness 10000) detected at line 221 [][][] [] @@ -1651,7 +1651,7 @@ Overfull \hbox (76.8617pt too wide) in paragraph at lines 277--278 orceReserializeAssetsOptions.ReserializeAssetsAndMetadata [] -[53] +[54] Underfull \hbox (badness 10000) detected at line 292 [][][] [] @@ -1667,7 +1667,7 @@ Underfull \hbox (badness 10000) detected at line 320 [][][] [] -[54] +[55] Underfull \hbox (badness 10000) detected at line 344 [][][] [] @@ -1680,7 +1680,7 @@ Underfull \hbox (badness 10000) detected at line 381 ) (class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server.tex <./class _code_smile_editor_1_1_asset_1_1_database_1_1_cache_server__coll__graph.pdf> +df, id=1552, 217.81375pt x 293.095pt> File: class_code_smile_editor_1_1_asset_1_1_database_1_1_cache_server__coll__gr aph.pdf Graphic file (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_database_1_1_cac he_server__coll__graph.pdf used on input line 14. (pdftex.def) Requested size: 217.0pt x 291.99855pt. -[55] [56] +[56] [57] Underfull \hbox (badness 10000) detected at line 67 [][][] [] @@ -1698,7 +1698,7 @@ Underfull \hbox (badness 10000) detected at line 92 [][][] [] -[57] +[58] Underfull \hbox (badness 10000) detected at line 95 [][][] [] @@ -1723,7 +1723,7 @@ Underfull \hbox (badness 10000) detected at line 176 [][][] [] -[58] +[59] Underfull \hbox (badness 10000) detected at line 200 [][][] [] @@ -1738,7 +1738,7 @@ Underfull \hbox (badness 10000) detected at line 244 [][][] [] -[59] +[60] Underfull \hbox (badness 10000) detected at line 266 [][][] [] @@ -1755,7 +1755,7 @@ Underfull \hbox (badness 10000) detected at line 312 ) (class_code_smile_editor_1_1_asset_1_1_dependency.tex <./class_code_smile_edi tor_1_1_asset_1_1_dependency__coll__graph.pdf> - File: class_code_smile_editor_1_1_asset_1_1_dependency__coll__graph.pdf Graphic file (type pdf) @@ -1763,7 +1763,7 @@ File: class_code_smile_editor_1_1_asset_1_1_dependency__coll__graph.pdf Graphic Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_dependency__coll __graph.pdf used on input line 14. (pdftex.def) Requested size: 172.0pt x 244.00252pt. -[60] [61] +[61] [62] Underfull \hbox (badness 10000) detected at line 61 [][][] [] @@ -1773,7 +1773,7 @@ Underfull \hbox (badness 10000) detected at line 64 [][][] [] -[62] +[63] Underfull \hbox (badness 10000) detected at line 89 [][][] [] @@ -1793,7 +1793,7 @@ Underfull \hbox (badness 10000) detected at line 120 [][][] [] -[63] +[64] Underfull \hbox (badness 10000) detected at line 145 [][][] [] @@ -1813,7 +1813,7 @@ Underfull \hbox (badness 10000) detected at line 178 [][][] [] -[64] +[65] Underfull \hbox (badness 10000) detected at line 204 [][][] [] @@ -1831,7 +1831,7 @@ Underfull \hbox (badness 10000) detected at line 233 Overfull \vbox (3.34293pt too high) has occurred while \output is active [] -[65] +[66] Underfull \hbox (badness 10000) detected at line 257 [][][] [] @@ -1843,7 +1843,7 @@ Underfull \hbox (badness 10000) detected at line 260 ) (class_code_smile_editor_1_1_asset_1_1_file.tex <./class_code_smile_editor_1_ 1_asset_1_1_file__coll__graph.pdf> - File: class_code_smile_editor_1_1_asset_1_1_file__coll__graph.pdf Graphic file (type pdf) @@ -1851,12 +1851,18 @@ File: class_code_smile_editor_1_1_asset_1_1_file__coll__graph.pdf Graphic file Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_file__coll__grap h.pdf used on input line 14. (pdftex.def) Requested size: 180.0pt x 388.00404pt. -[66] [67] [68] +[67] [68] +Underfull \hbox (badness 768) in paragraph at lines 81--82 +[]\T1/phv/m/n/10 static void [] ([]Not[]Null[] IEnumerable$\OML/cmm/m/it/10 <$ +[] $>$ \T1/phv/m/n/10 paths, Import[]Asset[]Options options=Import[]Asset[] + [] + +[69] Underfull \hbox (badness 10000) detected at line 162 [][][] [] -[69] +[70] Underfull \hbox (badness 10000) detected at line 210 [][][] [] @@ -1866,7 +1872,7 @@ Underfull \hbox (badness 10000) detected at line 213 [][][] [] -[70] +[71] Underfull \hbox (badness 10000) detected at line 255 [][][] [] @@ -1891,7 +1897,7 @@ Underfull \hbox (badness 10000) detected at line 287 [][][] [] -[71] +[72] Underfull \hbox (badness 10000) detected at line 315 [][][] [] @@ -1911,7 +1917,7 @@ Underfull \hbox (badness 10000) detected at line 350 [][][] [] -[72] +[73] Underfull \hbox (badness 10000) detected at line 379 [][][] [] @@ -1924,7 +1930,7 @@ Underfull \hbox (badness 10000) detected at line 382 <./class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d22 2_a64bf135da6d9a9b8a5b59c50e839d222_icgraph.pdf> +64bf135da6d9a9b8a5b59c50e839d222_icgraph.pdf, id=1985, 260.975pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_file_a64bf135da6d9a9b8a5b59c50e839d 222_a64bf135da6d9a9b8a5b59c50e839d222_icgraph.pdf Graphic file (type pdf) +5a01eb8f2adc1117b9df394acbe3c529_icgraph.pdf, id=2085, 309.155pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_file_a5a01eb8f2adc1117b9df394acbe3c 529_a5a01eb8f2adc1117b9df394acbe3c529_icgraph.pdf Graphic file (type pdf) +3192f3d24b4397b10f50ef366ee3feba_icgraph.pdf, id=2184, 264.99pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_file_a3192f3d24b4397b10f50ef366ee3f eba_a3192f3d24b4397b10f50ef366ee3feba_icgraph.pdf Graphic file (type pdf) +82b0bb0beb5f5422951631789bca4256_cgraph.pdf, id=2198, 350.30875pt x 138.5175pt> File: class_code_smile_editor_1_1_asset_1_1_file_a82b0bb0beb5f5422951631789bca4 256_a82b0bb0beb5f5422951631789bca4256_cgraph.pdf Graphic file (type pdf) @@ -2170,7 +2176,7 @@ Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_file_a82b0bb0beb 5f5422951631789bca4256_a82b0bb0beb5f5422951631789bca4256_cgraph.pdf used on in put line 1115. (pdftex.def) Requested size: 349.0pt x 138.00987pt. -[85] +[86] Overfull \hbox (1.47571pt too wide) in paragraph at lines 3--3 []\T1/phv/m/sl/10 file[] [] @@ -2185,40 +2191,34 @@ Underfull \hbox (badness 10000) detected at line 1138 [][][] [] -[86] -Underfull \hbox (badness 10000) detected at line 1169 +[87] +Underfull \hbox (badness 10000) detected at line 1165 +[][][] + [] + + +Underfull \hbox (badness 10000) detected at line 1193 +[][][] + [] + +[88] +Underfull \hbox (badness 10000) detected at line 1225 [][][] [] <./class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75ec9 7_ae11a13bfe131ec8b20a5a5667e75ec97_icgraph.pdf> +e11a13bfe131ec8b20a5a5667e75ec97_icgraph.pdf, id=2259, 298.11375pt x 112.42pt> File: class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe131ec8b20a5a5667e75e c97_ae11a13bfe131ec8b20a5a5667e75ec97_icgraph.pdf Graphic file (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_file_ae11a13bfe1 31ec8b20a5a5667e75ec97_ae11a13bfe131ec8b20a5a5667e75ec97_icgraph.pdf used on i -nput line 1202. +nput line 1258. (pdftex.def) Requested size: 297.0pt x 112.0063pt. - -Overfull \vbox (5.92316pt too high) has occurred while \output is active [] - -[87] -Underfull \hbox (badness 10000) detected at line 1224 -[][][] - [] - - -Underfull \hbox (badness 10000) detected at line 1252 -[][][] - [] - - -Overfull \vbox (16.69324pt too high) has occurred while \output is active [] - -[88] +[89] Underfull \hbox (badness 10000) detected at line 1289 [][][] [] @@ -2236,7 +2236,7 @@ Underfull \hbox (badness 10000) detected at line 1306 <./class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb4233c 0_a4dc6aff1e32f03b26ec0e310fb4233c0_icgraph.pdf> +4dc6aff1e32f03b26ec0e310fb4233c0_icgraph.pdf, id=2292, 321.2pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_file_a4dc6aff1e32f03b26ec0e310fb423 3c0_a4dc6aff1e32f03b26ec0e310fb4233c0_icgraph.pdf Graphic file (type pdf) +9702d12ef27f2d0dfd1f8201fbb37088_cgraph.pdf, id=2354, 358.33875pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_file_a9702d12ef27f2d0dfd1f8201fbb37 088_a9702d12ef27f2d0dfd1f8201fbb37088_cgraph.pdf Graphic file (type pdf) +8e86208ec0d709c8259baacdb5e70281_cgraph.pdf, id=2388, 321.2pt x 138.5175pt> File: class_code_smile_editor_1_1_asset_1_1_file_a8e86208ec0d709c8259baacdb5e70 281_a8e86208ec0d709c8259baacdb5e70281_cgraph.pdf Graphic file (type pdf) +996c0cfd9dbc6b65d0efec125ca6ec75_icgraph.pdf, id=2415, 298.11375pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_file_a996c0cfd9dbc6b65d0efec125ca6e c75_a996c0cfd9dbc6b65d0efec125ca6ec75_icgraph.pdf Graphic file (type pdf) @@ -2367,7 +2367,7 @@ Underfull \hbox (badness 10000) detected at line 1702 [][][] [] -[95] +[96] Underfull \hbox (badness 10000) detected at line 1732 [][][] [] @@ -2377,7 +2377,7 @@ Underfull \hbox (badness 10000) detected at line 1762 [][][] [] -[96] +[97] Underfull \hbox (badness 10000) detected at line 1790 [][][] [] @@ -2390,7 +2390,7 @@ Underfull \hbox (badness 10000) detected at line 1793 <./class_code_smile_editor_1_1_asset_1_1_file_a34bfcab396a4bfed873f01e8622033a b_a34bfcab396a4bfed873f01e8622033ab_icgraph.pdf> +34bfcab396a4bfed873f01e8622033ab_icgraph.pdf, id=2453, 325.215pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_file_a34bfcab396a4bfed873f01e862203 3ab_a34bfcab396a4bfed873f01e8622033ab_icgraph.pdf Graphic file (type pdf) +7b0aaffab801a8597c60daff4bccb177_icgraph.pdf, id=2510, 301.125pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_file_a7b0aaffab801a8597c60daff4bccb 177_a7b0aaffab801a8597c60daff4bccb177_icgraph.pdf Graphic file (type pdf) - File: class_code_smile_editor_1_1_asset_1_1_importer__coll__graph.pdf Graphic f ile (type pdf) @@ -2481,12 +2481,12 @@ ile (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_importer__coll__ graph.pdf used on input line 14. (pdftex.def) Requested size: 189.0pt x 308.00792pt. -[101] [102] +[102] [103] Underfull \hbox (badness 10000) detected at line 79 [][][] [] -[103] +[104] Underfull \hbox (badness 10000) detected at line 104 [][][] [] @@ -2501,7 +2501,7 @@ Underfull \hbox (badness 10000) detected at line 135 [][][] [] -[104] +[105] Underfull \hbox (badness 10000) detected at line 162 [][][] [] @@ -2521,7 +2521,7 @@ Underfull \hbox (badness 10000) detected at line 211 [][][] [] -[105] +[106] Underfull \hbox (badness 10000) detected at line 238 [][][] [] @@ -2536,7 +2536,7 @@ Underfull \hbox (badness 10000) detected at line 283 [][][] [] -[106] +[107] Underfull \hbox (badness 10000) detected at line 286 [][][] [] @@ -2551,7 +2551,7 @@ Underfull \hbox (badness 10000) detected at line 332 [][][] [] -[107] +[108] Underfull \hbox (badness 10000) detected at line 373 [][][] [] @@ -2571,7 +2571,7 @@ Underfull \hbox (badness 10000) detected at line 402 [][][] [] -[108] +[109] Underfull \hbox (badness 10000) detected at line 440 [][][] [] @@ -2591,7 +2591,7 @@ Underfull \hbox (badness 10000) detected at line 470 [][][] [] -[109] +[110] Underfull \hbox (badness 10000) detected at line 509 [][][] [] @@ -2611,7 +2611,7 @@ Underfull \hbox (badness 10000) detected at line 540 [][][] [] -[110] +[111] Underfull \hbox (badness 10000) detected at line 565 [][][] [] @@ -2626,7 +2626,7 @@ Underfull \hbox (badness 10000) detected at line 600 [][][] [] -[111] +[112] Underfull \hbox (badness 10000) detected at line 612 [][][] [] @@ -2637,7 +2637,7 @@ LaTeX Font Info: Font shape `T1/phv/b/sl' will be (Font) scaled to size 6.29996pt on input line 613. ) (class_code_smile_editor_1_1_asset_1_1_label.tex <./class_code_smile_editor_1 _1_asset_1_1_label__coll__graph.pdf> - File: class_code_smile_editor_1_1_asset_1_1_label__coll__graph.pdf Graphic file (type pdf) @@ -2645,7 +2645,7 @@ File: class_code_smile_editor_1_1_asset_1_1_label__coll__graph.pdf Graphic file Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_label__coll__gra ph.pdf used on input line 14. (pdftex.def) Requested size: 141.0pt x 244.02121pt. -[112] +[113] Underfull \hbox (badness 10000) detected at line 63 [][][] [] @@ -2653,7 +2653,7 @@ Underfull \hbox (badness 10000) detected at line 63 <./class_code_smile_editor_1_1_asset_1_1_label_ad2dd0c24ca248dac498e168471c296 ae_ad2dd0c24ca248dac498e168471c296ae_cgraph.pdf> +ad2dd0c24ca248dac498e168471c296ae_cgraph.pdf, id=2779, 192.72pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_label_ad2dd0c24ca248dac498e168471c2 96ae_ad2dd0c24ca248dac498e168471c296ae_cgraph.pdf Graphic file (type pdf) +a0db1d630d411ce9b9afaab8893ca433c_cgraph.pdf, id=2807, 192.72pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_label_a0db1d630d411ce9b9afaab8893ca 433c_a0db1d630d411ce9b9afaab8893ca433c_cgraph.pdf Graphic file (type pdf) +a4418d3b1b76b6577c27d30a67b4f9ebf_icgraph.pdf, id=2835, 210.7875pt x 176.66pt> File: class_code_smile_editor_1_1_asset_1_1_label_a4418d3b1b76b6577c27d30a67b4f 9ebf_a4418d3b1b76b6577c27d30a67b4f9ebf_icgraph.pdf Graphic file (type pdf) +a8779550c9894264310e4aff424a898d1_cgraph.pdf, id=2875, 210.7875pt x 138.5175pt> File: class_code_smile_editor_1_1_asset_1_1_label_a8779550c9894264310e4aff424a8 98d1_a8779550c9894264310e4aff424a898d1_cgraph.pdf Graphic file (type pdf) @@ -2744,7 +2744,7 @@ Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_label_a8779550c9 894264310e4aff424a898d1_a8779550c9894264310e4aff424a898d1_cgraph.pdf used on i nput line 315. (pdftex.def) Requested size: 210.0pt x 138.00354pt. -[117] +[118] Underfull \hbox (badness 10000) detected at line 335 [][][] [] @@ -2752,7 +2752,7 @@ Underfull \hbox (badness 10000) detected at line 335 <./class_code_smile_editor_1_1_asset_1_1_label_a82888b12b37f839fbabcb62e8fe169 af_a82888b12b37f839fbabcb62e8fe169af_icgraph.pdf> File: class_code_smile_editor_1_1_asset_1_1_label_a82888b12b37f839fbabcb62e8fe1 69af_a82888b12b37f839fbabcb62e8fe169af_icgraph.pdf Graphic file (type pdf) @@ -2762,9 +2762,9 @@ Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_label_a82888b12b 37f839fbabcb62e8fe169af_a82888b12b37f839fbabcb62e8fe169af_icgraph.pdf used on input line 367. (pdftex.def) Requested size: 209.0pt x 99.9995pt. -) (class_code_smile_editor_1_1_asset_1_1_package.tex [118] <./class_code_smile_ +) (class_code_smile_editor_1_1_asset_1_1_package.tex [119] <./class_code_smile_ editor_1_1_asset_1_1_package__coll__graph.pdf> - File: class_code_smile_editor_1_1_asset_1_1_package__coll__graph.pdf Graphic fi le (type pdf) @@ -2784,7 +2784,7 @@ Underfull \hbox (badness 1009) in paragraph at lines 22--23 ull[] String package[]Path, Export[]Package[]Options [] -[119] +[120] Underfull \hbox (badness 10000) detected at line 61 [][][] [] @@ -2794,7 +2794,7 @@ Underfull \hbox (badness 10000) detected at line 102 [][][] [] -[120] +[121] Underfull \hbox (badness 10000) detected at line 130 [][][] [] @@ -2804,14 +2804,14 @@ Underfull \hbox (badness 10000) detected at line 167 [][][] [] -[121] +[122] Underfull \hbox (badness 10000) detected at line 206 [][][] [] ) (class_code_smile_editor_1_1_asset_1_1_path.tex <./class_code_smile_editor_1_ 1_asset_1_1_path__inherit__graph.pdf> - File: class_code_smile_editor_1_1_asset_1_1_path__inherit__graph.pdf Graphic fi le (type pdf) @@ -2819,8 +2819,8 @@ le (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_path__inherit__g raph.pdf used on input line 14. (pdftex.def) Requested size: 219.41371pt x 550.0pt. -[122] <./class_code_smile_editor_1_1_asset_1_1_path__coll__graph.pdf> - + File: class_code_smile_editor_1_1_asset_1_1_path__coll__graph.pdf Graphic file (type pdf) @@ -2828,7 +2828,7 @@ File: class_code_smile_editor_1_1_asset_1_1_path__coll__graph.pdf Graphic file Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_path__coll__grap h.pdf used on input line 23. (pdftex.def) Requested size: 219.41371pt x 550.0pt. -[123] [124] [125] [126] [127] +[124] [125] [126] [127] [128] Underfull \hbox (badness 10000) detected at line 200 [][][] [] @@ -2838,7 +2838,7 @@ Underfull \hbox (badness 10000) detected at line 246 [][][] [] -[128] +[129] Underfull \hbox (badness 10000) detected at line 288 [][][] [] @@ -2846,7 +2846,7 @@ Underfull \hbox (badness 10000) detected at line 288 <./class_code_smile_editor_1_1_asset_1_1_path_a3d0d7574b95b19be03fdfd90e6c628e 2_a3d0d7574b95b19be03fdfd90e6c628e2_cgraph.pdf> +3d0d7574b95b19be03fdfd90e6c628e2_cgraph.pdf, id=3215, 184.69pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_path_a3d0d7574b95b19be03fdfd90e6c62 8e2_a3d0d7574b95b19be03fdfd90e6c628e2_cgraph.pdf Graphic file (type pdf) +a30592adbaf54202ead85cd483107e55_cgraph.pdf, id=3246, 264.99pt x 176.66pt> File: class_code_smile_editor_1_1_asset_1_1_path_aa30592adbaf54202ead85cd483107 e55_aa30592adbaf54202ead85cd483107e55_cgraph.pdf Graphic file (type pdf) File: class_code_smile_editor_1_1_asset_1_1_path_a16e59bfb7ec5500d91fa1e8baaed7 ec3_a16e59bfb7ec5500d91fa1e8baaed7ec3_icgraph.pdf Graphic file (type pdf) @@ -2905,12 +2905,12 @@ Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_path_a16e59bfb7e c5500d91fa1e8baaed7ec3_a16e59bfb7ec5500d91fa1e8baaed7ec3_icgraph.pdf used on i nput line 472. (pdftex.def) Requested size: 225.0pt x 138.00777pt. -[131] +[132] Underfull \hbox (badness 10000) detected at line 494 [][][] [] -[132] +[133] Underfull \hbox (badness 10000) detected at line 514 [][][] [] @@ -2918,7 +2918,7 @@ Underfull \hbox (badness 10000) detected at line 514 <./class_code_smile_editor_1_1_asset_1_1_path_a37cffbb9ed1db3b0e77664ad01b6fd0 1_a37cffbb9ed1db3b0e77664ad01b6fd01_cgraph.pdf> +37cffbb9ed1db3b0e77664ad01b6fd01_cgraph.pdf, id=3302, 208.78pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_path_a37cffbb9ed1db3b0e77664ad01b6f d01_a37cffbb9ed1db3b0e77664ad01b6fd01_cgraph.pdf Graphic file (type pdf) +e2e7b500cc4d1f97b7c6051181aa833f_icgraph.pdf, id=3313, 252.945pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_path_ae2e7b500cc4d1f97b7c6051181aa8 33f_ae2e7b500cc4d1f97b7c6051181aa833f_icgraph.pdf Graphic file (type pdf) +18386e05fe0620f7baaa0c21543f455c_icgraph.pdf, id=3332, 264.99pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_path_a18386e05fe0620f7baaa0c21543f4 55c_a18386e05fe0620f7baaa0c21543f455c_icgraph.pdf Graphic file (type pdf) File: class_code_smile_editor_1_1_asset_1_1_path_aa3620ff1f8b2c02fc1282284cd7c1 df8_aa3620ff1f8b2c02fc1282284cd7c1df8_icgraph.pdf Graphic file (type pdf) @@ -3009,7 +3009,7 @@ Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_path_aa3620ff1f8 b2c02fc1282284cd7c1df8_aa3620ff1f8b2c02fc1282284cd7c1df8_icgraph.pdf used on i nput line 692. (pdftex.def) Requested size: 301.0pt x 325.9984pt. -[135] +[136] Underfull \hbox (badness 10000) detected at line 710 [][][] [] @@ -3019,10 +3019,10 @@ Underfull \hbox (badness 10000) detected at line 713 [][][] [] -[136] <./class_code_smile_editor_1_1_asset_1_1_path_a7b337848207b6bc5aebde6ae18 +[137] <./class_code_smile_editor_1_1_asset_1_1_path_a7b337848207b6bc5aebde6ae18 e18d54_a7b337848207b6bc5aebde6ae18e18d54_cgraph.pdf> +7b337848207b6bc5aebde6ae18e18d54_cgraph.pdf, id=3397, 180.675pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_path_a7b337848207b6bc5aebde6ae18e18 d54_a7b337848207b6bc5aebde6ae18e18d54_cgraph.pdf Graphic file (type pdf) +ba3e55bf4914578717ffd4ec9707c29f_cgraph.pdf, id=3490, 225.84375pt x 100.375pt> File: class_code_smile_editor_1_1_asset_1_1_path_aba3e55bf4914578717ffd4ec9707c 29f_aba3e55bf4914578717ffd4ec9707c29f_cgraph.pdf Graphic file (type pdf) - File: class_code_smile_editor_1_1_asset_1_1_status__coll__graph.pdf Graphic fil e (type pdf) @@ -3263,7 +3263,7 @@ e (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_status__coll__gr aph.pdf used on input line 14. (pdftex.def) Requested size: 149.0pt x 244.01747pt. -[151] [152] +[152] [153] Underfull \hbox (badness 10000) detected at line 63 [][][] [] @@ -3283,7 +3283,7 @@ Underfull \hbox (badness 10000) detected at line 97 [][][] [] -[153] +[154] Underfull \hbox (badness 10000) detected at line 127 [][][] [] @@ -3293,7 +3293,7 @@ Underfull \hbox (badness 10000) detected at line 130 [][][] [] -[154] +[155] Underfull \hbox (badness 10000) detected at line 156 [][][] [] @@ -3313,7 +3313,7 @@ Underfull \hbox (badness 10000) detected at line 186 [][][] [] -[155] +[156] Underfull \hbox (badness 10000) detected at line 212 [][][] [] @@ -3333,14 +3333,14 @@ Underfull \hbox (badness 10000) detected at line 257 [][][] [] -[156] +[157] Underfull \hbox (badness 10000) detected at line 260 [][][] [] ) (class_code_smile_editor_1_1_asset_1_1_sub_asset.tex <./class_code_smile_edit or_1_1_asset_1_1_sub_asset__coll__graph.pdf> - File: class_code_smile_editor_1_1_asset_1_1_sub_asset__coll__graph.pdf Graphic file (type pdf) @@ -3348,12 +3348,12 @@ file (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_sub_asset__coll_ _graph.pdf used on input line 14. (pdftex.def) Requested size: 161.0pt x 228.01285pt. -[157] +[158] Underfull \hbox (badness 10000) detected at line 63 [][][] [] -[158] +[159] Underfull \hbox (badness 10000) detected at line 109 [][][] [] @@ -3373,7 +3373,7 @@ Underfull \hbox (badness 10000) detected at line 157 [][][] [] -[159] +[160] Underfull \hbox (badness 10000) detected at line 187 [][][] [] @@ -3388,7 +3388,7 @@ Underfull \hbox (badness 10000) detected at line 214 [][][] [] -[160] +[161] Underfull \hbox (badness 10000) detected at line 255 [][][] [] @@ -3398,10 +3398,10 @@ Underfull \hbox (badness 10000) detected at line 284 [][][] [] -[161] <./class_code_smile_editor_1_1_asset_1_1_sub_asset_ac4fb08375dcad548d850e +[162] <./class_code_smile_editor_1_1_asset_1_1_sub_asset_ac4fb08375dcad548d850e ec212582519_ac4fb08375dcad548d850eec212582519_cgraph.pdf> File: class_code_smile_editor_1_1_asset_1_1_sub_asset_ac4fb08375dcad548d850eec2 12582519_ac4fb08375dcad548d850eec212582519_cgraph.pdf Graphic file (type pdf) @@ -3414,14 +3414,14 @@ on input line 314. ) (class_code_smile_editor_1_1_asset_1_1_version_control.tex <./class_code_smil e_editor_1_1_asset_1_1_version_control__coll__graph.pdf> +6, 206.7725pt x 357.335pt> File: class_code_smile_editor_1_1_asset_1_1_version_control__coll__graph.pdf Gr aphic file (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_version_control_ _coll__graph.pdf used on input line 14. (pdftex.def) Requested size: 206.0pt x 356.00916pt. -[162] [163] +[163] [164] Underfull \hbox (badness 10000) detected at line 79 [][][] [] @@ -3434,7 +3434,7 @@ Underfull \hbox (badness 10000) detected at line 82 <./class_code_smile_editor_1_1_asset_1_1_version_control_a7f6bbb0782e7f7635706 b0e0bc921341_a7f6bbb0782e7f7635706b0e0bc921341_cgraph.pdf> File: class_code_smile_editor_1_1_asset_1_1_version_control_a7f6bbb0782e7f76357 06b0e0bc921341_a7f6bbb0782e7f7635706b0e0bc921341_cgraph.pdf Graphic file (type @@ -3445,7 +3445,7 @@ Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_version_control_ a7f6bbb0782e7f7635706b0e0bc921341_a7f6bbb0782e7f7635706b0e0bc921341_cgraph.pdf used on input line 114. (pdftex.def) Requested size: 350.0pt x 131.25058pt. -[164] +[165] Underfull \hbox (badness 10000) detected at line 138 [][][] [] @@ -3460,10 +3460,10 @@ Underfull \hbox (badness 10000) detected at line 171 [][][] [] -[165] <./class_code_smile_editor_1_1_asset_1_1_version_control_a50c91ed4f412156 +[166] <./class_code_smile_editor_1_1_asset_1_1_version_control_a50c91ed4f412156 1ad75f3f2efc38af9_a50c91ed4f4121561ad75f3f2efc38af9_icgraph.pdf> File: class_code_smile_editor_1_1_asset_1_1_version_control_a50c91ed4f4121561ad 75f3f2efc38af9_a50c91ed4f4121561ad75f3f2efc38af9_icgraph.pdf Graphic file (type @@ -3474,7 +3474,7 @@ Package pdftex.def Info: class_code_smile_editor_1_1_asset_1_1_version_control_ a50c91ed4f4121561ad75f3f2efc38af9_a50c91ed4f4121561ad75f3f2efc38af9_icgraph.pdf used on input line 205. (pdftex.def) Requested size: 301.0pt x 99.9995pt. -[166] +[167] Underfull \hbox (badness 10000) detected at line 229 [][][] [] @@ -3484,7 +3484,7 @@ Underfull \hbox (badness 10000) detected at line 261 [][][] [] -[167] +[168] Underfull \hbox (badness 10000) detected at line 303 [][][] [] @@ -3499,7 +3499,7 @@ Underfull \hbox (badness 10000) detected at line 352 [][][] [] -[168] +[169] Underfull \hbox (badness 10000) detected at line 382 [][][] [] @@ -3509,7 +3509,7 @@ Underfull \hbox (badness 10000) detected at line 412 [][][] [] -[169] +[170] Underfull \hbox (badness 10000) detected at line 452 [][][] [] @@ -3519,7 +3519,7 @@ Underfull \hbox (badness 10000) detected at line 455 [][][] [] -[170] +[171] Underfull \hbox (badness 10000) detected at line 497 [][][] [] @@ -3539,7 +3539,7 @@ Underfull \hbox (badness 10000) detected at line 531 [][][] [] -[171] +[172] Underfull \hbox (badness 10000) detected at line 559 [][][] [] @@ -3559,7 +3559,7 @@ Underfull \hbox (badness 10000) detected at line 595 [][][] [] -[172] +[173] Underfull \hbox (badness 10000) detected at line 625 [][][] [] @@ -3571,7 +3571,7 @@ Underfull \hbox (badness 10000) detected at line 628 ) (class_code_smile_editor_1_1_asset_load_exception.tex <./class_code_smile_edi tor_1_1_asset_load_exception__inherit__graph.pdf> - File: class_code_smile_editor_1_1_asset_load_exception__inherit__graph.pdf Grap hic file (type pdf) @@ -3579,8 +3579,8 @@ hic file (type pdf) Package pdftex.def Info: class_code_smile_editor_1_1_asset_load_exception__inhe rit__graph.pdf used on input line 14. (pdftex.def) Requested size: 194.0pt x 252.01035pt. -[173] <./class_code_smile_editor_1_1_asset_load_exception__coll__graph.pdf> - + File: class_code_smile_editor_1_1_asset_load_exception__coll__graph.pdf Graphic file (type pdf) @@ -3588,9 +3588,8 @@ File: class_code_smile_editor_1_1_asset_load_exception__coll__graph.pdf Graphic Package pdftex.def Info: class_code_smile_editor_1_1_asset_load_exception__coll __graph.pdf used on input line 23. (pdftex.def) Requested size: 194.0pt x 252.01035pt. -[174]) [175] [176 +[175]) [176] (refman.ind [177 -] (refman.ind [177 ] [178] [179] [180] [181] [182 @@ -4214,9 +4213,9 @@ ype1/urw/helvetic/uhvb8ac.pfb> -Output written on refman.pdf (184 pages, 1951791 bytes). +Output written on refman.pdf (184 pages, 1951850 bytes). PDF statistics: - 5002 PDF objects out of 5155 (max. 8388607) + 5000 PDF objects out of 5155 (max. 8388607) 1293 named destinations out of 1440 (max. 500000) 853 words of extra memory for PDF output out of 10000 (max. 10000000) diff --git a/latex/refman.toc b/latex/refman.toc index 3bd4d2c3..4e4ad1fd 100644 --- a/latex/refman.toc +++ b/latex/refman.toc @@ -14,348 +14,348 @@ \contentsline {subsection}{\numberline {1.9}What to expect from me?}{5}{subsection.1.9}% \contentsline {subsection}{\numberline {1.10}Support, Feeback, Inquiries}{5}{subsection.1.10}% \contentsline {section}{\numberline {2}Change Log}{6}{section.2}% -\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}9.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Jan 31, 2024}{6}{section*.1}% +\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}9.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Feb 01, 2024}{6}{section*.1}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}6 -\/ Jan 30, 2024}{6}{section*.2}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}5 -\/ Jan 29, 2024}{6}{section*.3}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}4 -\/ Jan 24, 2024}{6}{section*.4}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3 -\/ Jan 22, 2024}{6}{section*.5}% -\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}2 -\/ Dec 26, 2023}{6}{section*.6}% +\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}2 -\/ Dec 26, 2023}{7}{section*.6}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Dec 21, 2023}{7}{section*.7}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}8.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Dec 09, 2023}{7}{section*.8}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}7.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Dec 05, 2023}{7}{section*.9}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}7.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Dec 03, 2023}{7}{section*.10}% -\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}6.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 30, 2023}{7}{section*.11}% +\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}6.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 30, 2023}{8}{section*.11}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}4.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Nov 24, 2023}{8}{section*.12}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}4.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 24, 2023}{8}{section*.13}% -\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Nov 24, 2023}{8}{section*.14}% -\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 23, 2023}{8}{section*.15}% +\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Nov 24, 2023}{9}{section*.14}% +\contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 23, 2023}{9}{section*.15}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}2.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1 -\/ Nov 22, 2023}{9}{section*.16}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}2.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 22, 2023}{9}{section*.17}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}4 -\/ Nov 13, 2023}{9}{section*.18}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}3 -\/ Nov 12, 2023}{9}{section*.19}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 10, 2023}{9}{section*.20}% \contentsline {paragraph}{v1.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}0 -\/ Nov 9, 2023}{9}{section*.21}% -\contentsline {section}{\numberline {3}Code\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Smile Packages -\/ Getting Started}{9}{section.3}% +\contentsline {section}{\numberline {3}Code\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Smile Packages -\/ Getting Started}{10}{section.3}% \contentsline {section}{\numberline {4}Hierarchical Index}{10}{section.4}% \contentsline {subsection}{\numberline {4.1}Class Hierarchy}{10}{subsection.4.1}% -\contentsline {section}{\numberline {5}Class Index}{10}{section.5}% -\contentsline {subsection}{\numberline {5.1}Class List}{10}{subsection.5.1}% -\contentsline {section}{\numberline {6}Namespace Documentation}{11}{section.6}% -\contentsline {subsection}{\numberline {6.1}Code\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Smile\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Editor Namespace Reference}{11}{subsection.6.1}% +\contentsline {section}{\numberline {5}Class Index}{11}{section.5}% +\contentsline {subsection}{\numberline {5.1}Class List}{11}{subsection.5.1}% +\contentsline {section}{\numberline {6}Namespace Documentation}{12}{section.6}% +\contentsline {subsection}{\numberline {6.1}Code\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Smile\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Editor Namespace Reference}{12}{subsection.6.1}% \contentsline {section}{\numberline {7}Class Documentation}{12}{section.7}% \contentsline {subsection}{\numberline {7.1}Asset Class Reference}{12}{subsection.7.1}% -\contentsline {subsubsection}{\numberline {7.1.1}Detailed Description}{16}{subsubsection.7.1.1}% -\contentsline {subsubsection}{\numberline {7.1.2}Constructor \& Destructor Documentation}{16}{subsubsection.7.1.2}% -\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{16}{section*.28}% -\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{17}{section*.29}% -\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{17}{section*.30}% -\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{18}{section*.31}% -\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{19}{section*.32}% -\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{20}{section*.33}% -\contentsline {subsubsection}{\numberline {7.1.3}Member Function Documentation}{20}{subsubsection.7.1.3}% -\contentsline {paragraph}{AddLabel()}{20}{section*.34}% -\contentsline {paragraph}{AddLabels()}{21}{section*.35}% -\contentsline {paragraph}{AddSubAsset()}{21}{section*.36}% -\contentsline {paragraph}{CanMove()}{22}{section*.37}% -\contentsline {paragraph}{CanOpenInEditor()}{22}{section*.38}% -\contentsline {paragraph}{ClearLabels()}{23}{section*.39}% -\contentsline {paragraph}{Delete()}{23}{section*.40}% -\contentsline {paragraph}{Duplicate()}{24}{section*.42}% -\contentsline {paragraph}{ExportPackage()}{24}{section*.43}% -\contentsline {paragraph}{ForceSave()}{24}{section*.44}% -\contentsline {paragraph}{GetIcon()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{24}{section*.45}% -\contentsline {paragraph}{GetIcon()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{25}{section*.46}% -\contentsline {paragraph}{GetLastErrorMessage()}{25}{section*.47}% -\contentsline {paragraph}{GetMain$<$ T $>$()}{26}{section*.50}% -\contentsline {paragraph}{Load$<$ T $>$()}{27}{section*.51}% -\contentsline {paragraph}{Move()}{27}{section*.52}% -\contentsline {paragraph}{OpenExternal()}{28}{section*.54}% -\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{29}{section*.55}% -\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{29}{section*.56}% -\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{29}{section*.57}% -\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{30}{section*.58}% -\contentsline {paragraph}{operator Object()}{30}{section*.59}% -\contentsline {paragraph}{RemoveLabel()}{30}{section*.60}% -\contentsline {paragraph}{RemoveSubAsset()}{31}{section*.61}% -\contentsline {paragraph}{Rename()}{31}{section*.62}% -\contentsline {paragraph}{Save()}{32}{section*.64}% -\contentsline {paragraph}{SaveAs()}{32}{section*.65}% -\contentsline {paragraph}{SaveAsNew()}{33}{section*.67}% -\contentsline {paragraph}{SetDirty()}{34}{section*.69}% -\contentsline {paragraph}{SetLabels()}{34}{section*.70}% -\contentsline {paragraph}{Trash()}{35}{section*.71}% -\contentsline {subsubsection}{\numberline {7.1.4}Property Documentation}{36}{subsubsection.7.1.4}% -\contentsline {paragraph}{ActiveImporter}{36}{section*.73}% -\contentsline {paragraph}{AssetPath}{36}{section*.74}% -\contentsline {paragraph}{AvailableImporters}{36}{section*.75}% -\contentsline {paragraph}{DefaultImporter}{37}{section*.76}% -\contentsline {paragraph}{Dependencies}{37}{section*.77}% -\contentsline {paragraph}{DirectDependencies}{37}{section*.78}% -\contentsline {paragraph}{FileId}{38}{section*.79}% -\contentsline {paragraph}{Guid}{38}{section*.80}% -\contentsline {paragraph}{Icon}{38}{section*.81}% -\contentsline {paragraph}{IsDeleted}{38}{section*.82}% -\contentsline {paragraph}{IsForeign}{39}{section*.83}% -\contentsline {paragraph}{IsImporterOverridden}{39}{section*.84}% -\contentsline {paragraph}{IsNative}{39}{section*.85}% -\contentsline {paragraph}{IsScene}{40}{section*.86}% -\contentsline {paragraph}{Labels}{40}{section*.87}% -\contentsline {paragraph}{MainObject}{40}{section*.88}% -\contentsline {paragraph}{MainObjectType}{41}{section*.89}% -\contentsline {paragraph}{MetaPath}{41}{section*.90}% -\contentsline {paragraph}{OwningBundle}{41}{section*.91}% -\contentsline {paragraph}{OwningBundleVariant}{42}{section*.92}% -\contentsline {paragraph}{SubAssets}{42}{section*.93}% -\contentsline {paragraph}{VisibleSubAssets}{42}{section*.94}% -\contentsline {subsection}{\numberline {7.2}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Bundle Class Reference}{43}{subsection.7.2}% -\contentsline {subsubsection}{\numberline {7.2.1}Detailed Description}{44}{subsubsection.7.2.1}% -\contentsline {subsubsection}{\numberline {7.2.2}Member Function Documentation}{44}{subsubsection.7.2.2}% -\contentsline {paragraph}{ForceRemove()}{44}{section*.98}% -\contentsline {paragraph}{GetAllDependencies()}{44}{section*.99}% -\contentsline {paragraph}{GetAllPaths()}{45}{section*.100}% -\contentsline {paragraph}{GetDirectDependencies()}{45}{section*.101}% -\contentsline {paragraph}{GetOwningBundle()}{46}{section*.102}% -\contentsline {paragraph}{GetOwningBundleVariant()}{46}{section*.103}% -\contentsline {paragraph}{GetPaths()}{47}{section*.104}% -\contentsline {paragraph}{Remove()}{47}{section*.105}% -\contentsline {paragraph}{RemoveUnused()}{48}{section*.106}% -\contentsline {subsubsection}{\numberline {7.2.3}Property Documentation}{48}{subsubsection.7.2.3}% -\contentsline {paragraph}{All}{48}{section*.107}% -\contentsline {paragraph}{Unused}{48}{section*.108}% -\contentsline {subsection}{\numberline {7.3}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Database Class Reference}{49}{subsection.7.3}% -\contentsline {subsubsection}{\numberline {7.3.1}Detailed Description}{50}{subsubsection.7.3.1}% -\contentsline {subsubsection}{\numberline {7.3.2}Member Function Documentation}{50}{subsubsection.7.3.2}% -\contentsline {paragraph}{AllowAutoRefresh()}{50}{section*.113}% -\contentsline {paragraph}{Contains()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{50}{section*.114}% -\contentsline {paragraph}{Contains()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{51}{section*.115}% -\contentsline {paragraph}{DisallowAutoRefresh()}{51}{section*.116}% -\contentsline {paragraph}{ImportAll()}{52}{section*.117}% -\contentsline {paragraph}{ReleaseFileHandles()}{53}{section*.118}% -\contentsline {paragraph}{SaveAll()}{53}{section*.119}% -\contentsline {paragraph}{UpgradeAllAssetSerializationVersions()}{53}{section*.120}% -\contentsline {paragraph}{UpgradeAssetSerializationVersion()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{54}{section*.121}% -\contentsline {paragraph}{UpgradeAssetSerializationVersion()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{54}{section*.122}% -\contentsline {subsubsection}{\numberline {7.3.3}Property Documentation}{55}{subsubsection.7.3.3}% -\contentsline {paragraph}{DesiredWorkerCount}{55}{section*.123}% -\contentsline {paragraph}{DirectoryMonitoring}{55}{section*.124}% -\contentsline {subsection}{\numberline {7.4}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Database.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Cache\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Server Class Reference}{56}{subsection.7.4}% -\contentsline {subsubsection}{\numberline {7.4.1}Detailed Description}{57}{subsubsection.7.4.1}% -\contentsline {subsubsection}{\numberline {7.4.2}Member Function Documentation}{57}{subsubsection.7.4.2}% -\contentsline {paragraph}{ApplySettings()}{57}{section*.128}% -\contentsline {paragraph}{CanConnect()}{57}{section*.129}% -\contentsline {paragraph}{Disconnect()}{58}{section*.130}% -\contentsline {paragraph}{ResetReconnectTimer()}{58}{section*.131}% -\contentsline {subsubsection}{\numberline {7.4.3}Property Documentation}{58}{subsubsection.7.4.3}% -\contentsline {paragraph}{Address}{58}{section*.132}% -\contentsline {paragraph}{Connected}{59}{section*.133}% -\contentsline {paragraph}{ConnectedAddress}{59}{section*.134}% -\contentsline {paragraph}{DownloadsAllowed}{59}{section*.135}% -\contentsline {paragraph}{Enabled}{60}{section*.136}% -\contentsline {paragraph}{NamespacePrefix}{60}{section*.137}% -\contentsline {paragraph}{Port}{60}{section*.138}% -\contentsline {paragraph}{UploadsAllowed}{61}{section*.139}% -\contentsline {subsection}{\numberline {7.5}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Dependency Class Reference}{61}{subsection.7.5}% -\contentsline {subsubsection}{\numberline {7.5.1}Detailed Description}{62}{subsubsection.7.5.1}% -\contentsline {subsubsection}{\numberline {7.5.2}Member Function Documentation}{62}{subsubsection.7.5.2}% -\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{62}{section*.142}% -\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{62}{section*.143}% -\contentsline {paragraph}{GetDirect()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{63}{section*.144}% -\contentsline {paragraph}{GetDirect()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{63}{section*.145}% -\contentsline {paragraph}{GetHash()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{64}{section*.146}% -\contentsline {paragraph}{GetHash()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{64}{section*.147}% -\contentsline {paragraph}{Register()}{65}{section*.148}% -\contentsline {paragraph}{Unregister()}{65}{section*.149}% -\contentsline {subsection}{\numberline {7.6}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}File Class Reference}{66}{subsection.7.6}% -\contentsline {subsubsection}{\numberline {7.6.1}Detailed Description}{69}{subsubsection.7.6.1}% -\contentsline {subsubsection}{\numberline {7.6.2}Member Function Documentation}{69}{subsubsection.7.6.2}% -\contentsline {paragraph}{BatchEditing()}{69}{section*.154}% -\contentsline {paragraph}{CanMove()}{70}{section*.155}% -\contentsline {paragraph}{CanOpenInEditor()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{70}{section*.156}% -\contentsline {paragraph}{CanOpenInEditor()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{71}{section*.157}% -\contentsline {paragraph}{Copy()}{71}{section*.158}% -\contentsline {paragraph}{CopyAsNew()}{72}{section*.159}% -\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{73}{section*.160}% -\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{73}{section*.162}% -\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{74}{section*.163}% -\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{75}{section*.164}% -\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{75}{section*.165}% -\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{76}{section*.166}% -\contentsline {paragraph}{CreateOrLoad$<$ T $>$()}{76}{section*.167}% -\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{77}{section*.168}% -\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{78}{section*.169}% -\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{78}{section*.170}% -\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{79}{section*.171}% -\contentsline {paragraph}{Find()}{79}{section*.173}% -\contentsline {paragraph}{FindGuids()}{80}{section*.174}% -\contentsline {paragraph}{FindPaths()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{81}{section*.175}% -\contentsline {paragraph}{FindPaths()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{81}{section*.176}% -\contentsline {paragraph}{ForceSave()}{82}{section*.177}% -\contentsline {paragraph}{GetFileId()}{82}{section*.178}% -\contentsline {paragraph}{GetGuid()}{83}{section*.179}% -\contentsline {paragraph}{GetGuidAndFileId()}{84}{section*.180}% -\contentsline {paragraph}{GetMainType()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{84}{section*.181}% -\contentsline {paragraph}{GetMainType()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{85}{section*.183}% -\contentsline {paragraph}{GetSubType()}{86}{section*.185}% -\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{86}{section*.186}% -\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{87}{section*.188}% -\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{88}{section*.189}% -\contentsline {paragraph}{ImportAndLoad$<$ T $>$()}{88}{section*.190}% -\contentsline {paragraph}{Load$<$ T $>$()}{89}{section*.192}% -\contentsline {paragraph}{LoadAsync()}{90}{section*.193}% -\contentsline {paragraph}{LoadMain$<$ T $>$()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{91}{section*.194}% -\contentsline {paragraph}{LoadMain$<$ T $>$()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{92}{section*.195}% -\contentsline {paragraph}{LoadOrCreate$<$ T $>$()}{93}{section*.197}% -\contentsline {paragraph}{Move()}{94}{section*.199}% -\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{95}{section*.201}% -\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{96}{section*.202}% -\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{96}{section*.203}% -\contentsline {paragraph}{Rename()}{97}{section*.204}% -\contentsline {paragraph}{Save()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{97}{section*.206}% -\contentsline {paragraph}{Save()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{98}{section*.207}% -\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{98}{section*.208}% -\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{99}{section*.209}% -\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{99}{section*.210}% -\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{100}{section*.211}% -\contentsline {subsubsection}{\numberline {7.6.3}Property Documentation}{101}{subsubsection.7.6.3}% -\contentsline {paragraph}{PathsNotDeleted}{101}{section*.213}% -\contentsline {subsection}{\numberline {7.7}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Importer Class Reference}{101}{subsection.7.7}% -\contentsline {subsubsection}{\numberline {7.7.1}Detailed Description}{103}{subsubsection.7.7.1}% -\contentsline {subsubsection}{\numberline {7.7.2}Member Function Documentation}{103}{subsubsection.7.7.2}% -\contentsline {paragraph}{ApplySettings()}{103}{section*.216}% -\contentsline {paragraph}{ClearOverride()}{103}{section*.217}% -\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{104}{section*.218}% -\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{104}{section*.219}% -\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{105}{section*.220}% -\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{106}{section*.221}% -\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{106}{section*.222}% -\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{107}{section*.223}% -\contentsline {paragraph}{GetAvailable()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{108}{section*.224}% -\contentsline {paragraph}{GetAvailable()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{108}{section*.225}% -\contentsline {paragraph}{GetDefault()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{109}{section*.226}% -\contentsline {paragraph}{GetDefault()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{109}{section*.227}% -\contentsline {paragraph}{GetOverride()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{110}{section*.228}% -\contentsline {paragraph}{GetOverride()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{110}{section*.229}% -\contentsline {paragraph}{IsOverridden()}{111}{section*.230}% -\contentsline {paragraph}{SetOverride$<$ T $>$()}{111}{section*.231}% -\contentsline {subsection}{\numberline {7.8}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Label Class Reference}{112}{subsection.7.8}% -\contentsline {subsubsection}{\numberline {7.8.1}Detailed Description}{113}{subsubsection.7.8.1}% -\contentsline {subsubsection}{\numberline {7.8.2}Member Function Documentation}{113}{subsubsection.7.8.2}% -\contentsline {paragraph}{Add()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{113}{section*.234}% -\contentsline {paragraph}{Add()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{114}{section*.236}% -\contentsline {paragraph}{ClearAll()}{115}{section*.238}% -\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{115}{section*.239}% -\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{116}{section*.241}% -\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{116}{section*.242}% -\contentsline {paragraph}{Remove()}{117}{section*.243}% -\contentsline {paragraph}{SetAll()}{118}{section*.245}% -\contentsline {subsection}{\numberline {7.9}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Package Class Reference}{119}{subsection.7.9}% -\contentsline {subsubsection}{\numberline {7.9.1}Detailed Description}{119}{subsubsection.7.9.1}% -\contentsline {subsubsection}{\numberline {7.9.2}Member Function Documentation}{119}{subsubsection.7.9.2}% -\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{119}{section*.249}% -\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{120}{section*.250}% -\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{120}{section*.251}% -\contentsline {paragraph}{Import()}{121}{section*.252}% -\contentsline {paragraph}{ImportInteractive()}{121}{section*.253}% -\contentsline {subsection}{\numberline {7.10}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Path Class Reference}{122}{subsection.7.10}% -\contentsline {subsubsection}{\numberline {7.10.1}Detailed Description}{127}{subsubsection.7.10.1}% -\contentsline {subsubsection}{\numberline {7.10.2}Constructor \& Destructor Documentation}{127}{subsubsection.7.10.2}% -\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{127}{section*.259}% -\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{128}{section*.260}% -\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{129}{section*.261}% -\contentsline {subsubsection}{\numberline {7.10.3}Member Function Documentation}{129}{subsubsection.7.10.3}% -\contentsline {paragraph}{CreateFolders()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{129}{section*.263}% -\contentsline {paragraph}{CreateFolders()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{130}{section*.264}% -\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{131}{section*.266}% -\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{132}{section*.268}% -\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{132}{section*.269}% -\contentsline {paragraph}{FileExists()}{133}{section*.271}% -\contentsline {paragraph}{FolderExists()}{134}{section*.273}% -\contentsline {paragraph}{FromMeta()}{134}{section*.275}% -\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{135}{section*.276}% -\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{136}{section*.278}% -\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{137}{section*.280}% -\contentsline {paragraph}{GetGuid()}{138}{section*.281}% -\contentsline {paragraph}{GetHashCode()}{138}{section*.282}% -\contentsline {paragraph}{GetScene()}{138}{section*.283}% -\contentsline {paragraph}{GetSubFolders()}{139}{section*.284}% -\contentsline {paragraph}{IsValid()}{139}{section*.285}% -\contentsline {paragraph}{OpenExternal()}{140}{section*.286}% -\contentsline {paragraph}{operator Path()}{140}{section*.287}% -\contentsline {paragraph}{operator String()}{141}{section*.288}% -\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{141}{section*.289}% -\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{141}{section*.290}% -\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{142}{section*.291}% -\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{142}{section*.292}% -\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{143}{section*.294}% -\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{143}{section*.295}% -\contentsline {paragraph}{Rename()}{144}{section*.296}% -\contentsline {paragraph}{ToMeta()}{144}{section*.297}% -\contentsline {paragraph}{ToString()}{145}{section*.298}% -\contentsline {paragraph}{ToStrings()}{145}{section*.299}% -\contentsline {paragraph}{UniquifyFileName()}{145}{section*.300}% -\contentsline {subsubsection}{\numberline {7.10.4}Property Documentation}{146}{subsubsection.7.10.4}% -\contentsline {paragraph}{AssetPath}{146}{section*.301}% -\contentsline {paragraph}{Exists}{146}{section*.302}% -\contentsline {paragraph}{ExistsInFileSystem}{147}{section*.303}% -\contentsline {paragraph}{Extension}{147}{section*.304}% -\contentsline {paragraph}{FileName}{147}{section*.305}% -\contentsline {paragraph}{FileNameWithoutExtension}{148}{section*.306}% -\contentsline {paragraph}{FolderPath}{148}{section*.307}% -\contentsline {paragraph}{FullAssetsPath}{148}{section*.308}% -\contentsline {paragraph}{FullLibraryPath}{149}{section*.309}% -\contentsline {paragraph}{FullLogsPath}{149}{section*.310}% -\contentsline {paragraph}{FullPackagesPath}{149}{section*.311}% -\contentsline {paragraph}{FullPath}{149}{section*.312}% -\contentsline {paragraph}{FullProjectPath}{149}{section*.313}% -\contentsline {paragraph}{FullProjectSettingsPath}{150}{section*.314}% -\contentsline {paragraph}{FullProjectTempPath}{150}{section*.315}% -\contentsline {paragraph}{FullUserSettingsPath}{150}{section*.316}% -\contentsline {paragraph}{Guid}{150}{section*.317}% -\contentsline {paragraph}{MetaPath}{151}{section*.318}% -\contentsline {paragraph}{SubFolders}{151}{section*.319}% -\contentsline {paragraph}{UniqueFilePath}{151}{section*.320}% -\contentsline {subsection}{\numberline {7.11}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Status Class Reference}{152}{subsection.7.11}% -\contentsline {subsubsection}{\numberline {7.11.1}Detailed Description}{152}{subsubsection.7.11.1}% -\contentsline {subsubsection}{\numberline {7.11.2}Member Function Documentation}{153}{subsubsection.7.11.2}% -\contentsline {paragraph}{IsForeign()}{153}{section*.323}% -\contentsline {paragraph}{IsImported()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{153}{section*.324}% -\contentsline {paragraph}{IsImported()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{154}{section*.325}% -\contentsline {paragraph}{IsLoaded()}{154}{section*.326}% -\contentsline {paragraph}{IsMain()}{155}{section*.327}% -\contentsline {paragraph}{IsNative()}{155}{section*.328}% -\contentsline {paragraph}{IsScene()}{156}{section*.329}% -\contentsline {paragraph}{IsSub()}{156}{section*.330}% -\contentsline {subsection}{\numberline {7.12}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Sub\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Asset Class Reference}{157}{subsection.7.12}% -\contentsline {subsubsection}{\numberline {7.12.1}Detailed Description}{158}{subsubsection.7.12.1}% -\contentsline {subsubsection}{\numberline {7.12.2}Member Function Documentation}{158}{subsubsection.7.12.2}% -\contentsline {paragraph}{Add()}{158}{section*.333}% -\contentsline {paragraph}{Extract()}{158}{section*.334}% -\contentsline {paragraph}{LoadAll()}{159}{section*.335}% -\contentsline {paragraph}{LoadVisible()}{160}{section*.336}% -\contentsline {paragraph}{Remove()}{160}{section*.337}% -\contentsline {paragraph}{SetMain()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{161}{section*.338}% -\contentsline {paragraph}{SetMain()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{161}{section*.339}% -\contentsline {subsection}{\numberline {7.13}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Version\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Control Class Reference}{162}{subsection.7.13}% -\contentsline {subsubsection}{\numberline {7.13.1}Detailed Description}{163}{subsubsection.7.13.1}% -\contentsline {subsubsection}{\numberline {7.13.2}Member Function Documentation}{164}{subsubsection.7.13.2}% -\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/5]}}{164}{section*.343}% -\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/5]}}{165}{section*.345}% -\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/5]}}{165}{section*.346}% -\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [4/5]}}{166}{section*.348}% -\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [5/5]}}{167}{section*.349}% -\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{167}{section*.350}% -\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{168}{section*.351}% -\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{169}{section*.352}% -\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{169}{section*.353}% -\contentsline {paragraph}{IsMetaEditable()}{170}{section*.354}% -\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{170}{section*.355}% -\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{171}{section*.356}% -\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{171}{section*.357}% -\contentsline {paragraph}{MakeEditableInteractive()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{172}{section*.358}% -\contentsline {paragraph}{MakeEditableInteractive()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{173}{section*.359}% -\contentsline {subsection}{\numberline {7.14}Asset\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Load\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Exception Class Reference}{173}{subsection.7.14}% -\contentsline {subsubsection}{\numberline {7.14.1}Detailed Description}{175}{subsubsection.7.14.1}% -\contentsline {subsubsection}{\numberline {7.14.2}Constructor \& Destructor Documentation}{175}{subsubsection.7.14.2}% -\contentsline {paragraph}{AssetLoadException()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{175}{section*.363}% -\contentsline {paragraph}{AssetLoadException()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{175}{section*.364}% +\contentsline {subsubsection}{\numberline {7.1.1}Detailed Description}{17}{subsubsection.7.1.1}% +\contentsline {subsubsection}{\numberline {7.1.2}Constructor \& Destructor Documentation}{17}{subsubsection.7.1.2}% +\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{17}{section*.28}% +\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{18}{section*.29}% +\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{18}{section*.30}% +\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{19}{section*.31}% +\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{20}{section*.32}% +\contentsline {paragraph}{Asset()\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{21}{section*.33}% +\contentsline {subsubsection}{\numberline {7.1.3}Member Function Documentation}{21}{subsubsection.7.1.3}% +\contentsline {paragraph}{AddLabel()}{21}{section*.34}% +\contentsline {paragraph}{AddLabels()}{22}{section*.35}% +\contentsline {paragraph}{AddSubAsset()}{22}{section*.36}% +\contentsline {paragraph}{CanMove()}{23}{section*.37}% +\contentsline {paragraph}{CanOpenInEditor()}{23}{section*.38}% +\contentsline {paragraph}{ClearLabels()}{24}{section*.39}% +\contentsline {paragraph}{Delete()}{24}{section*.40}% +\contentsline {paragraph}{Duplicate()}{25}{section*.42}% +\contentsline {paragraph}{ExportPackage()}{25}{section*.43}% +\contentsline {paragraph}{ForceSave()}{25}{section*.44}% +\contentsline {paragraph}{GetIcon()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{25}{section*.45}% +\contentsline {paragraph}{GetIcon()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{26}{section*.46}% +\contentsline {paragraph}{GetLastErrorMessage()}{26}{section*.47}% +\contentsline {paragraph}{GetMain$<$ T $>$()}{27}{section*.50}% +\contentsline {paragraph}{Load$<$ T $>$()}{28}{section*.51}% +\contentsline {paragraph}{Move()}{28}{section*.52}% +\contentsline {paragraph}{OpenExternal()}{29}{section*.54}% +\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{30}{section*.55}% +\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{30}{section*.56}% +\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{30}{section*.57}% +\contentsline {paragraph}{operator Asset()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{31}{section*.58}% +\contentsline {paragraph}{operator Object()}{31}{section*.59}% +\contentsline {paragraph}{RemoveLabel()}{31}{section*.60}% +\contentsline {paragraph}{RemoveSubAsset()}{32}{section*.61}% +\contentsline {paragraph}{Rename()}{32}{section*.62}% +\contentsline {paragraph}{Save()}{33}{section*.64}% +\contentsline {paragraph}{SaveAs()}{33}{section*.65}% +\contentsline {paragraph}{SaveAsNew()}{34}{section*.67}% +\contentsline {paragraph}{SetDirty()}{35}{section*.69}% +\contentsline {paragraph}{SetLabels()}{35}{section*.70}% +\contentsline {paragraph}{Trash()}{36}{section*.71}% +\contentsline {subsubsection}{\numberline {7.1.4}Property Documentation}{37}{subsubsection.7.1.4}% +\contentsline {paragraph}{ActiveImporter}{37}{section*.73}% +\contentsline {paragraph}{AssetPath}{37}{section*.74}% +\contentsline {paragraph}{AvailableImporters}{37}{section*.75}% +\contentsline {paragraph}{DefaultImporter}{38}{section*.76}% +\contentsline {paragraph}{Dependencies}{38}{section*.77}% +\contentsline {paragraph}{DirectDependencies}{38}{section*.78}% +\contentsline {paragraph}{FileId}{39}{section*.79}% +\contentsline {paragraph}{Guid}{39}{section*.80}% +\contentsline {paragraph}{Icon}{39}{section*.81}% +\contentsline {paragraph}{IsDeleted}{39}{section*.82}% +\contentsline {paragraph}{IsForeign}{40}{section*.83}% +\contentsline {paragraph}{IsImporterOverridden}{40}{section*.84}% +\contentsline {paragraph}{IsNative}{40}{section*.85}% +\contentsline {paragraph}{IsScene}{41}{section*.86}% +\contentsline {paragraph}{Labels}{41}{section*.87}% +\contentsline {paragraph}{MainObject}{41}{section*.88}% +\contentsline {paragraph}{MainObjectType}{42}{section*.89}% +\contentsline {paragraph}{MetaPath}{42}{section*.90}% +\contentsline {paragraph}{OwningBundle}{42}{section*.91}% +\contentsline {paragraph}{OwningBundleVariant}{43}{section*.92}% +\contentsline {paragraph}{SubAssets}{43}{section*.93}% +\contentsline {paragraph}{VisibleSubAssets}{43}{section*.94}% +\contentsline {subsection}{\numberline {7.2}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Bundle Class Reference}{44}{subsection.7.2}% +\contentsline {subsubsection}{\numberline {7.2.1}Detailed Description}{45}{subsubsection.7.2.1}% +\contentsline {subsubsection}{\numberline {7.2.2}Member Function Documentation}{45}{subsubsection.7.2.2}% +\contentsline {paragraph}{ForceRemove()}{45}{section*.98}% +\contentsline {paragraph}{GetAllDependencies()}{45}{section*.99}% +\contentsline {paragraph}{GetAllPaths()}{46}{section*.100}% +\contentsline {paragraph}{GetDirectDependencies()}{46}{section*.101}% +\contentsline {paragraph}{GetOwningBundle()}{47}{section*.102}% +\contentsline {paragraph}{GetOwningBundleVariant()}{47}{section*.103}% +\contentsline {paragraph}{GetPaths()}{48}{section*.104}% +\contentsline {paragraph}{Remove()}{48}{section*.105}% +\contentsline {paragraph}{RemoveUnused()}{49}{section*.106}% +\contentsline {subsubsection}{\numberline {7.2.3}Property Documentation}{49}{subsubsection.7.2.3}% +\contentsline {paragraph}{All}{49}{section*.107}% +\contentsline {paragraph}{Unused}{49}{section*.108}% +\contentsline {subsection}{\numberline {7.3}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Database Class Reference}{50}{subsection.7.3}% +\contentsline {subsubsection}{\numberline {7.3.1}Detailed Description}{51}{subsubsection.7.3.1}% +\contentsline {subsubsection}{\numberline {7.3.2}Member Function Documentation}{51}{subsubsection.7.3.2}% +\contentsline {paragraph}{AllowAutoRefresh()}{51}{section*.113}% +\contentsline {paragraph}{Contains()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{51}{section*.114}% +\contentsline {paragraph}{Contains()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{52}{section*.115}% +\contentsline {paragraph}{DisallowAutoRefresh()}{52}{section*.116}% +\contentsline {paragraph}{ImportAll()}{53}{section*.117}% +\contentsline {paragraph}{ReleaseFileHandles()}{54}{section*.118}% +\contentsline {paragraph}{SaveAll()}{54}{section*.119}% +\contentsline {paragraph}{UpgradeAllAssetSerializationVersions()}{54}{section*.120}% +\contentsline {paragraph}{UpgradeAssetSerializationVersion()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{55}{section*.121}% +\contentsline {paragraph}{UpgradeAssetSerializationVersion()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{55}{section*.122}% +\contentsline {subsubsection}{\numberline {7.3.3}Property Documentation}{56}{subsubsection.7.3.3}% +\contentsline {paragraph}{DesiredWorkerCount}{56}{section*.123}% +\contentsline {paragraph}{DirectoryMonitoring}{56}{section*.124}% +\contentsline {subsection}{\numberline {7.4}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Database.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Cache\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Server Class Reference}{57}{subsection.7.4}% +\contentsline {subsubsection}{\numberline {7.4.1}Detailed Description}{58}{subsubsection.7.4.1}% +\contentsline {subsubsection}{\numberline {7.4.2}Member Function Documentation}{58}{subsubsection.7.4.2}% +\contentsline {paragraph}{ApplySettings()}{58}{section*.128}% +\contentsline {paragraph}{CanConnect()}{58}{section*.129}% +\contentsline {paragraph}{Disconnect()}{59}{section*.130}% +\contentsline {paragraph}{ResetReconnectTimer()}{59}{section*.131}% +\contentsline {subsubsection}{\numberline {7.4.3}Property Documentation}{59}{subsubsection.7.4.3}% +\contentsline {paragraph}{Address}{59}{section*.132}% +\contentsline {paragraph}{Connected}{60}{section*.133}% +\contentsline {paragraph}{ConnectedAddress}{60}{section*.134}% +\contentsline {paragraph}{DownloadsAllowed}{60}{section*.135}% +\contentsline {paragraph}{Enabled}{61}{section*.136}% +\contentsline {paragraph}{NamespacePrefix}{61}{section*.137}% +\contentsline {paragraph}{Port}{61}{section*.138}% +\contentsline {paragraph}{UploadsAllowed}{62}{section*.139}% +\contentsline {subsection}{\numberline {7.5}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Dependency Class Reference}{62}{subsection.7.5}% +\contentsline {subsubsection}{\numberline {7.5.1}Detailed Description}{63}{subsubsection.7.5.1}% +\contentsline {subsubsection}{\numberline {7.5.2}Member Function Documentation}{63}{subsubsection.7.5.2}% +\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{63}{section*.142}% +\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{63}{section*.143}% +\contentsline {paragraph}{GetDirect()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{64}{section*.144}% +\contentsline {paragraph}{GetDirect()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{64}{section*.145}% +\contentsline {paragraph}{GetHash()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{65}{section*.146}% +\contentsline {paragraph}{GetHash()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{65}{section*.147}% +\contentsline {paragraph}{Register()}{66}{section*.148}% +\contentsline {paragraph}{Unregister()}{66}{section*.149}% +\contentsline {subsection}{\numberline {7.6}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}File Class Reference}{67}{subsection.7.6}% +\contentsline {subsubsection}{\numberline {7.6.1}Detailed Description}{70}{subsubsection.7.6.1}% +\contentsline {subsubsection}{\numberline {7.6.2}Member Function Documentation}{70}{subsubsection.7.6.2}% +\contentsline {paragraph}{BatchEditing()}{70}{section*.154}% +\contentsline {paragraph}{CanMove()}{71}{section*.155}% +\contentsline {paragraph}{CanOpenInEditor()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{71}{section*.156}% +\contentsline {paragraph}{CanOpenInEditor()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{72}{section*.157}% +\contentsline {paragraph}{Copy()}{72}{section*.158}% +\contentsline {paragraph}{CopyAsNew()}{73}{section*.159}% +\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{74}{section*.160}% +\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{74}{section*.162}% +\contentsline {paragraph}{Create()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{75}{section*.163}% +\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{76}{section*.164}% +\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{76}{section*.165}% +\contentsline {paragraph}{CreateAsNew()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{77}{section*.166}% +\contentsline {paragraph}{CreateOrLoad$<$ T $>$()}{77}{section*.167}% +\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{78}{section*.168}% +\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{79}{section*.169}% +\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{79}{section*.170}% +\contentsline {paragraph}{Delete()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{80}{section*.171}% +\contentsline {paragraph}{Find()}{80}{section*.173}% +\contentsline {paragraph}{FindGuids()}{81}{section*.174}% +\contentsline {paragraph}{FindPaths()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{82}{section*.175}% +\contentsline {paragraph}{FindPaths()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{82}{section*.176}% +\contentsline {paragraph}{ForceSave()}{83}{section*.177}% +\contentsline {paragraph}{GetFileId()}{83}{section*.178}% +\contentsline {paragraph}{GetGuid()}{84}{section*.179}% +\contentsline {paragraph}{GetGuidAndFileId()}{85}{section*.180}% +\contentsline {paragraph}{GetMainType()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{85}{section*.181}% +\contentsline {paragraph}{GetMainType()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{86}{section*.183}% +\contentsline {paragraph}{GetSubType()}{87}{section*.185}% +\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{87}{section*.186}% +\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{88}{section*.187}% +\contentsline {paragraph}{Import()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{88}{section*.188}% +\contentsline {paragraph}{ImportAndLoad$<$ T $>$()}{89}{section*.190}% +\contentsline {paragraph}{Load$<$ T $>$()}{90}{section*.192}% +\contentsline {paragraph}{LoadAsync()}{91}{section*.193}% +\contentsline {paragraph}{LoadMain$<$ T $>$()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{92}{section*.194}% +\contentsline {paragraph}{LoadMain$<$ T $>$()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{93}{section*.195}% +\contentsline {paragraph}{LoadOrCreate$<$ T $>$()}{94}{section*.197}% +\contentsline {paragraph}{Move()}{95}{section*.199}% +\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{96}{section*.201}% +\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{97}{section*.202}% +\contentsline {paragraph}{OpenExternal()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{97}{section*.203}% +\contentsline {paragraph}{Rename()}{98}{section*.204}% +\contentsline {paragraph}{Save()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{98}{section*.206}% +\contentsline {paragraph}{Save()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{99}{section*.207}% +\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{99}{section*.208}% +\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{100}{section*.209}% +\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{100}{section*.210}% +\contentsline {paragraph}{Trash()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{101}{section*.211}% +\contentsline {subsubsection}{\numberline {7.6.3}Property Documentation}{102}{subsubsection.7.6.3}% +\contentsline {paragraph}{PathsNotDeleted}{102}{section*.213}% +\contentsline {subsection}{\numberline {7.7}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Importer Class Reference}{102}{subsection.7.7}% +\contentsline {subsubsection}{\numberline {7.7.1}Detailed Description}{104}{subsubsection.7.7.1}% +\contentsline {subsubsection}{\numberline {7.7.2}Member Function Documentation}{104}{subsubsection.7.7.2}% +\contentsline {paragraph}{ApplySettings()}{104}{section*.216}% +\contentsline {paragraph}{ClearOverride()}{104}{section*.217}% +\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [1/6]}}{105}{section*.218}% +\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [2/6]}}{105}{section*.219}% +\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [3/6]}}{106}{section*.220}% +\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [4/6]}}{107}{section*.221}% +\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [5/6]}}{107}{section*.222}% +\contentsline {paragraph}{GetActive()\hspace {0.1cm}{\footnotesize \ttfamily [6/6]}}{108}{section*.223}% +\contentsline {paragraph}{GetAvailable()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{109}{section*.224}% +\contentsline {paragraph}{GetAvailable()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{109}{section*.225}% +\contentsline {paragraph}{GetDefault()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{110}{section*.226}% +\contentsline {paragraph}{GetDefault()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{110}{section*.227}% +\contentsline {paragraph}{GetOverride()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{111}{section*.228}% +\contentsline {paragraph}{GetOverride()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{111}{section*.229}% +\contentsline {paragraph}{IsOverridden()}{112}{section*.230}% +\contentsline {paragraph}{SetOverride$<$ T $>$()}{112}{section*.231}% +\contentsline {subsection}{\numberline {7.8}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Label Class Reference}{113}{subsection.7.8}% +\contentsline {subsubsection}{\numberline {7.8.1}Detailed Description}{114}{subsubsection.7.8.1}% +\contentsline {subsubsection}{\numberline {7.8.2}Member Function Documentation}{114}{subsubsection.7.8.2}% +\contentsline {paragraph}{Add()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{114}{section*.234}% +\contentsline {paragraph}{Add()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{115}{section*.236}% +\contentsline {paragraph}{ClearAll()}{116}{section*.238}% +\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{116}{section*.239}% +\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{117}{section*.241}% +\contentsline {paragraph}{GetAll()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{117}{section*.242}% +\contentsline {paragraph}{Remove()}{118}{section*.243}% +\contentsline {paragraph}{SetAll()}{119}{section*.245}% +\contentsline {subsection}{\numberline {7.9}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Package Class Reference}{120}{subsection.7.9}% +\contentsline {subsubsection}{\numberline {7.9.1}Detailed Description}{120}{subsubsection.7.9.1}% +\contentsline {subsubsection}{\numberline {7.9.2}Member Function Documentation}{120}{subsubsection.7.9.2}% +\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{120}{section*.249}% +\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{121}{section*.250}% +\contentsline {paragraph}{Export()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{121}{section*.251}% +\contentsline {paragraph}{Import()}{122}{section*.252}% +\contentsline {paragraph}{ImportInteractive()}{122}{section*.253}% +\contentsline {subsection}{\numberline {7.10}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Path Class Reference}{123}{subsection.7.10}% +\contentsline {subsubsection}{\numberline {7.10.1}Detailed Description}{128}{subsubsection.7.10.1}% +\contentsline {subsubsection}{\numberline {7.10.2}Constructor \& Destructor Documentation}{128}{subsubsection.7.10.2}% +\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{128}{section*.259}% +\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{129}{section*.260}% +\contentsline {paragraph}{Path()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{130}{section*.261}% +\contentsline {subsubsection}{\numberline {7.10.3}Member Function Documentation}{130}{subsubsection.7.10.3}% +\contentsline {paragraph}{CreateFolders()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{130}{section*.263}% +\contentsline {paragraph}{CreateFolders()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{131}{section*.264}% +\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{132}{section*.266}% +\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{133}{section*.268}% +\contentsline {paragraph}{Equals()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{133}{section*.269}% +\contentsline {paragraph}{FileExists()}{134}{section*.271}% +\contentsline {paragraph}{FolderExists()}{135}{section*.273}% +\contentsline {paragraph}{FromMeta()}{135}{section*.275}% +\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{136}{section*.276}% +\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{137}{section*.278}% +\contentsline {paragraph}{Get()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{138}{section*.280}% +\contentsline {paragraph}{GetGuid()}{139}{section*.281}% +\contentsline {paragraph}{GetHashCode()}{139}{section*.282}% +\contentsline {paragraph}{GetScene()}{139}{section*.283}% +\contentsline {paragraph}{GetSubFolders()}{140}{section*.284}% +\contentsline {paragraph}{IsValid()}{140}{section*.285}% +\contentsline {paragraph}{OpenExternal()}{141}{section*.286}% +\contentsline {paragraph}{operator Path()}{141}{section*.287}% +\contentsline {paragraph}{operator String()}{142}{section*.288}% +\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{142}{section*.289}% +\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{142}{section*.290}% +\contentsline {paragraph}{operator"!=()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{143}{section*.291}% +\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{143}{section*.292}% +\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{144}{section*.294}% +\contentsline {paragraph}{operator==()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{144}{section*.295}% +\contentsline {paragraph}{Rename()}{145}{section*.296}% +\contentsline {paragraph}{ToMeta()}{145}{section*.297}% +\contentsline {paragraph}{ToString()}{146}{section*.298}% +\contentsline {paragraph}{ToStrings()}{146}{section*.299}% +\contentsline {paragraph}{UniquifyFileName()}{146}{section*.300}% +\contentsline {subsubsection}{\numberline {7.10.4}Property Documentation}{147}{subsubsection.7.10.4}% +\contentsline {paragraph}{AssetPath}{147}{section*.301}% +\contentsline {paragraph}{Exists}{147}{section*.302}% +\contentsline {paragraph}{ExistsInFileSystem}{148}{section*.303}% +\contentsline {paragraph}{Extension}{148}{section*.304}% +\contentsline {paragraph}{FileName}{148}{section*.305}% +\contentsline {paragraph}{FileNameWithoutExtension}{149}{section*.306}% +\contentsline {paragraph}{FolderPath}{149}{section*.307}% +\contentsline {paragraph}{FullAssetsPath}{149}{section*.308}% +\contentsline {paragraph}{FullLibraryPath}{150}{section*.309}% +\contentsline {paragraph}{FullLogsPath}{150}{section*.310}% +\contentsline {paragraph}{FullPackagesPath}{150}{section*.311}% +\contentsline {paragraph}{FullPath}{150}{section*.312}% +\contentsline {paragraph}{FullProjectPath}{150}{section*.313}% +\contentsline {paragraph}{FullProjectSettingsPath}{151}{section*.314}% +\contentsline {paragraph}{FullProjectTempPath}{151}{section*.315}% +\contentsline {paragraph}{FullUserSettingsPath}{151}{section*.316}% +\contentsline {paragraph}{Guid}{151}{section*.317}% +\contentsline {paragraph}{MetaPath}{152}{section*.318}% +\contentsline {paragraph}{SubFolders}{152}{section*.319}% +\contentsline {paragraph}{UniqueFilePath}{152}{section*.320}% +\contentsline {subsection}{\numberline {7.11}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Status Class Reference}{153}{subsection.7.11}% +\contentsline {subsubsection}{\numberline {7.11.1}Detailed Description}{153}{subsubsection.7.11.1}% +\contentsline {subsubsection}{\numberline {7.11.2}Member Function Documentation}{154}{subsubsection.7.11.2}% +\contentsline {paragraph}{IsForeign()}{154}{section*.323}% +\contentsline {paragraph}{IsImported()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{154}{section*.324}% +\contentsline {paragraph}{IsImported()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{155}{section*.325}% +\contentsline {paragraph}{IsLoaded()}{155}{section*.326}% +\contentsline {paragraph}{IsMain()}{156}{section*.327}% +\contentsline {paragraph}{IsNative()}{156}{section*.328}% +\contentsline {paragraph}{IsScene()}{157}{section*.329}% +\contentsline {paragraph}{IsSub()}{157}{section*.330}% +\contentsline {subsection}{\numberline {7.12}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Sub\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Asset Class Reference}{158}{subsection.7.12}% +\contentsline {subsubsection}{\numberline {7.12.1}Detailed Description}{159}{subsubsection.7.12.1}% +\contentsline {subsubsection}{\numberline {7.12.2}Member Function Documentation}{159}{subsubsection.7.12.2}% +\contentsline {paragraph}{Add()}{159}{section*.333}% +\contentsline {paragraph}{Extract()}{159}{section*.334}% +\contentsline {paragraph}{LoadAll()}{160}{section*.335}% +\contentsline {paragraph}{LoadVisible()}{161}{section*.336}% +\contentsline {paragraph}{Remove()}{161}{section*.337}% +\contentsline {paragraph}{SetMain()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{162}{section*.338}% +\contentsline {paragraph}{SetMain()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{162}{section*.339}% +\contentsline {subsection}{\numberline {7.13}Asset.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Version\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Control Class Reference}{163}{subsection.7.13}% +\contentsline {subsubsection}{\numberline {7.13.1}Detailed Description}{164}{subsubsection.7.13.1}% +\contentsline {subsubsection}{\numberline {7.13.2}Member Function Documentation}{165}{subsubsection.7.13.2}% +\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/5]}}{165}{section*.343}% +\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/5]}}{166}{section*.345}% +\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/5]}}{166}{section*.346}% +\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [4/5]}}{167}{section*.348}% +\contentsline {paragraph}{CanMakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [5/5]}}{168}{section*.349}% +\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/4]}}{168}{section*.350}% +\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/4]}}{169}{section*.351}% +\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/4]}}{170}{section*.352}% +\contentsline {paragraph}{IsEditable()\hspace {0.1cm}{\footnotesize \ttfamily [4/4]}}{170}{section*.353}% +\contentsline {paragraph}{IsMetaEditable()}{171}{section*.354}% +\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [1/3]}}{171}{section*.355}% +\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [2/3]}}{172}{section*.356}% +\contentsline {paragraph}{MakeEditable()\hspace {0.1cm}{\footnotesize \ttfamily [3/3]}}{172}{section*.357}% +\contentsline {paragraph}{MakeEditableInteractive()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{173}{section*.358}% +\contentsline {paragraph}{MakeEditableInteractive()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{174}{section*.359}% +\contentsline {subsection}{\numberline {7.14}Asset\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Load\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}Exception Class Reference}{174}{subsection.7.14}% +\contentsline {subsubsection}{\numberline {7.14.1}Detailed Description}{176}{subsubsection.7.14.1}% +\contentsline {subsubsection}{\numberline {7.14.2}Constructor \& Destructor Documentation}{176}{subsubsection.7.14.2}% +\contentsline {paragraph}{AssetLoadException()\hspace {0.1cm}{\footnotesize \ttfamily [1/2]}}{176}{section*.363}% +\contentsline {paragraph}{AssetLoadException()\hspace {0.1cm}{\footnotesize \ttfamily [2/2]}}{176}{section*.364}% \contentsline {section}{Index}{177}{section*.365}%