62 lines
1.4 KiB
C#
62 lines
1.4 KiB
C#
using System;
|
|
using _2DGAMELIB;
|
|
|
|
namespace SlaveMatrix
|
|
{
|
|
[Serializable]
|
|
public class BackHair0_下2カルD : お下げ2D
|
|
{
|
|
public bool 髪基_表示 = true;
|
|
|
|
public bool お下げ左_髪縛1_表示 = true;
|
|
|
|
public bool お下げ左_髪縛2_表示 = true;
|
|
|
|
public bool お下げ左_髪左_表示 = true;
|
|
|
|
public bool お下げ左_髪右_表示 = true;
|
|
|
|
public bool お下げ左_髪根_表示 = true;
|
|
|
|
public bool お下げ右_髪縛1_表示 = true;
|
|
|
|
public bool お下げ右_髪縛2_表示 = true;
|
|
|
|
public bool お下げ右_髪右_表示 = true;
|
|
|
|
public bool お下げ右_髪左_表示 = true;
|
|
|
|
public bool お下げ右_髪根_表示 = true;
|
|
|
|
public double 髪長0;
|
|
|
|
public double 髪長1;
|
|
|
|
public double 毛量;
|
|
|
|
public double 広がり;
|
|
|
|
public bool スライム;
|
|
|
|
public BackHair0_下2カルD()
|
|
{
|
|
ThisType = GetType();
|
|
}
|
|
|
|
public BackHair0_下2カルD SetRandom()
|
|
{
|
|
髪長0 = RNG.XS.NextDouble();
|
|
髪長1 = RNG.XS.NextDouble();
|
|
毛量 = RNG.XS.NextDouble();
|
|
広がり = RNG.XS.NextDouble();
|
|
右 = RNG.XS.NextBool();
|
|
return this;
|
|
}
|
|
|
|
public override Ele GetEle(double DisUnit, ModeEventDispatcher Med, BodyColorSet 体配色)
|
|
{
|
|
return new BackHair0_下2カル(DisUnit, 配色指定, 体配色, Med, this);
|
|
}
|
|
}
|
|
}
|