コード例 #1
0
        public Color32[] GetPixels32()
        {
            string key = textures[_selectedTexture][_selectedColor];

            if (!cache.ContainsKey(key))
            {
                cache[key] = Current.GetPixels32();
                textureLoader.UnloadTextures();
            }

            return(cache[key]);
        }