Esempio n. 1
0
        /*
         * Retrieves the final color value of the tile and normalizes color
         * The final color is the color multiplied by its intensity
         * The final color is opaque
         */
        public virtual Color getFinalColor()
        {
            Color finalColor = color.normalize() * color.a;

            finalColor.a = 1f;
            return(finalColor);
        }