Procházet zdrojové kódy

export json honors material array (#28431)

ycw před 1 rokem
rodič
revize
312b7ee9c0
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      editor/js/Sidebar.Material.js

+ 1 - 1
editor/js/Sidebar.Material.js

@@ -430,7 +430,7 @@ function SidebarMaterial( editor ) {
 	exportJson.onClick( function () {
 
 		const object = editor.selected;
-		const material = object.material;
+		const material = Array.isArray( object.material ) ? object.material[ currentMaterialSlot ] : object.material;
 
 		let output = material.toJSON();