├── .github └── workflows │ ├── publish.yml │ ├── style.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .pylintrc ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── _static │ ├── .gitkeep │ └── formated_log.png ├── commands │ ├── editor │ │ ├── client.rst │ │ ├── cook.rst │ │ ├── editor.rst │ │ ├── localize.rst │ │ ├── ml.rst │ │ ├── open.rst │ │ ├── resavepackages.rst │ │ ├── server.rst │ │ └── worldpartition.rst │ ├── engine │ │ ├── add.rst │ │ └── update.rst │ ├── fmt.rst │ ├── init.rst │ ├── plugin │ │ ├── disable.rst │ │ ├── finalize.rst │ │ ├── install.rst │ │ ├── list.rst │ │ ├── new.rst │ │ └── package.rst │ ├── project │ │ ├── cpp.rst │ │ ├── create.rst │ │ ├── dedicated.rst │ │ ├── docs.rst │ │ ├── list.rst │ │ ├── python.rst │ │ └── vscode.rst │ ├── test │ │ └── run.rst │ ├── uat │ │ ├── cook.rst │ │ ├── localize.rst │ │ ├── test.rst │ │ └── uat.rst │ └── ubt │ │ ├── build.rst │ │ ├── configure.rst │ │ ├── generate.rst │ │ └── ubt.rst ├── conf.py ├── examples │ ├── actions.rst │ ├── extending.rst │ └── pipeline.rst ├── index.rst └── requirements.txt ├── examples ├── github_action.yml └── gitlab_pipeline.yml ├── extracted ├── commandlet.txt ├── editor_cmd.txt ├── execcmd.txt ├── extract_ubt_config.py ├── format_cmd.py ├── params.json ├── params.txt ├── parse_params.py └── ubt_xml.html ├── ruff.toml ├── setup.py ├── tests ├── conftest.py ├── fake │ ├── engine │ │ └── .gitkeep │ └── projects │ │ └── .gitkeep ├── integration │ ├── editor │ │ ├── test_editor.py │ │ ├── test_editor_cook.py │ │ ├── test_localize.py │ │ ├── test_open.py │ │ ├── test_resavepackages.py │ │ └── test_server.py │ ├── plugin │ │ ├── test_disable_e2e.py │ │ └── test_package_e2e.py │ ├── project │ │ └── test_dedicated_e2e.py │ ├── test │ │ └── test_tests.py │ ├── uat │ │ ├── test_uat.py │ │ ├── test_uat_cook.py │ │ └── test_uat_localize.py │ └── ubt │ │ ├── test_build.py │ │ └── test_generate.py ├── requirements.txt └── unit │ ├── argument │ └── test_args.py │ ├── engine │ └── test_engine.py │ ├── format │ ├── samples │ │ ├── cooking_in.txt │ │ ├── cooking_out.txt │ │ ├── error_code.txt │ │ ├── tests_in.txt │ │ └── tests_out.txt │ ├── test_formatter.py │ └── test_formatter │ │ ├── test_formatter_cook.txt │ │ └── test_formatter_test.txt │ ├── gamekit │ ├── test_gkversion.py │ └── test_mock_gamekit.py │ ├── project │ ├── test_cpp.py │ ├── test_create.py │ ├── test_dedicated.py │ ├── test_docs.py │ ├── test_list.py │ ├── test_python.py │ └── test_vscode.py │ ├── test_cli.py │ ├── test_conf.py │ ├── test_fmt.py │ ├── test_init.py │ ├── test_mock_editor.py │ ├── test_mock_plugin.py │ ├── test_mock_test.py │ ├── test_mock_uat.py │ ├── test_mock_ubt.py │ ├── test_plugin_finalize.py │ ├── test_plugin_install.py │ ├── test_plugin_list.py │ ├── test_plugin_new.py │ ├── test_ubt_configure.py │ └── test_uetools_plugins.py ├── tox.ini └── uetools ├── __init__.py ├── commands ├── __init__.py ├── agent │ ├── __init__.py │ └── run.py ├── editor │ ├── __init__.py │ ├── client.py │ ├── cook.py │ ├── editor.py │ ├── game.py │ ├── localize.py │ ├── ml.py │ ├── open.py │ ├── resavepackages.py │ ├── server.py │ ├── templates │ │ └── Localization │ │ │ └── TargetName.ini │ └── worldpartition.py ├── engine │ ├── __init__.py │ ├── add.py │ └── update.py ├── fmt.py ├── game │ ├── __init__.py │ ├── client.py │ ├── game.py │ ├── server.py │ └── stop.py ├── gitlab │ ├── __init__.py │ ├── publish.py │ └── zip.py ├── init.py ├── plugin │ ├── __init__.py │ ├── class.py │ ├── disable.py │ ├── finalize.py │ ├── install.py │ ├── list.py │ ├── new.py │ ├── package.py │ └── templates │ │ └── PluginTemplate │ │ ├── cookiecutter.json │ │ └── {{cookiecutter.plugin_name}} │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── .gitignore │ │ ├── .gitlab │ │ └── pipeline.yml │ │ ├── Config │ │ ├── Default{{cookiecutter.plugin_name}}.ini │ │ └── FilterPlugin.ini │ │ ├── Content │ │ └── .gitkeep │ │ ├── Docs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── Makefile │ │ ├── _static │ │ │ └── .gitkeep │ │ ├── conf.py │ │ ├── index.rst │ │ └── requirements.txt │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── Resources │ │ └── Icon128.png │ │ ├── Shaders │ │ └── .gitkeep │ │ ├── Source │ │ ├── python │ │ │ └── {{cookiecutter.plugin_name}} │ │ │ │ └── __init__.py │ │ ├── {{cookiecutter.plugin_name}} │ │ │ ├── Private │ │ │ │ ├── Example │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}AIController.cpp │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}Character.cpp │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}GameMode.cpp │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}GameState.cpp │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}Pawn.cpp │ │ │ │ │ └── {{cookiecutter.plugin_namespace}}PlayerController.cpp │ │ │ │ ├── {{cookiecutter.plugin_namespace}}Library.cpp │ │ │ │ ├── {{cookiecutter.plugin_namespace}}Log.cpp │ │ │ │ ├── {{cookiecutter.plugin_namespace}}Log.h │ │ │ │ └── {{cookiecutter.plugin_name}}.cpp │ │ │ ├── Public │ │ │ │ ├── Example │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}AIController.h │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}Character.h │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}GameMode.h │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}GameState.h │ │ │ │ │ ├── {{cookiecutter.plugin_namespace}}Pawn.h │ │ │ │ │ └── {{cookiecutter.plugin_namespace}}PlayerController.h │ │ │ │ ├── {{cookiecutter.plugin_namespace}}Library.h │ │ │ │ └── {{cookiecutter.plugin_name}}.h │ │ │ └── {{cookiecutter.plugin_name}}.Build.cs │ │ ├── {{cookiecutter.plugin_name}}Ed │ │ │ ├── Private │ │ │ │ ├── {{cookiecutter.plugin_namespace}}EdLog.cpp │ │ │ │ ├── {{cookiecutter.plugin_namespace}}EdLog.h │ │ │ │ └── {{cookiecutter.plugin_name}}.cpp │ │ │ ├── Public │ │ │ │ └── {{cookiecutter.plugin_name}}Ed.h │ │ │ └── {{cookiecutter.plugin_name}}Ed.Build.cs │ │ ├── {{cookiecutter.plugin_name}}Shader │ │ │ ├── Private │ │ │ │ ├── {{cookiecutter.plugin_namespace}}ShaderLog.cpp │ │ │ │ ├── {{cookiecutter.plugin_namespace}}ShaderLog.h │ │ │ │ └── {{cookiecutter.plugin_name}}Shader.cpp │ │ │ ├── Public │ │ │ │ └── {{cookiecutter.plugin_name}}Shader.h │ │ │ └── {{cookiecutter.plugin_name}}Shader.Build.cs │ │ └── {{cookiecutter.plugin_name}}Test │ │ │ ├── Private │ │ │ └── {{cookiecutter.plugin_name}}Test.cpp │ │ │ ├── Public │ │ │ └── {{cookiecutter.plugin_name}}Test.h │ │ │ └── {{cookiecutter.plugin_name}}Test.Build.cs │ │ ├── setup.py │ │ └── {{cookiecutter.plugin_name}}.uplugin ├── project │ ├── __init__.py │ ├── cpp.py │ ├── create.py │ ├── dedicated.py │ ├── docs.py │ ├── list.py │ ├── python.py │ ├── templates │ │ ├── CPPTemplate │ │ │ ├── cookiecutter.json │ │ │ └── {{cookiecutter.project_name}} │ │ │ │ ├── Shaders │ │ │ │ └── .gitkeep │ │ │ │ └── Source │ │ │ │ ├── {{cookiecutter.project_name}}.Target.cs │ │ │ │ ├── {{cookiecutter.project_name}} │ │ │ │ ├── {{cookiecutter.project_name}}.Build.cs │ │ │ │ ├── {{cookiecutter.project_name}}.cpp │ │ │ │ └── {{cookiecutter.project_name}}.h │ │ │ │ ├── {{cookiecutter.project_name}}Editor.Target.cs │ │ │ │ └── {{cookiecutter.project_name}}Server.Target.cs │ │ └── TemplateServer.Target │ └── vscode.py ├── test │ ├── __init__.py │ └── run.py ├── uat │ ├── __init__.py │ ├── arguments.py │ ├── cook.py │ ├── localize.py │ ├── test.py │ └── uat.py └── ubt │ ├── __init__.py │ ├── build.py │ ├── configure.py │ ├── regenerate.py │ ├── ubt.py │ └── xmldef.py ├── core ├── __init__.py ├── cli.py ├── conf.py ├── data │ ├── commands_a305acbc.pkl │ ├── uetools.commands.agent_e6dd4b1a.pkl │ ├── uetools.commands.editor_0286b195.pkl │ ├── uetools.commands.engine_ef58a31c.pkl │ ├── uetools.commands.game_5a85c2f3.pkl │ ├── uetools.commands.gitlab_01861303.pkl │ ├── uetools.commands.plugin_f3264f89.pkl │ ├── uetools.commands.project_3d9e2c47.pkl │ ├── uetools.commands.test_80c091f8.pkl │ ├── uetools.commands.uat_2468c13d.pkl │ ├── uetools.commands.ubt_aecb5a57.pkl │ └── uetools.plugins.gamekit_0294032a.pkl ├── ini.py ├── options.py ├── perf.py ├── run.py ├── testing.py └── util.py ├── format ├── __init__.py ├── base.py ├── cooking.py └── tests.py ├── jinga2 └── __init__.py ├── plugins ├── .gitkeep ├── __init__.py └── gamekit │ ├── __init__.py │ ├── autovoice.py │ ├── gitversion.py │ ├── gkscript.py │ ├── marketing.py │ ├── refactor.py │ └── resources │ ├── LICENSE.txt │ └── Roboto-Regular.ttf ├── rl ├── __init__.py ├── client.py └── env.py ├── templates ├── CPPInterfaceTemplate │ └── Header.cpp ├── TemplateEditor.Target ├── TemplateGame.Target └── TemplatePlugin.Build └── ui ├── __init__.py └── main.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/README.rst -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/formated_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/_static/formated_log.png -------------------------------------------------------------------------------- /docs/commands/editor/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/client.rst -------------------------------------------------------------------------------- /docs/commands/editor/cook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/cook.rst -------------------------------------------------------------------------------- /docs/commands/editor/editor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/editor.rst -------------------------------------------------------------------------------- /docs/commands/editor/localize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/localize.rst -------------------------------------------------------------------------------- /docs/commands/editor/ml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/ml.rst -------------------------------------------------------------------------------- /docs/commands/editor/open.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/open.rst -------------------------------------------------------------------------------- /docs/commands/editor/resavepackages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/resavepackages.rst -------------------------------------------------------------------------------- /docs/commands/editor/server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/server.rst -------------------------------------------------------------------------------- /docs/commands/editor/worldpartition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/editor/worldpartition.rst -------------------------------------------------------------------------------- /docs/commands/engine/add.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/engine/add.rst -------------------------------------------------------------------------------- /docs/commands/engine/update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/engine/update.rst -------------------------------------------------------------------------------- /docs/commands/fmt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/fmt.rst -------------------------------------------------------------------------------- /docs/commands/init.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/init.rst -------------------------------------------------------------------------------- /docs/commands/plugin/disable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/plugin/disable.rst -------------------------------------------------------------------------------- /docs/commands/plugin/finalize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/plugin/finalize.rst -------------------------------------------------------------------------------- /docs/commands/plugin/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/plugin/install.rst -------------------------------------------------------------------------------- /docs/commands/plugin/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/plugin/list.rst -------------------------------------------------------------------------------- /docs/commands/plugin/new.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/plugin/new.rst -------------------------------------------------------------------------------- /docs/commands/plugin/package.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/plugin/package.rst -------------------------------------------------------------------------------- /docs/commands/project/cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/project/cpp.rst -------------------------------------------------------------------------------- /docs/commands/project/create.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/project/create.rst -------------------------------------------------------------------------------- /docs/commands/project/dedicated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/project/dedicated.rst -------------------------------------------------------------------------------- /docs/commands/project/docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/project/docs.rst -------------------------------------------------------------------------------- /docs/commands/project/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/project/list.rst -------------------------------------------------------------------------------- /docs/commands/project/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/project/python.rst -------------------------------------------------------------------------------- /docs/commands/project/vscode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/project/vscode.rst -------------------------------------------------------------------------------- /docs/commands/test/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/test/run.rst -------------------------------------------------------------------------------- /docs/commands/uat/cook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/uat/cook.rst -------------------------------------------------------------------------------- /docs/commands/uat/localize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/uat/localize.rst -------------------------------------------------------------------------------- /docs/commands/uat/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/uat/test.rst -------------------------------------------------------------------------------- /docs/commands/uat/uat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/uat/uat.rst -------------------------------------------------------------------------------- /docs/commands/ubt/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/ubt/build.rst -------------------------------------------------------------------------------- /docs/commands/ubt/configure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/ubt/configure.rst -------------------------------------------------------------------------------- /docs/commands/ubt/generate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/ubt/generate.rst -------------------------------------------------------------------------------- /docs/commands/ubt/ubt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/commands/ubt/ubt.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples/actions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/examples/actions.rst -------------------------------------------------------------------------------- /docs/examples/extending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/examples/extending.rst -------------------------------------------------------------------------------- /docs/examples/pipeline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/examples/pipeline.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /examples/github_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/examples/github_action.yml -------------------------------------------------------------------------------- /examples/gitlab_pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/examples/gitlab_pipeline.yml -------------------------------------------------------------------------------- /extracted/commandlet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/commandlet.txt -------------------------------------------------------------------------------- /extracted/editor_cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/editor_cmd.txt -------------------------------------------------------------------------------- /extracted/execcmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/execcmd.txt -------------------------------------------------------------------------------- /extracted/extract_ubt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/extract_ubt_config.py -------------------------------------------------------------------------------- /extracted/format_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/format_cmd.py -------------------------------------------------------------------------------- /extracted/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/params.json -------------------------------------------------------------------------------- /extracted/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/params.txt -------------------------------------------------------------------------------- /extracted/parse_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/parse_params.py -------------------------------------------------------------------------------- /extracted/ubt_xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/extracted/ubt_xml.html -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/ruff.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fake/engine/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fake/projects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/editor/test_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/editor/test_editor.py -------------------------------------------------------------------------------- /tests/integration/editor/test_editor_cook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/editor/test_editor_cook.py -------------------------------------------------------------------------------- /tests/integration/editor/test_localize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/editor/test_localize.py -------------------------------------------------------------------------------- /tests/integration/editor/test_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/editor/test_open.py -------------------------------------------------------------------------------- /tests/integration/editor/test_resavepackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/editor/test_resavepackages.py -------------------------------------------------------------------------------- /tests/integration/editor/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/editor/test_server.py -------------------------------------------------------------------------------- /tests/integration/plugin/test_disable_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/plugin/test_disable_e2e.py -------------------------------------------------------------------------------- /tests/integration/plugin/test_package_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/plugin/test_package_e2e.py -------------------------------------------------------------------------------- /tests/integration/project/test_dedicated_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/project/test_dedicated_e2e.py -------------------------------------------------------------------------------- /tests/integration/test/test_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/test/test_tests.py -------------------------------------------------------------------------------- /tests/integration/uat/test_uat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/uat/test_uat.py -------------------------------------------------------------------------------- /tests/integration/uat/test_uat_cook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/uat/test_uat_cook.py -------------------------------------------------------------------------------- /tests/integration/uat/test_uat_localize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/uat/test_uat_localize.py -------------------------------------------------------------------------------- /tests/integration/ubt/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/ubt/test_build.py -------------------------------------------------------------------------------- /tests/integration/ubt/test_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/integration/ubt/test_generate.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/unit/argument/test_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/argument/test_args.py -------------------------------------------------------------------------------- /tests/unit/engine/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/engine/test_engine.py -------------------------------------------------------------------------------- /tests/unit/format/samples/cooking_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/format/samples/cooking_in.txt -------------------------------------------------------------------------------- /tests/unit/format/samples/cooking_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/format/samples/cooking_out.txt -------------------------------------------------------------------------------- /tests/unit/format/samples/error_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/format/samples/error_code.txt -------------------------------------------------------------------------------- /tests/unit/format/samples/tests_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/format/samples/tests_in.txt -------------------------------------------------------------------------------- /tests/unit/format/samples/tests_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/format/samples/tests_out.txt -------------------------------------------------------------------------------- /tests/unit/format/test_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/format/test_formatter.py -------------------------------------------------------------------------------- /tests/unit/format/test_formatter/test_formatter_cook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/format/test_formatter/test_formatter_cook.txt -------------------------------------------------------------------------------- /tests/unit/format/test_formatter/test_formatter_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/format/test_formatter/test_formatter_test.txt -------------------------------------------------------------------------------- /tests/unit/gamekit/test_gkversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/gamekit/test_gkversion.py -------------------------------------------------------------------------------- /tests/unit/gamekit/test_mock_gamekit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/gamekit/test_mock_gamekit.py -------------------------------------------------------------------------------- /tests/unit/project/test_cpp.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/project/test_create.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/project/test_dedicated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/project/test_dedicated.py -------------------------------------------------------------------------------- /tests/unit/project/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/project/test_docs.py -------------------------------------------------------------------------------- /tests/unit/project/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/project/test_list.py -------------------------------------------------------------------------------- /tests/unit/project/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/project/test_python.py -------------------------------------------------------------------------------- /tests/unit/project/test_vscode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/project/test_vscode.py -------------------------------------------------------------------------------- /tests/unit/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_cli.py -------------------------------------------------------------------------------- /tests/unit/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_conf.py -------------------------------------------------------------------------------- /tests/unit/test_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_fmt.py -------------------------------------------------------------------------------- /tests/unit/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_init.py -------------------------------------------------------------------------------- /tests/unit/test_mock_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_mock_editor.py -------------------------------------------------------------------------------- /tests/unit/test_mock_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_mock_plugin.py -------------------------------------------------------------------------------- /tests/unit/test_mock_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_mock_test.py -------------------------------------------------------------------------------- /tests/unit/test_mock_uat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_mock_uat.py -------------------------------------------------------------------------------- /tests/unit/test_mock_ubt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_mock_ubt.py -------------------------------------------------------------------------------- /tests/unit/test_plugin_finalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_plugin_finalize.py -------------------------------------------------------------------------------- /tests/unit/test_plugin_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_plugin_install.py -------------------------------------------------------------------------------- /tests/unit/test_plugin_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_plugin_list.py -------------------------------------------------------------------------------- /tests/unit/test_plugin_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_plugin_new.py -------------------------------------------------------------------------------- /tests/unit/test_ubt_configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_ubt_configure.py -------------------------------------------------------------------------------- /tests/unit/test_uetools_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tests/unit/test_uetools_plugins.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/tox.ini -------------------------------------------------------------------------------- /uetools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/__init__.py -------------------------------------------------------------------------------- /uetools/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/__init__.py -------------------------------------------------------------------------------- /uetools/commands/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/agent/__init__.py -------------------------------------------------------------------------------- /uetools/commands/agent/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/agent/run.py -------------------------------------------------------------------------------- /uetools/commands/editor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/__init__.py -------------------------------------------------------------------------------- /uetools/commands/editor/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/client.py -------------------------------------------------------------------------------- /uetools/commands/editor/cook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/cook.py -------------------------------------------------------------------------------- /uetools/commands/editor/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/editor.py -------------------------------------------------------------------------------- /uetools/commands/editor/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/game.py -------------------------------------------------------------------------------- /uetools/commands/editor/localize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/localize.py -------------------------------------------------------------------------------- /uetools/commands/editor/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/ml.py -------------------------------------------------------------------------------- /uetools/commands/editor/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/open.py -------------------------------------------------------------------------------- /uetools/commands/editor/resavepackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/resavepackages.py -------------------------------------------------------------------------------- /uetools/commands/editor/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/server.py -------------------------------------------------------------------------------- /uetools/commands/editor/templates/Localization/TargetName.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/templates/Localization/TargetName.ini -------------------------------------------------------------------------------- /uetools/commands/editor/worldpartition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/editor/worldpartition.py -------------------------------------------------------------------------------- /uetools/commands/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/engine/__init__.py -------------------------------------------------------------------------------- /uetools/commands/engine/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/engine/add.py -------------------------------------------------------------------------------- /uetools/commands/engine/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/engine/update.py -------------------------------------------------------------------------------- /uetools/commands/fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/fmt.py -------------------------------------------------------------------------------- /uetools/commands/game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/game/__init__.py -------------------------------------------------------------------------------- /uetools/commands/game/client.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/game/game.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/game/server.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/game/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/game/stop.py -------------------------------------------------------------------------------- /uetools/commands/gitlab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/gitlab/__init__.py -------------------------------------------------------------------------------- /uetools/commands/gitlab/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/gitlab/publish.py -------------------------------------------------------------------------------- /uetools/commands/gitlab/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/gitlab/zip.py -------------------------------------------------------------------------------- /uetools/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/init.py -------------------------------------------------------------------------------- /uetools/commands/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/__init__.py -------------------------------------------------------------------------------- /uetools/commands/plugin/class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/class.py -------------------------------------------------------------------------------- /uetools/commands/plugin/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/disable.py -------------------------------------------------------------------------------- /uetools/commands/plugin/finalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/finalize.py -------------------------------------------------------------------------------- /uetools/commands/plugin/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/install.py -------------------------------------------------------------------------------- /uetools/commands/plugin/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/list.py -------------------------------------------------------------------------------- /uetools/commands/plugin/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/new.py -------------------------------------------------------------------------------- /uetools/commands/plugin/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/package.py -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/cookiecutter.json -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.github/FUNDING.yml -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.gitignore -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.gitlab/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/.gitlab/pipeline.yml -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Config/Default{{cookiecutter.plugin_name}}.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/CMakeLists.txt -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/Doxyfile.in -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/Makefile -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/conf.py -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/index.rst -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Docs/requirements.txt -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/LICENSE -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/README.rst -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Resources/Icon128.png -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Shaders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/python/{{cookiecutter.plugin_name}}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}AIController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}AIController.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}Character.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}GameMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}GameMode.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}GameState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}GameState.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}Pawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}Pawn.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}PlayerController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/Example/{{cookiecutter.plugin_namespace}}PlayerController.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/{{cookiecutter.plugin_namespace}}Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/{{cookiecutter.plugin_namespace}}Library.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/{{cookiecutter.plugin_namespace}}Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/{{cookiecutter.plugin_namespace}}Log.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/{{cookiecutter.plugin_namespace}}Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/{{cookiecutter.plugin_namespace}}Log.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/{{cookiecutter.plugin_name}}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Private/{{cookiecutter.plugin_name}}.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}AIController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}AIController.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}Character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}Character.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}GameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}GameMode.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}GameState.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}Pawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}Pawn.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}PlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/Example/{{cookiecutter.plugin_namespace}}PlayerController.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/{{cookiecutter.plugin_namespace}}Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/{{cookiecutter.plugin_namespace}}Library.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/{{cookiecutter.plugin_name}}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/Public/{{cookiecutter.plugin_name}}.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/{{cookiecutter.plugin_name}}.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}/{{cookiecutter.plugin_name}}.Build.cs -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/Private/{{cookiecutter.plugin_namespace}}EdLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/Private/{{cookiecutter.plugin_namespace}}EdLog.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/Private/{{cookiecutter.plugin_namespace}}EdLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/Private/{{cookiecutter.plugin_namespace}}EdLog.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/Private/{{cookiecutter.plugin_name}}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/Private/{{cookiecutter.plugin_name}}.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/Public/{{cookiecutter.plugin_name}}Ed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/Public/{{cookiecutter.plugin_name}}Ed.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/{{cookiecutter.plugin_name}}Ed.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Ed/{{cookiecutter.plugin_name}}Ed.Build.cs -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/Private/{{cookiecutter.plugin_namespace}}ShaderLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/Private/{{cookiecutter.plugin_namespace}}ShaderLog.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/Private/{{cookiecutter.plugin_namespace}}ShaderLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/Private/{{cookiecutter.plugin_namespace}}ShaderLog.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/Private/{{cookiecutter.plugin_name}}Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/Private/{{cookiecutter.plugin_name}}Shader.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/Public/{{cookiecutter.plugin_name}}Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/Public/{{cookiecutter.plugin_name}}Shader.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/{{cookiecutter.plugin_name}}Shader.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Shader/{{cookiecutter.plugin_name}}Shader.Build.cs -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Test/Private/{{cookiecutter.plugin_name}}Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Test/Private/{{cookiecutter.plugin_name}}Test.cpp -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Test/Public/{{cookiecutter.plugin_name}}Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Test/Public/{{cookiecutter.plugin_name}}Test.h -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Test/{{cookiecutter.plugin_name}}Test.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/Source/{{cookiecutter.plugin_name}}Test/{{cookiecutter.plugin_name}}Test.Build.cs -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/setup.py -------------------------------------------------------------------------------- /uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/{{cookiecutter.plugin_name}}.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/plugin/templates/PluginTemplate/{{cookiecutter.plugin_name}}/{{cookiecutter.plugin_name}}.uplugin -------------------------------------------------------------------------------- /uetools/commands/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/__init__.py -------------------------------------------------------------------------------- /uetools/commands/project/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/cpp.py -------------------------------------------------------------------------------- /uetools/commands/project/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/create.py -------------------------------------------------------------------------------- /uetools/commands/project/dedicated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/dedicated.py -------------------------------------------------------------------------------- /uetools/commands/project/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/docs.py -------------------------------------------------------------------------------- /uetools/commands/project/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/list.py -------------------------------------------------------------------------------- /uetools/commands/project/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/python.py -------------------------------------------------------------------------------- /uetools/commands/project/templates/CPPTemplate/cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/templates/CPPTemplate/cookiecutter.json -------------------------------------------------------------------------------- /uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Shaders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}.Target.cs -------------------------------------------------------------------------------- /uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}/{{cookiecutter.project_name}}.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}/{{cookiecutter.project_name}}.Build.cs -------------------------------------------------------------------------------- /uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}/{{cookiecutter.project_name}}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}/{{cookiecutter.project_name}}.cpp -------------------------------------------------------------------------------- /uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}/{{cookiecutter.project_name}}.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include "CoreMinimal.h" 5 | 6 | -------------------------------------------------------------------------------- /uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}Editor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}Editor.Target.cs -------------------------------------------------------------------------------- /uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}Server.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/templates/CPPTemplate/{{cookiecutter.project_name}}/Source/{{cookiecutter.project_name}}Server.Target.cs -------------------------------------------------------------------------------- /uetools/commands/project/templates/TemplateServer.Target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/templates/TemplateServer.Target -------------------------------------------------------------------------------- /uetools/commands/project/vscode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/project/vscode.py -------------------------------------------------------------------------------- /uetools/commands/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/test/__init__.py -------------------------------------------------------------------------------- /uetools/commands/test/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/test/run.py -------------------------------------------------------------------------------- /uetools/commands/uat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/uat/__init__.py -------------------------------------------------------------------------------- /uetools/commands/uat/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/uat/arguments.py -------------------------------------------------------------------------------- /uetools/commands/uat/cook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/uat/cook.py -------------------------------------------------------------------------------- /uetools/commands/uat/localize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/uat/localize.py -------------------------------------------------------------------------------- /uetools/commands/uat/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/uat/test.py -------------------------------------------------------------------------------- /uetools/commands/uat/uat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/uat/uat.py -------------------------------------------------------------------------------- /uetools/commands/ubt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/ubt/__init__.py -------------------------------------------------------------------------------- /uetools/commands/ubt/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/ubt/build.py -------------------------------------------------------------------------------- /uetools/commands/ubt/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/ubt/configure.py -------------------------------------------------------------------------------- /uetools/commands/ubt/regenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/ubt/regenerate.py -------------------------------------------------------------------------------- /uetools/commands/ubt/ubt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/ubt/ubt.py -------------------------------------------------------------------------------- /uetools/commands/ubt/xmldef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/commands/ubt/xmldef.py -------------------------------------------------------------------------------- /uetools/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/__init__.py -------------------------------------------------------------------------------- /uetools/core/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/cli.py -------------------------------------------------------------------------------- /uetools/core/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/conf.py -------------------------------------------------------------------------------- /uetools/core/data/commands_a305acbc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/commands_a305acbc.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.agent_e6dd4b1a.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.agent_e6dd4b1a.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.editor_0286b195.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.editor_0286b195.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.engine_ef58a31c.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.engine_ef58a31c.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.game_5a85c2f3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.game_5a85c2f3.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.gitlab_01861303.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.gitlab_01861303.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.plugin_f3264f89.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.plugin_f3264f89.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.project_3d9e2c47.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.project_3d9e2c47.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.test_80c091f8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.test_80c091f8.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.uat_2468c13d.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.uat_2468c13d.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.commands.ubt_aecb5a57.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.commands.ubt_aecb5a57.pkl -------------------------------------------------------------------------------- /uetools/core/data/uetools.plugins.gamekit_0294032a.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/data/uetools.plugins.gamekit_0294032a.pkl -------------------------------------------------------------------------------- /uetools/core/ini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/ini.py -------------------------------------------------------------------------------- /uetools/core/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/options.py -------------------------------------------------------------------------------- /uetools/core/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/perf.py -------------------------------------------------------------------------------- /uetools/core/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/run.py -------------------------------------------------------------------------------- /uetools/core/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/testing.py -------------------------------------------------------------------------------- /uetools/core/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/core/util.py -------------------------------------------------------------------------------- /uetools/format/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/format/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/format/base.py -------------------------------------------------------------------------------- /uetools/format/cooking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/format/cooking.py -------------------------------------------------------------------------------- /uetools/format/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/format/tests.py -------------------------------------------------------------------------------- /uetools/jinga2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/__init__.py -------------------------------------------------------------------------------- /uetools/plugins/gamekit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/gamekit/__init__.py -------------------------------------------------------------------------------- /uetools/plugins/gamekit/autovoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/gamekit/autovoice.py -------------------------------------------------------------------------------- /uetools/plugins/gamekit/gitversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/gamekit/gitversion.py -------------------------------------------------------------------------------- /uetools/plugins/gamekit/gkscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/gamekit/gkscript.py -------------------------------------------------------------------------------- /uetools/plugins/gamekit/marketing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/gamekit/marketing.py -------------------------------------------------------------------------------- /uetools/plugins/gamekit/refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/gamekit/refactor.py -------------------------------------------------------------------------------- /uetools/plugins/gamekit/resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/gamekit/resources/LICENSE.txt -------------------------------------------------------------------------------- /uetools/plugins/gamekit/resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/plugins/gamekit/resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /uetools/rl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/rl/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/rl/client.py -------------------------------------------------------------------------------- /uetools/rl/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/rl/env.py -------------------------------------------------------------------------------- /uetools/templates/CPPInterfaceTemplate/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/templates/CPPInterfaceTemplate/Header.cpp -------------------------------------------------------------------------------- /uetools/templates/TemplateEditor.Target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/templates/TemplateEditor.Target -------------------------------------------------------------------------------- /uetools/templates/TemplateGame.Target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/templates/TemplateGame.Target -------------------------------------------------------------------------------- /uetools/templates/TemplatePlugin.Build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/templates/TemplatePlugin.Build -------------------------------------------------------------------------------- /uetools/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uetools/ui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi-lang/uetools/HEAD/uetools/ui/main.py --------------------------------------------------------------------------------