Skip to content

Commit 2c7ae73

Browse files
author
Roberto De Ioris
authored
Update PlottingGraphsWithMatplotlibAndUnrealEnginePython.md
1 parent bd3f68f commit 2c7ae73

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tutorials/PlottingGraphsWithMatplotlibAndUnrealEnginePython.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
# Plotting Graphs with Matplotlib and Unreal Engine Python
22

3+
In this tutorial we will see how to use third party python modules in your Unreal Engine projects.
4+
5+
The module of choice is 'matplotlib' https://matplotlib.org/.
6+
7+
From the official site:
8+
9+
```
10+
Matplotlib is a Python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. Matplotlib can be used in Python scripts, the Python and IPython shell, the jupyter notebook, web application servers, and four graphical user interface toolkits.
11+
```
12+
13+
So our objective will be plotting graphs into Unreal Engine textures asset, both in the editor (to pre-generate assets) and during gameplay (to dynamically update texture-graph data)
314

415
## Creating the project
516

17+
First step is obviously creating a new project.
18+
19+
We will use the third person template
20+
621
![ThirdPerson Template](https://github.com/20tab/UnrealEnginePython/blob/master/tutorials/PlottingGraphsWithMatplotlibAndUnrealEnginePython_Assets/third_person.png)
722

823
## Installing the Python plugin

0 commit comments

Comments
 (0)