mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-04-27 17:17:07 -05:00
* MeshUtility を UniGLTF 下に移動 * Assets/VRM10 を追加 * JsonSchemaからのコード生成 UniGLTF/Editor/Generator を追加
11 lines
234 B
C#
11 lines
234 B
C#
namespace UniGLTF.JsonSchema
|
|
{
|
|
public static class StringExtensions
|
|
{
|
|
public static string ToUpperCamel(this string key)
|
|
{
|
|
return key.Substring(0, 1).ToUpper() + key.Substring(1);
|
|
}
|
|
}
|
|
}
|