Beispiel #1
0
 private void FullUpdate()
 {
     CommonProperties.Populate(this);
     UnitProperties.Populate(this);
     GizmoProperties.Populate(this);
     LastFullUpdate = DateTime.UtcNow;
 }
Beispiel #2
0
 private void FastUpdate()
 {
     try
     {
         CommonProperties.Update(this);
         UnitProperties.Update(this);
         GizmoProperties.Update(this);
     }
     catch (Exception ex)
     {
         Core.Logger.Warn($"Fast Update Failed.", ex);
     }
 }
Beispiel #3
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);
     }
 }
Beispiel #4
0
 private void FastUpdate()
 {
     CommonProperties.Update(this);
     UnitProperties.Update(this);
     GizmoProperties.Update(this);
 }
Beispiel #5
0
 public override void OnUpdated()
 {
     CommonProperties.Update(this);
     UnitProperties.Update(this);
     GizmoProperties.Update(this);
 }
Beispiel #6
0
 public override void OnCreated()
 {
     CommonProperties.Populate(this);
     UnitProperties.Populate(this);
     GizmoProperties.Populate(this);
 }