/usr/src/castle-game-engine-5.0.0/fonts/mk_fonts.sh is in castle-game-engine-src 5.0.0-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #!/bin/bash
set -eu
do_outlinefont2pascal ()
{
outlinefont2pascal "$@" --dir .
}
mk_4_outline_versions ()
{
do_outlinefont2pascal "$@"
do_outlinefont2pascal "$@" -i 1
do_outlinefont2pascal "$@" -b 1
do_outlinefont2pascal "$@" -b 1 -i 1
}
# Outline fonts used by X3DNodes
#mk_4_outline_versions --font-name 'Bitstream Vera Sans'
#mk_4_outline_versions --font-name 'Bitstream Vera Sans Mono'
#mk_4_outline_versions --font-name 'Bitstream Vera Serif'
# Used by CastleControls.UIFont
texturefont2pascal --size 20 /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf
# Used by CastleControls.UIFontSmall
texturefont2pascal --size 10 /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf
# Used by CastleControls as MessageFont, for TCastleDialog
texturefont2pascal --size 18 /usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf
# Used by view3dscene
texturefont2pascal --size 15 /usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf
|