Exemple #1
0
 // Swap to the next LowerBody.
 public void NextLowerBody()
 {
     // Retrieve next.
     this._lowerBody = this._wardrobe.GetNextLowerBody();
     // Update UI.
     UpdateWardrobeUI(Resource.Id.AvatarLowerBody, this._lowerBody);
 }
Exemple #2
0
        // Add a new LowerBody.
        private void AddLowerBody(string name, string imagePath)
        {
            var item = new WardrobeItem(name, imagePath);

            this.LowerBodies.Add(item);
        }
Exemple #3
0
 private void UpdateWardrobeUI(int resourceId, WardrobeItem item)
 {
     UpdateWardrobeItemText(resourceId, item.Name);
     UpdateWardrobeItemImage(resourceId, item.ImagePath);
 }
Exemple #4
0
        // Add a new Topper.
        private void AddTopper(string name, string imagePath)
        {
            var item = new WardrobeItem(name, imagePath);

            this.Toppers.Add(item);
        }