├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── missing-node.md └── workflows │ └── build-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── img │ ├── GitHub-Mark-Light-32px.png │ ├── check.png │ ├── copy-paste-here.svg │ ├── logo.svg │ └── no-screenshot.png ├── index.html ├── js │ └── klee.min.js └── style.css ├── package.json ├── plugins └── .gitkeep ├── src ├── @types │ └── custom.d.ts ├── application.ts ├── camera.ts ├── canvas.ts ├── constants.ts ├── controller.ts ├── controls │ ├── background.ts │ ├── check-box.control.ts │ ├── color-box.control.ts │ ├── container.ts │ ├── control.ts │ ├── error-bar.ts │ ├── header.ts │ ├── horizontal-panel.ts │ ├── horizontal-spacer.control.ts │ ├── icon.ts │ ├── interactable-user-control.ts │ ├── interfaces │ │ ├── drawable.ts │ │ └── interactable.ts │ ├── label.ts │ ├── node-connection.control.ts │ ├── node-fold-button.ts │ ├── node-info-icon.ts │ ├── nodes │ │ ├── comment-node.control.ts │ │ ├── foldable-headed-node.control.ts │ │ ├── headed-node-control.ts │ │ ├── headless-node-control.ts │ │ ├── node.control.ts │ │ ├── reroute-node.control.ts │ │ └── setter-node-control.ts │ ├── partial-node-connection.control.ts │ ├── pin.control.ts │ ├── struct-box.control.ts │ ├── text-box.control.ts │ ├── thickness.ts │ ├── user-control.ts │ ├── utils │ │ ├── color-utils.ts │ │ └── icon-library.ts │ ├── vertical-panel.ts │ └── warning-bar.ts ├── data │ ├── classes │ │ ├── unreal-engine-class.ts │ │ └── unreal-node-class.ts │ ├── color.ts │ ├── custom-property.ts │ ├── macro-graph-reference.ts │ ├── node-class-reference.ts │ ├── node-data-reference.ts │ ├── nodes │ │ ├── call-function.node.ts │ │ ├── comment.node.ts │ │ ├── custom-event.node.ts │ │ ├── dynamic-cast.node.ts │ │ ├── event.node.ts │ │ ├── get-array-item.node.ts │ │ ├── input-axis-key-value.ts │ │ ├── input-axis.node.ts │ │ ├── input-key.node.ts │ │ ├── macro-instance.node.ts │ │ ├── math-function.node.ts │ │ ├── node.ts │ │ ├── select.node.ts │ │ ├── struct.node.ts │ │ ├── switch-enum.node.ts │ │ └── variable.node.ts │ ├── pin │ │ ├── pin-category.ts │ │ ├── pin-container-type.ts │ │ ├── pin-direction.ts │ │ ├── pin-link.ts │ │ ├── pin-property.ts │ │ └── pin-subcategory-object.ts │ └── replication-type.ts ├── klee.ts ├── math │ ├── boundingbox.ts │ └── vector2.ts ├── parser │ ├── blueprint-parser-utils.ts │ ├── blueprint-parser.ts │ ├── custom-property.parser.ts │ ├── enum-names.json │ ├── macro-graph-reference.parser.ts │ ├── node-data-reference.parser.ts │ ├── node-friendly-names.ts │ ├── node-parser-map.ts │ ├── node-parser-plugin.ts │ ├── node-parser-registry.ts │ ├── node-parsers │ │ ├── array-function-node.parser.ts │ │ ├── call-function-node.parser.ts │ │ ├── comment-node.parser.ts │ │ ├── create-object-node.parser.ts │ │ ├── create-widget-node.parser.ts │ │ ├── custom-event-node.parser.ts │ │ ├── dynamic-cast-node.parser.ts │ │ ├── event-node.parser.ts │ │ ├── flow-control-node.parser.ts │ │ ├── function-entry-node.parser.ts │ │ ├── generic-node.parser.ts │ │ ├── get-array-item-node.parser.ts │ │ ├── get-input-axis-key-value-node.parser.ts │ │ ├── input-axis-node.parser.ts │ │ ├── input-key-node.parser.ts │ │ ├── input-touch-node.parser.ts │ │ ├── knot-node.parser.ts │ │ ├── macro-instance-node.parser.ts │ │ ├── make-array-node.parser.ts │ │ ├── math-function-node.parser.ts │ │ ├── select-node.parser.ts │ │ ├── spawn-actor-node.parser.ts │ │ ├── string-function-node.parser.ts │ │ ├── struct-node.parser.ts │ │ ├── switch-enum-node.parser.ts │ │ ├── timeline-node.parser.ts │ │ ├── tunnel-node.parser.ts │ │ └── variable-node.parser.ts │ ├── node.parser.ts │ ├── parsing-node-data.ts │ └── pin-property.parser.ts ├── scene.ts └── utils │ └── text-utils.ts ├── test └── index.html ├── tsconfig.json ├── webpack.common.js ├── webpack.dev.js ├── webpack.docs.js └── webpack.prod.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/missing-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/.github/ISSUE_TEMPLATE/missing-node.md -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/README.md -------------------------------------------------------------------------------- /docs/img/GitHub-Mark-Light-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/docs/img/GitHub-Mark-Light-32px.png -------------------------------------------------------------------------------- /docs/img/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/docs/img/check.png -------------------------------------------------------------------------------- /docs/img/copy-paste-here.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/docs/img/copy-paste-here.svg -------------------------------------------------------------------------------- /docs/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/docs/img/logo.svg -------------------------------------------------------------------------------- /docs/img/no-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/docs/img/no-screenshot.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/klee.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/docs/js/klee.min.js -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/docs/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/package.json -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/@types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/@types/custom.d.ts -------------------------------------------------------------------------------- /src/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/application.ts -------------------------------------------------------------------------------- /src/camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/camera.ts -------------------------------------------------------------------------------- /src/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/canvas.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controller.ts -------------------------------------------------------------------------------- /src/controls/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/background.ts -------------------------------------------------------------------------------- /src/controls/check-box.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/check-box.control.ts -------------------------------------------------------------------------------- /src/controls/color-box.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/color-box.control.ts -------------------------------------------------------------------------------- /src/controls/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/container.ts -------------------------------------------------------------------------------- /src/controls/control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/control.ts -------------------------------------------------------------------------------- /src/controls/error-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/error-bar.ts -------------------------------------------------------------------------------- /src/controls/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/header.ts -------------------------------------------------------------------------------- /src/controls/horizontal-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/horizontal-panel.ts -------------------------------------------------------------------------------- /src/controls/horizontal-spacer.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/horizontal-spacer.control.ts -------------------------------------------------------------------------------- /src/controls/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/icon.ts -------------------------------------------------------------------------------- /src/controls/interactable-user-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/interactable-user-control.ts -------------------------------------------------------------------------------- /src/controls/interfaces/drawable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/interfaces/drawable.ts -------------------------------------------------------------------------------- /src/controls/interfaces/interactable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/interfaces/interactable.ts -------------------------------------------------------------------------------- /src/controls/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/label.ts -------------------------------------------------------------------------------- /src/controls/node-connection.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/node-connection.control.ts -------------------------------------------------------------------------------- /src/controls/node-fold-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/node-fold-button.ts -------------------------------------------------------------------------------- /src/controls/node-info-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/node-info-icon.ts -------------------------------------------------------------------------------- /src/controls/nodes/comment-node.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/nodes/comment-node.control.ts -------------------------------------------------------------------------------- /src/controls/nodes/foldable-headed-node.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/nodes/foldable-headed-node.control.ts -------------------------------------------------------------------------------- /src/controls/nodes/headed-node-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/nodes/headed-node-control.ts -------------------------------------------------------------------------------- /src/controls/nodes/headless-node-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/nodes/headless-node-control.ts -------------------------------------------------------------------------------- /src/controls/nodes/node.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/nodes/node.control.ts -------------------------------------------------------------------------------- /src/controls/nodes/reroute-node.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/nodes/reroute-node.control.ts -------------------------------------------------------------------------------- /src/controls/nodes/setter-node-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/nodes/setter-node-control.ts -------------------------------------------------------------------------------- /src/controls/partial-node-connection.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/partial-node-connection.control.ts -------------------------------------------------------------------------------- /src/controls/pin.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/pin.control.ts -------------------------------------------------------------------------------- /src/controls/struct-box.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/struct-box.control.ts -------------------------------------------------------------------------------- /src/controls/text-box.control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/text-box.control.ts -------------------------------------------------------------------------------- /src/controls/thickness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/thickness.ts -------------------------------------------------------------------------------- /src/controls/user-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/user-control.ts -------------------------------------------------------------------------------- /src/controls/utils/color-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/utils/color-utils.ts -------------------------------------------------------------------------------- /src/controls/utils/icon-library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/utils/icon-library.ts -------------------------------------------------------------------------------- /src/controls/vertical-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/vertical-panel.ts -------------------------------------------------------------------------------- /src/controls/warning-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/controls/warning-bar.ts -------------------------------------------------------------------------------- /src/data/classes/unreal-engine-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/classes/unreal-engine-class.ts -------------------------------------------------------------------------------- /src/data/classes/unreal-node-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/classes/unreal-node-class.ts -------------------------------------------------------------------------------- /src/data/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/color.ts -------------------------------------------------------------------------------- /src/data/custom-property.ts: -------------------------------------------------------------------------------- 1 | 2 | export class CustomProperty {} 3 | -------------------------------------------------------------------------------- /src/data/macro-graph-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/macro-graph-reference.ts -------------------------------------------------------------------------------- /src/data/node-class-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/node-class-reference.ts -------------------------------------------------------------------------------- /src/data/node-data-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/node-data-reference.ts -------------------------------------------------------------------------------- /src/data/nodes/call-function.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/call-function.node.ts -------------------------------------------------------------------------------- /src/data/nodes/comment.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/comment.node.ts -------------------------------------------------------------------------------- /src/data/nodes/custom-event.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/custom-event.node.ts -------------------------------------------------------------------------------- /src/data/nodes/dynamic-cast.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/dynamic-cast.node.ts -------------------------------------------------------------------------------- /src/data/nodes/event.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/event.node.ts -------------------------------------------------------------------------------- /src/data/nodes/get-array-item.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/get-array-item.node.ts -------------------------------------------------------------------------------- /src/data/nodes/input-axis-key-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/input-axis-key-value.ts -------------------------------------------------------------------------------- /src/data/nodes/input-axis.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/input-axis.node.ts -------------------------------------------------------------------------------- /src/data/nodes/input-key.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/input-key.node.ts -------------------------------------------------------------------------------- /src/data/nodes/macro-instance.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/macro-instance.node.ts -------------------------------------------------------------------------------- /src/data/nodes/math-function.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/math-function.node.ts -------------------------------------------------------------------------------- /src/data/nodes/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/node.ts -------------------------------------------------------------------------------- /src/data/nodes/select.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/select.node.ts -------------------------------------------------------------------------------- /src/data/nodes/struct.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/struct.node.ts -------------------------------------------------------------------------------- /src/data/nodes/switch-enum.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/switch-enum.node.ts -------------------------------------------------------------------------------- /src/data/nodes/variable.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/nodes/variable.node.ts -------------------------------------------------------------------------------- /src/data/pin/pin-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/pin/pin-category.ts -------------------------------------------------------------------------------- /src/data/pin/pin-container-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/pin/pin-container-type.ts -------------------------------------------------------------------------------- /src/data/pin/pin-direction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/pin/pin-direction.ts -------------------------------------------------------------------------------- /src/data/pin/pin-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/pin/pin-link.ts -------------------------------------------------------------------------------- /src/data/pin/pin-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/pin/pin-property.ts -------------------------------------------------------------------------------- /src/data/pin/pin-subcategory-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/pin/pin-subcategory-object.ts -------------------------------------------------------------------------------- /src/data/replication-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/data/replication-type.ts -------------------------------------------------------------------------------- /src/klee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/klee.ts -------------------------------------------------------------------------------- /src/math/boundingbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/math/boundingbox.ts -------------------------------------------------------------------------------- /src/math/vector2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/math/vector2.ts -------------------------------------------------------------------------------- /src/parser/blueprint-parser-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/blueprint-parser-utils.ts -------------------------------------------------------------------------------- /src/parser/blueprint-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/blueprint-parser.ts -------------------------------------------------------------------------------- /src/parser/custom-property.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/custom-property.parser.ts -------------------------------------------------------------------------------- /src/parser/enum-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/enum-names.json -------------------------------------------------------------------------------- /src/parser/macro-graph-reference.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/macro-graph-reference.parser.ts -------------------------------------------------------------------------------- /src/parser/node-data-reference.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-data-reference.parser.ts -------------------------------------------------------------------------------- /src/parser/node-friendly-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-friendly-names.ts -------------------------------------------------------------------------------- /src/parser/node-parser-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parser-map.ts -------------------------------------------------------------------------------- /src/parser/node-parser-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parser-plugin.ts -------------------------------------------------------------------------------- /src/parser/node-parser-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parser-registry.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/array-function-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/array-function-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/call-function-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/call-function-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/comment-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/comment-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/create-object-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/create-object-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/create-widget-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/create-widget-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/custom-event-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/custom-event-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/dynamic-cast-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/dynamic-cast-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/event-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/event-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/flow-control-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/flow-control-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/function-entry-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/function-entry-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/generic-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/generic-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/get-array-item-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/get-array-item-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/get-input-axis-key-value-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/get-input-axis-key-value-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/input-axis-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/input-axis-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/input-key-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/input-key-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/input-touch-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/input-touch-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/knot-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/knot-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/macro-instance-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/macro-instance-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/make-array-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/make-array-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/math-function-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/math-function-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/select-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/select-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/spawn-actor-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/spawn-actor-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/string-function-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/string-function-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/struct-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/struct-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/switch-enum-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/switch-enum-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/timeline-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/timeline-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/tunnel-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/tunnel-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node-parsers/variable-node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node-parsers/variable-node.parser.ts -------------------------------------------------------------------------------- /src/parser/node.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/node.parser.ts -------------------------------------------------------------------------------- /src/parser/parsing-node-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/parsing-node-data.ts -------------------------------------------------------------------------------- /src/parser/pin-property.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/parser/pin-property.parser.ts -------------------------------------------------------------------------------- /src/scene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/scene.ts -------------------------------------------------------------------------------- /src/utils/text-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/src/utils/text-utils.ts -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/test/index.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/webpack.docs.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joined-Forces/klee/HEAD/webpack.prod.js --------------------------------------------------------------------------------