示例#1
0
 public void SetRaidingLight(TorchRangeType torchRange)
 {
     raidLight.color     = Color.white;
     raidLight.type      = LightType.Point;
     raidLight.range     = 150;
     raidLight.intensity = 7;
 }
示例#2
0
 public TorchRange(TorchRangeType torchType, string animationId, int min, int max)
 {
     RangeType    = torchType;
     AnimationId  = animationId;
     Min          = min;
     Max          = max;
     HeroBuffs    = new List <Buff>();
     MonsterBuffs = new List <Buff>();
 }