You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/YourFirstAutomatedPipeline.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -779,8 +779,18 @@ We can now complete the first part of the tutorial by compiling the blueprint:
779
779
780
780
```python
781
781
ue.compile_blueprint(slicer_bp)
782
+
slicer_bp.save_package()
782
783
```
783
784
Final notes
784
785
-
785
786
786
-
You can now drag and drop the blueprint in your scene or subclass it, in part2 we will see how to give a 'brain' to our Kaiju.
787
+
You can get the whole script here: https://github.com/20tab/UnrealEnginePython/blob/master/tutorials/YourFirstAutomatedPipeline_Assets/kaiju_slicer_pipeline.py
788
+
789
+
You can now drag and drop the blueprint in your scene or subclass it.
790
+
791
+
You can eventually spawn it directly from python:
792
+
793
+
```python
794
+
```
795
+
796
+
In part2 we will see how to give a 'brain' to our Kaiju.
0 commit comments