Ejemplo n.º 1
0
        public static new GLTFNormalTextureInfo Deserialize(GLTFRoot root, JsonReader reader)
        {
            var textureInfo = new GLTFNormalTextureInfo();

            if (reader.Read() && reader.TokenType != JsonToken.StartObject)
            {
                throw new Exception("Asset must be an object.");
            }

            while (reader.Read() && reader.TokenType == JsonToken.PropertyName)
            {
                var curProp = reader.Value.ToString();

                switch (curProp)
                {
                case "index":
                    textureInfo.Index = GLTFTextureId.Deserialize(root, reader);
                    break;

                case "texCoord":
                    textureInfo.TexCoord = reader.ReadAsInt32().Value;
                    break;

                case "scale":
                    textureInfo.Scale = reader.ReadAsDouble().Value;
                    break;

                default:
                    textureInfo.DefaultPropertyDeserializer(root, reader);
                    break;
                }
            }

            return(textureInfo);
        }
Ejemplo n.º 2
0
        public static GLTFMaterial Deserialize(GLTFRoot root, JsonReader reader)
        {
            var material = new GLTFMaterial();

            while (reader.Read() && reader.TokenType == JsonToken.PropertyName)
            {
                var curProp = reader.Value.ToString();

                switch (curProp)
                {
                case "pbrMetallicRoughness":
                    material.PbrMetallicRoughness = GLTFPBRMetallicRoughness.Deserialize(root, reader);
                    break;

                case "normalTexture":
                    material.NormalTexture = GLTFNormalTextureInfo.Deserialize(root, reader);
                    break;

                case "occlusionTexture":
                    material.OcclusionTexture = GLTFOcclusionTextureInfo.Deserialize(root, reader);
                    break;

                case "emissiveTexture":
                    material.EmissiveTexture = GLTFTextureInfo.Deserialize(root, reader);
                    break;

                case "emissiveFactor":
                    material.EmissiveFactor = reader.ReadAsRGBColor();
                    break;

                case "alphaMode":
                    material.AlphaMode = reader.ReadStringEnum <GLTFAlphaMode>();
                    break;

                case "alphaCutoff":
                    material.AlphaCutoff = reader.ReadAsDouble().Value;
                    break;

                case "doubleSided":
                    material.DoubleSided = reader.ReadAsBoolean().Value;
                    break;

                default:
                    material.DefaultPropertyDeserializer(root, reader);
                    break;
                }
            }

            return(material);
        }