Пример #1
0
        public ExporterForm()
        {
            InitializeComponent();
            this.Text = $"Babylon.js - Export scene to babylon or glTF format v{BabylonExporter.exporterVersion}";

            // Check if the gltf-pipeline module is installed
            gltfPipelineInstalled = GLTFPipelineUtilities.IsGLTFPipelineInstalled();

            groupBox1.MouseMove += groupBox1_MouseMove;
        }
Пример #2
0
        public ExporterForm(BabylonExportActionItem babylonExportAction)
        {
            InitializeComponent();
            RegisterFilePostOpen();


            this.Text = $"Babylon.js - Export scene to babylon or glTF format v{BabylonExporter.exporterVersion}";

            this.babylonExportAction = babylonExportAction;

            // Check if the gltf-pipeline module is installed
            this.gltfPipelineInstalled = GLTFPipelineUtilities.IsGLTFPipelineInstalled();

            groupBox1.MouseMove += groupBox1_MouseMove;
        }