Ejemplo n.º 1
0
        public void RefreshAllTextures()
        {
            ChaControl.ChangeClothes(true);

            if (StudioAPI.InsideStudio)
            {
                FixSkirtFk();
            }
        }
        public void RefreshAllTextures()
        {
            // todo test if needed for main game as well
            // Studio needs a more aggresive refresh to update the textures
            if (StudioAPI.InsideStudio)
            {
                ChaControl.ChangeClothes(true);
                return;
            }

            for (var i = 0; i < ChaControl.cusClothesCmp.Length; i++)
            {
                ChaControl.ChangeCustomClothes(true, i, true, false, false, false, false);
            }

            for (var i = 0; i < ChaControl.cusClothesSubCmp.Length; i++)
            {
                ChaControl.ChangeCustomClothes(false, i, true, false, false, false, false);
            }
        }
Ejemplo n.º 3
0
 public void RefreshAllTextures()
 {
     ChaControl.ChangeClothes(true);
 }