Ejemplo n.º 1
0
        public bool GetIsLightShaftsSupported()
        {
            IPropertyConverter convertToBool = new PropertyToBool();
            var bEnableLightShafts           = (bool)ReadProperty(convertToBool, "lightshafts");

            return(bEnableLightShafts);
        }
Ejemplo n.º 2
0
        public bool GetIsBloomSupported()
        {
            IPropertyConverter convertToBool = new PropertyToBool();
            var bEnableBloom = (bool)ReadProperty(convertToBool, "bloom");

            return(bEnableBloom);
        }
Ejemplo n.º 3
0
        public bool GetIsDepthOfFieldSupported()
        {
            IPropertyConverter convertToBoll = new PropertyToBool();
            var bEnableDoF = (bool)ReadProperty(convertToBoll, "depthOfField");

            return(bEnableDoF);
        }
Ejemplo n.º 4
0
        public bool GetIsMipMapSupported()
        {
            IPropertyConverter convertToBool = new PropertyToBool();
            var bEnableMipMap = (bool)ReadProperty(convertToBool, "mipmap");

            return(bEnableMipMap);
        }
Ejemplo n.º 5
0
        public bool GetIsLensFlaresSupported()
        {
            IPropertyConverter convertToBool = new PropertyToBool();
            var bEnableLensFlare             = (bool)ReadProperty(convertToBool, "lensflare");

            return(bEnableLensFlare);
        }