We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 048cf71 commit 5ee2d33Copy full SHA for 5ee2d33
docs/ManagingAssets.md
@@ -127,6 +127,16 @@ from unreal_engine.classes import PyFbxFactory
127
asset002 = ue.import_asset('/Users/FooBar/Desktop/warrior001.fbx', '/Game/Meshes', PyFbxFactory)
128
```
129
130
+or
131
+
132
+```python
133
+from unreal_engine.classes import PyFbxFactory
134
135
+factory = PyFbxFactory()
136
137
+asset002 = factory.factory_import_object('/Users/FooBar/Desktop/warrior001.fbx', '/Game/Meshes')
138
+```
139
140
If the factory supports options, you can instantiate a factory before use:
141
142
```python
0 commit comments