using System; using _2DGAMELIB; namespace SlaveMatrix { [Serializable] public class SideHair_カルD : SideHairD { public bool 髪1_表示 = true; public bool 髪2_表示 = true; public double 髪長1; public double 髪長2; public double 毛量; public double 広がり; public SideHair_カルD() { ThisType = GetType(); } public SideHair_カルD SetRandom() { 髪長1 = Rng.XS.NextDouble(); 髪長2 = Rng.XS.NextDouble(); 毛量 = Rng.XS.NextDouble(); 広がり = Rng.XS.NextDouble(); 髪長1 = 1.0; 髪長2 = 1.0; return this; } public override Element GetEle(double DisUnit, ModeEventDispatcher Med, BodyColorSet 体配色) { return new SideHair_カル(DisUnit, 配色指定, 体配色, Med, this); } } }