示例#1
0
        // Token: 0x06000D51 RID: 3409 RVA: 0x00015264 File Offset: 0x00014264
        public override bool Equals(object obj)
        {
            if (obj == null || obj.GetType() != base.GetType())
            {
                return(false);
            }
            ThumbnailKey thumbnailKey = (ThumbnailKey)obj;

            return(this.mDescKey == thumbnailKey.mDescKey && this.mTemplateObjectId == thumbnailKey.mTemplateObjectId && this.mIndex == thumbnailKey.mIndex && this.mCamera == thumbnailKey.mCamera && this.mBodyType == thumbnailKey.mBodyType && this.mAgeGender == thumbnailKey.mAgeGender && this.mMaterialState == thumbnailKey.mMaterialState && this.mGeometryState == thumbnailKey.mGeometryState && this.mLiveUpdate == thumbnailKey.mLiveUpdate && this.mTechnique == thumbnailKey.mTechnique && this.mDoNotCache == thumbnailKey.mDoNotCache && this.mAdditionalSizesToCache == thumbnailKey.mAdditionalSizesToCache);
        }
示例#2
0
 // Token: 0x06000D4E RID: 3406 RVA: 0x000151B8 File Offset: 0x000141B8
 public ThumbnailKey(SimOutfit outfit, int index, ThumbnailSize size, ThumbnailCamera camera, uint ageGenderSpecies)
 {
     this            = new ThumbnailKey(outfit, index, size, camera);
     this.mAgeGender = ageGenderSpecies;
 }
示例#3
0
 // Token: 0x06000D50 RID: 3408 RVA: 0x0001524D File Offset: 0x0001424D
 public ThumbnailKey(SimOutfit outfit, int index, bool liveUpdate, ThumbnailSize size, ThumbnailCamera camera)
 {
     this             = new ThumbnailKey(outfit, index, size, camera);
     this.mLiveUpdate = liveUpdate;
 }
示例#4
0
 // Token: 0x06000D4B RID: 3403 RVA: 0x00015063 File Offset: 0x00014063
 public ThumbnailKey(ResourceKey objectDescKey, int index, uint bodyType, uint ageGender, bool liveUpdate, ThumbnailSize size)
 {
     this             = new ThumbnailKey(objectDescKey, index, bodyType, ageGender, size);
     this.mLiveUpdate = liveUpdate;
 }