Remove experimental tag from gltf exporter.

This commit is contained in:
Viktor Kovacs 2021-03-29 16:21:20 +02:00
parent b0a47c8173
commit 68e8e88d82

View File

@ -226,9 +226,9 @@ OV.ShowExportDialog = function (model)
{ name : 'stl (binary)', format : OV.FileFormat.Binary, extension : 'stl' },
{ name : 'ply (text)', format : OV.FileFormat.Text, extension : 'ply' },
{ name : 'ply (binary)', format : OV.FileFormat.Binary, extension : 'ply' },
{ name : 'off (text)', format : OV.FileFormat.Text, extension : 'off' },
{ name : 'gltf (text) - experimental', format : OV.FileFormat.Text, extension : 'gltf' },
{ name : 'gltf (binary) - experimental', format : OV.FileFormat.Binary, extension : 'glb' }
{ name : 'gltf (text)', format : OV.FileFormat.Text, extension : 'gltf' },
{ name : 'gltf (binary)', format : OV.FileFormat.Binary, extension : 'glb' },
{ name : 'off (text)', format : OV.FileFormat.Text, extension : 'off' }
];
let formatSelect = $('<select>').addClass ('ov_dialog_select').appendTo (contentDiv);