Exemple #1
0
 public bool Equals(MeshInfo other)
 {
     return
         ((MeshId.Equals(other.MeshId)) &&
          (ChangeState.Equals(other.ChangeState)) &&
          (PriorityHint.Equals(other.PriorityHint)));
 }
Exemple #2
0
 public bool Equals(MeshGenerationResult other)
 {
     return
         ((MeshId.Equals(other.MeshId)) &&
          (Mesh.Equals(other.Mesh)) &&
          (MeshCollider.Equals(other.MeshCollider)) &&
          (Status.Equals(other.Status)) &&
          (Attributes.Equals(other.Attributes)));
 }
Exemple #3
0
 public bool Equals(MeshGenerationResult other)
 {
     return
         (MeshId.Equals(other.MeshId) &&
          Mesh.Equals(other.Mesh) &&
          MeshCollider.Equals(other.MeshCollider) &&
          Status == other.Status &&
          Attributes == other.Attributes &&
          Position.Equals(other.Position) &&
          Rotation.Equals(other.Rotation) &&
          Scale.Equals(other.Scale));
 }