Exemplo n.º 1
0
	void Material::Save(std::ostream& stream)
	{
		JsonObject json;
		json["emissive_only"].SetBool(emmisive_only_);
		json["depth_write"].SetBool(depth_write_);


		BinaryWriter br(stream);
		br.writeRaw(json.GetString());
	}