Initial Commit
This commit is contained in:
parent
53eb92e9af
commit
270ab7d11f
15341 changed files with 700234 additions and 0 deletions
|
@ -0,0 +1,103 @@
|
|||
#if UNITY_2020_2_OR_NEWER
|
||||
[assembly: UnityEditor.Localization]
|
||||
#else
|
||||
using UnityEngine;
|
||||
using UnityEditor;
|
||||
|
||||
namespace UnityEditor.Timeline
|
||||
{
|
||||
// dummy functions
|
||||
internal static class L10n
|
||||
{
|
||||
public static string Tr(string str)
|
||||
{
|
||||
return str;
|
||||
}
|
||||
|
||||
public static string[] Tr(string[] str_list)
|
||||
{
|
||||
return str_list;
|
||||
}
|
||||
|
||||
public static string Tr(string str, string groupName)
|
||||
{
|
||||
return str;
|
||||
}
|
||||
|
||||
public static string TrPath(string path)
|
||||
{
|
||||
return path;
|
||||
}
|
||||
|
||||
public static GUIContent TextContent(string text, string tooltip = null, Texture icon = null)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContent(text, tooltip, icon);
|
||||
}
|
||||
|
||||
public static GUIContent TextContent(string text, string tooltip, string iconName)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContent(text, tooltip, iconName);
|
||||
}
|
||||
|
||||
public static GUIContent TextContent(string text, Texture icon)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContent(text, icon);
|
||||
}
|
||||
|
||||
public static GUIContent TextContentWithIcon(string text, Texture icon)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContentWithIcon(text, icon);
|
||||
}
|
||||
|
||||
public static GUIContent TextContentWithIcon(string text, string iconName)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContentWithIcon(text, iconName);
|
||||
}
|
||||
|
||||
public static GUIContent TextContentWithIcon(string text, string tooltip, string iconName)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContentWithIcon(text, tooltip, iconName);
|
||||
}
|
||||
|
||||
public static GUIContent TextContentWithIcon(string text, string tooltip, Texture icon)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContentWithIcon(text, tooltip, icon);
|
||||
}
|
||||
|
||||
public static GUIContent TextContentWithIcon(string text, string tooltip, MessageType messageType)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContentWithIcon(text, tooltip, messageType);
|
||||
}
|
||||
|
||||
public static GUIContent TextContentWithIcon(string text, MessageType messageType)
|
||||
{
|
||||
return EditorGUIUtility.TrTextContentWithIcon(text, messageType);
|
||||
}
|
||||
|
||||
public static GUIContent IconContent(string iconName, string tooltip = null)
|
||||
{
|
||||
return EditorGUIUtility.TrIconContent(iconName, tooltip);
|
||||
}
|
||||
|
||||
public static GUIContent IconContent(Texture icon, string tooltip = null)
|
||||
{
|
||||
return EditorGUIUtility.TrIconContent(icon, tooltip);
|
||||
}
|
||||
|
||||
public static GUIContent TempContent(string t)
|
||||
{
|
||||
return EditorGUIUtility.TrTempContent(t);
|
||||
}
|
||||
|
||||
public static GUIContent[] TempContent(string[] texts)
|
||||
{
|
||||
return EditorGUIUtility.TrTempContent(texts);
|
||||
}
|
||||
|
||||
public static GUIContent[] TempContent(string[] texts, string[] tooltips)
|
||||
{
|
||||
return EditorGUIUtility.TrTempContent(texts, tooltips);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 52d9cbed2cc0d4faab5168848d1f2e37
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 2cb1ca12d228148318e1a7d8cc441147
|
||||
LocalizationImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Loading…
Add table
Add a link
Reference in a new issue