Index Godot Material Material URLs https://godotforums.org/d/34276-set-material-in-code-for-a-mesh-but-not-affect-all-meshes-with-that-material/4 Change color 1func changeColor(color: Color): 2 var material = $MeshInstance3D.get_surface_override_material(0).duplicate() 3 material.albedo_color = color 4 5 $MeshInstance3D3.set_surface_override_material(0, material) 6 $MeshInstance3D4.set_surface_override_material(0, material) LoggingMaterials