Exemplo n.º 1
0
 private void FullUpdate()
 {
     CommonProperties.Populate(this);
     UnitProperties.Populate(this);
     GizmoProperties.Populate(this);
     LastFullUpdate = DateTime.UtcNow;
 }
Exemplo n.º 2
0
 private void FullUpdate()
 {
     try
     {
         CommonProperties.Populate(this);
         UnitProperties.Populate(this);
         GizmoProperties.Populate(this);
         LastFullUpdate = DateTime.UtcNow;
     }
     catch (Exception ex)
     {
         Core.Logger.Warn($"Full Update Failed.", ex);
     }
 }
Exemplo n.º 3
0
 public override void OnUpdated()
 {
     Attributes.Update(CommonData);
     CommonProperties.Populate(this);
     UnitProperties.Populate(this);
 }
Exemplo n.º 4
0
 public override void OnCreated()
 {
     Attributes = new AttributesWrapper(CommonData);
     CommonProperties.Populate(this);
     ItemProperties.Create(this);
 }
Exemplo n.º 5
0
 public override void OnCreated()
 {
     CommonProperties.Populate(this);
     UnitProperties.Populate(this);
     GizmoProperties.Populate(this);
 }
Exemplo n.º 6
0
 private void UpdateProperties()
 {
     CommonProperties.Populate(this);
     UnitProperties.Populate(this);
     PlayerProperties.Populate(this);
 }