Ejemplo n.º 1
0
 public ZoneInfo(VisualEffectLoader.VisualEffectShape shape, VisualEffectLoader.VisualEffectSize size, EffectZone.EffectZoneDuration durationType,
                 float duration, float interval, bool removeEffectOnExit)
 {
     this.shape              = shape;
     this.size               = size;
     this.durationType       = durationType;
     this.duration           = duration;
     this.interval           = interval;
     this.removeEffectOnExit = removeEffectOnExit;
 }
Ejemplo n.º 2
0
 public ZoneInfo(VisualEffectLoader.VisualEffectShape shape, VisualEffectLoader.VisualEffectSize size, EffectZone.EffectZoneDuration durationType,
                 float duration, float interval, bool removeEffectOnExit, bool parentEffectToOrigin, string effectZoneImpactVFX, string effectZoneSpawnVFX,
                 string zoneName, float instantZoneLife)
 {
     this.shape                = shape;
     this.size                 = size;
     this.durationType         = durationType;
     this.duration             = duration;
     this.interval             = interval;
     this.removeEffectOnExit   = removeEffectOnExit;
     this.parentEffectToOrigin = parentEffectToOrigin;
     this.effectZoneImpactVFX  = effectZoneImpactVFX;
     this.effectZoneSpawnVFX   = effectZoneSpawnVFX;
     this.zoneName             = zoneName;
     this.instantZoneLife      = instantZoneLife;
 }