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
| # Place this file next to ck3.Dockerfile into Crusader Kings III directory | |
| # and rename it to .dockerignore so that files not necessary for -nographics mode of CK3 | |
| # are excluded when you run docker build, thus dramatically reducing the resulting image size. | |
| launcher/ | |
| game/dlc/*/gfx | |
| game/dlc/*/music | |
| game/dlc/*/sound |
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
| @echo OFF | |
| python tools/compress_tga.py "mod/gfx/map/terrain/*.tga" |
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
| Includes = { | |
| "cw/pdxgui.fxh" | |
| "cw/pdxgui_sprite_textures.fxh" | |
| } | |
| VertexShader = | |
| { | |
| MainCode VertexShader | |
| { | |
| Input = "VS_INPUT_PDX_GUI" |
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
| #!/usr/bin/env python | |
| import argparse | |
| import traceback | |
| from pathlib import Path | |
| from os import path | |
| import yaml | |
| from jinja2 import Environment, FileSystemLoader | |
| # |