Exemple #1
0
 public QA_AttributeModifier(QA_AttributeModifier template)
 {
     Name                 = template.Name;
     ModificationType     = template.ModificationType;
     Value                = template.Value;
     Duration             = template.Duration;
     Lifetime             = template.Lifetime;
     ModificationInterval = template.ModificationInterval;
     LifeTimer            = template.LifeTimer;
     ModificationTimer    = template.ModificationTimer;
 }
Exemple #2
0
 public QA_AttributeModifier(string name, QA_AMModificationType modificationType, float value, QA_AMDuration duration, float lifetime, float modificationInterval, float lifeTimer, float modificationTimer)
 {
     Name                 = name;
     ModificationType     = modificationType;
     Value                = value;
     Duration             = duration;
     Lifetime             = lifetime;
     ModificationInterval = modificationInterval;
     LifeTimer            = lifeTimer;
     ModificationTimer    = modificationTimer;
 }