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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
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 | |
| from misc.utility.scons_hints import * | |
| USE_BREW = True | |
| import sys | |
| import subprocess | |
| import typing | |
| try: |
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
| # Canadian Multilingual Standard keyboard | |
| # by Adam Scott ([email protected]) | |
| # | |
| # January 31, 2025 | |
| # | |
| # Based on French Canadian keyboard | |
| # by Alexandre Normand ([email protected]) | |
| # with the help of Demis ([email protected]) | |
| # | |
| # July 4, 1999 |
- Copy the requirements.txt file locally
- Run
pip install -r /path/to/requirements.txtto install the dependencies. - Copy the godot-api-intro.py file locally
- Run
python /path/to/godot-api-intro.py initto initialize the local sqlite3 database (godot_version_doc.db) - Run
python /path/to/godot-api-intro.py parse /path/to/godot/repo <GODOT_VERSION>to enter data from that version.
- The script will checkout the version specified.
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 python3 | |
| import argparse | |
| from enum import Enum | |
| from io import TextIOWrapper, StringIO | |
| from os.path import splitext | |
| from pathlib import Path | |
| from typing import Union | |
| import re | |
| import subprocess | |
| import tempfile |
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
| import { existsSync } from "node:fs"; | |
| import { open, writeFile } from "node:fs/promises"; | |
| import * as path from "node:path"; | |
| import { parseArgs } from "node:util"; | |
| import { runInContext, createContext } from "node:vm"; | |
| const VERSION = "0.0.1"; | |
| const EMSCRIPTEN_INTERPOLATION_REGEX = /\{\{\{(.+?)\}\}\}/msu; | |
| /** @type {import("node:util").ParseArgsOptionsConfig} */ |
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
| import os | |
| from SCons import Environment | |
| env = Environment.Environment(tools=["cc", "c++", "ar", "link", "textfile", "zip"]) | |
| env["ENV"] = os.environ | |
| env["CC"] = "emcc" |
OlderNewer