setMaterialInstancesFromMap method

Future setMaterialInstancesFromMap(
  1. Map<ThermionEntity, List<MaterialInstance>> materialInstances
)

For each entity in the given map, set the material instance for the respective primitive.

Mainly intended for use with getMaterialInstancesAsMap so you can easily save/restore an asset's material instances.

Implementation

Future setMaterialInstancesFromMap(
    Map<ThermionEntity, List<MaterialInstance>> materialInstances) async {
  throw UnimplementedError();
}