We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1940a76 commit 36fdba4Copy full SHA for 36fdba4
docs/Material_API.md
@@ -70,6 +70,13 @@ import unreal_engine as ue
70
material_instance = ue.create_material_instance(new_material)
71
```
72
73
+```python
74
+import unreal_engine as ue
75
+# you can also specify a path and a name to the new material instance.
76
+material_instance = ue.create_material_instance(new_material, '/Game/Materials/', 'New Funny Material Instance')
77
+```
78
+
79
80
Or the factory way:
81
82
```python
0 commit comments