コード例 #1
0
 public Fog(Color c, float s, float e) {
   this.c = c;
   this.ca = Utils.c2fa(c);
   this.s = s;
   this.e = e;
 }
コード例 #2
0
 public ColState(Color c) {
   this.c = c;
   this.ca = Utils.c2fa(c);
 }
コード例 #3
0
ファイル: ColorMask.java プロジェクト: TheKrush/hafen-client
 public ColorMask(Color col) {
   this.col = Utils.c2fa(col);
 }