This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mxGraphModel> | |
| <root> | |
| <mxCell id="0"/> | |
| <mxCell id="1" parent="0"/> | |
| <mxCell id="2" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="1"> | |
| <mxGeometry x="1185" y="480" width="50" height="50" as="geometry"/> | |
| </mxCell> | |
| <mxCell id="3" value="{{.Name}}" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1"> | |
| <mxGeometry x="1157.5" y="530" width="105" height="30" as="geometry"/> | |
| </mxCell> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Qt | |
| uses: jurplel/install-qt-action@v4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Taken from https://discord.com/channels/927050775073534012/1118873455673217105, in Nomifactory Discord server | |
| from PIL import Image | |
| import glob | |
| from os import makedirs | |
| keywords = ["bloom", "emissive"] | |
| files = [] | |
| bad_keywords = [] |