facebook twitter hatena line email

「Unity/Csharp/Const」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「<pre> public static class HogeConst { public static readonly Color Color1 = new Color(1f, 1f, 1f, 1f); public static readonly Color Color2 = new Color(0f, 0f, 0f,...」)
 
(相違点なし)

2021年10月22日 (金) 19:54時点における最新版

public static class HogeConst
{
    public static readonly Color Color1 = new Color(1f, 1f, 1f, 1f);
    public static readonly Color Color2 = new Color(0f, 0f, 0f, 1f);
}