├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json └── thing-editor-snippets.code-snippets ├── LICENSE ├── README.md ├── package.json ├── run-ubuntu.sh ├── run-win10.bat ├── thing-editor.code-workspace.template ├── thing-editor ├── debugger-awaiter.html ├── demo │ ├── example-lib │ │ ├── assets │ │ │ ├── flag.png │ │ │ └── lib1 │ │ │ │ └── l18n │ │ │ │ ├── en.l.json │ │ │ │ └── ru.l.json │ │ └── thing-lib.json │ ├── example-project │ │ ├── assets │ │ │ ├── bunny.png │ │ │ ├── l18n │ │ │ │ ├── en.l.json │ │ │ │ └── ru.l.json │ │ │ ├── main.s.json │ │ │ ├── src │ │ │ │ ├── custom │ │ │ │ │ └── bunny.c.ts │ │ │ │ └── index.ts │ │ │ └── symbols │ │ │ │ ├── fuel0000.png │ │ │ │ ├── fuel0001.png │ │ │ │ ├── fuel0002.png │ │ │ │ ├── fuel0003.png │ │ │ │ ├── fuel0004.png │ │ │ │ ├── fuel0005.png │ │ │ │ ├── fuel0006.png │ │ │ │ ├── fuel0007.png │ │ │ │ ├── fuel0008.png │ │ │ │ ├── fuel0009.png │ │ │ │ ├── fuel0010.png │ │ │ │ ├── fuel0011.png │ │ │ │ ├── fuel0012.png │ │ │ │ ├── fuel0013.png │ │ │ │ └── fuel0014.png │ │ └── thing-project.json │ └── install.js ├── electron-main │ ├── build-config.js │ ├── build-sounds.js │ ├── build.js │ ├── editor-server-utils.js │ ├── enum-projects.js │ ├── index.js │ ├── launch-if-stopped.js │ ├── package.json │ ├── pixi-typings-patch.js │ ├── preload.js │ ├── resolver │ │ ├── package.json │ │ └── resolver.js │ ├── server-fs.js │ ├── static-server.js │ ├── thing-editor-window.js │ ├── vite-plugin-ifdef │ │ ├── if-def-loader.js │ │ └── package.json │ └── watch.js ├── img │ ├── EMPTY.png │ ├── WHITE.jpg │ ├── accept.png │ ├── asset-class.png │ ├── asset-image.png │ ├── asset-prefab.png │ ├── asset-resource.png │ ├── asset-scene.png │ ├── asset-sound.png │ ├── bring-down.png │ ├── bring-up.png │ ├── broken-image.png │ ├── caret-open.png │ ├── caret.png │ ├── check-box-check.png │ ├── check-box.png │ ├── child-last.jpg │ ├── child.jpg │ ├── clone.png │ ├── copy.png │ ├── cut.png │ ├── delete.png │ ├── error-icon.png │ ├── error.png │ ├── exit-isolation.png │ ├── export-selected.png │ ├── eyedropper.png │ ├── favicon.ico │ ├── info.png │ ├── isolate-selected.png │ ├── lib0.png │ ├── lib1.png │ ├── lib2.png │ ├── lib3.png │ ├── lib4.png │ ├── lib5.png │ ├── lib6.png │ ├── move-down.png │ ├── move-up.png │ ├── open.png │ ├── orientation-toggle.png │ ├── paste-wrap.png │ ├── paste.png │ ├── pause.png │ ├── pivot │ │ ├── left-top.png │ │ └── middle.png │ ├── play.png │ ├── recompile.png │ ├── reject.png │ ├── sound-mute.png │ ├── stop.png │ ├── timeline.jpg │ ├── timeline │ │ ├── default.png │ │ ├── disable.png │ │ ├── enable.png │ │ ├── remove.png │ │ ├── sound.png │ │ ├── speed-set.png │ │ └── stop.png │ ├── tree │ │ ├── achive.png │ │ ├── bitmap-text.png │ │ ├── button.png │ │ ├── click-outside.png │ │ ├── container.png │ │ ├── desc.png │ │ ├── dsprite.png │ │ ├── fill.png │ │ ├── fly-text.png │ │ ├── game.png │ │ ├── html.png │ │ ├── is-mobile.png │ │ ├── label.png │ │ ├── mask.png │ │ ├── masked.png │ │ ├── mixed-type.png │ │ ├── movie-custom.png │ │ ├── movie.png │ │ ├── multiline-text.png │ │ ├── music.png │ │ ├── number-input.png │ │ ├── orientation-trigger.png │ │ ├── particle-container.png │ │ ├── perspective.png │ │ ├── progress.png │ │ ├── promise.png │ │ ├── resizer.png │ │ ├── scene.png │ │ ├── scissor.png │ │ ├── scroll.png │ │ ├── select.png │ │ ├── shape.png │ │ ├── slice9.png │ │ ├── spawner-ring.png │ │ ├── spawner.png │ │ ├── spine.png │ │ ├── sprite.png │ │ ├── static-trigger.png │ │ ├── text-input.png │ │ ├── text.png │ │ ├── tileGrid.png │ │ ├── timer.png │ │ ├── trigger.png │ │ └── unknown-class.png │ ├── unwrap.png │ ├── warn-icon.png │ └── wrong-texture.png ├── index.html └── src │ ├── editor │ ├── classes-loader.ts │ ├── editor-env.ts │ ├── editor.ts │ ├── empty-script.ts │ ├── fs.ts │ ├── preact-fabrics.ts │ ├── project-desc.ts │ ├── props-editor │ │ └── editable.ts │ ├── style-spine-sequence.css │ ├── style-timeline.css │ ├── style.css │ ├── templates │ │ ├── basic-game-object.tst │ │ ├── basic-scene.tst │ │ ├── full-game-object.tst │ │ └── full-scene.tst │ ├── ui │ │ ├── assets-view │ │ │ ├── asset-preview.ts │ │ │ ├── asset-view-class.ts │ │ │ ├── asset-view-image.ts │ │ │ ├── asset-view-scene.ts │ │ │ ├── asset-view-sound.ts │ │ │ ├── assets-view-font.ts │ │ │ ├── assets-view-l10n.ts │ │ │ ├── assets-view-prefab.ts │ │ │ ├── assets-view-resource.ts │ │ │ └── assets-view.ts │ │ ├── choose-list.ts │ │ ├── choose-project.ts │ │ ├── component-debounced.ts │ │ ├── context-menu.ts │ │ ├── editor-button.ts │ │ ├── editor-overlay.ts │ │ ├── editor-window.ts │ │ ├── filter-list.ts │ │ ├── group.ts │ │ ├── help.ts │ │ ├── isolation.ts │ │ ├── labels-logger.ts │ │ ├── language-view.ts │ │ ├── local-store-view.ts │ │ ├── main-menu.ts │ │ ├── modal.ts │ │ ├── modal │ │ │ └── prompt.ts │ │ ├── props-editor │ │ │ ├── get-property-definition-url.ts │ │ │ ├── props-editor.ts │ │ │ ├── props-editors │ │ │ │ ├── array-editable-property.ts │ │ │ │ ├── boolean-editor.ts │ │ │ │ ├── btn-editor.ts │ │ │ │ ├── call-back-editor.ts │ │ │ │ ├── color-editor.ts │ │ │ │ ├── color-slider.ts │ │ │ │ ├── data-path-editor.ts │ │ │ │ ├── image-editor.ts │ │ │ │ ├── l10n-editor.ts │ │ │ │ ├── number-editor.ts │ │ │ │ ├── pow-damp-preset-selector.ts │ │ │ │ ├── prefab-property-editor.ts │ │ │ │ ├── rect-editor.ts │ │ │ │ ├── refs-editor.ts │ │ │ │ ├── resource-editor.ts │ │ │ │ ├── select-editor.ts │ │ │ │ ├── sound-editor.ts │ │ │ │ ├── spine-sequences │ │ │ │ │ ├── spine-sequences-editor.ts │ │ │ │ │ └── spine-sequences.ts │ │ │ │ ├── string-editor.ts │ │ │ │ └── timeline │ │ │ │ │ ├── get-keyframe-types-for-field.ts │ │ │ │ │ ├── keyframe-property-editor.ts │ │ │ │ │ ├── objects-timeline.ts │ │ │ │ │ ├── time-marker.ts │ │ │ │ │ ├── timeline-editor.ts │ │ │ │ │ ├── timeline-field-controls.ts │ │ │ │ │ ├── timeline-field.ts │ │ │ │ │ ├── timeline-keyframe-view.ts │ │ │ │ │ ├── timeline-label-view.ts │ │ │ │ │ ├── timeline-line-view.ts │ │ │ │ │ ├── timeline-loop-point.ts │ │ │ │ │ ├── timeline-select-frame.ts │ │ │ │ │ ├── timeline-selectable.ts │ │ │ │ │ └── timeline.ts │ │ │ └── props-field-wrapper.ts │ │ ├── sound-profiler.ts │ │ ├── status-bar.ts │ │ ├── status-clearing-condition.ts │ │ ├── status.ts │ │ ├── tip.ts │ │ ├── tree-view │ │ │ ├── tree-node-context-menu.ts │ │ │ ├── tree-node.ts │ │ │ └── tree-view.ts │ │ ├── ui.ts │ │ ├── viewport.ts │ │ └── window-menu.ts │ ├── utils │ │ ├── build.ts │ │ ├── button-only-selectable-property.ts │ │ ├── copy-text-by-click.ts │ │ ├── data-access-debugger.ts │ │ ├── data-path-fixer.ts │ │ ├── debounced-call.ts │ │ ├── editor-events.ts │ │ ├── editor-utils.ts │ │ ├── enum-assets-recursive.ts │ │ ├── export-as-png.ts │ │ ├── find-file-in-assets.ts │ │ ├── flags.ts │ │ ├── generate-editor-typings.ts │ │ ├── get-hashed-asset-name.ts │ │ ├── get-parent-with-hidden-children.ts │ │ ├── get-prefab-defaults.ts │ │ ├── goto-label-consumer.ts │ │ ├── highlight-object.ts │ │ ├── history.ts │ │ ├── hotkey.ts │ │ ├── increase-number-in-name.ts │ │ ├── is-event-focus-on-input-element.ts │ │ ├── lib-info.ts │ │ ├── load-safe-instance-by-class-name.ts │ │ ├── merge-project-desc.ts │ │ ├── movie-clip-keyframe-select-path.ts │ │ ├── new-component-wizard.ts │ │ ├── number-checker.ts │ │ ├── old-references-detect.ts │ │ ├── prefab-editor.ts │ │ ├── prefab-selector.ts │ │ ├── protect-access-to-node.ts │ │ ├── refresh-prefabs.ts │ │ ├── round-up-point.ts │ │ ├── scene-all-validator.ts │ │ ├── scene-utils.ts │ │ ├── scroll-in-view.ts │ │ ├── search-by-regexp-or-text.ts │ │ ├── selection.ts │ │ ├── shake-element.ts │ │ ├── stack-utils.ts │ │ ├── stop-propagation.ts │ │ ├── unknown-class.ts │ │ └── validate-serialized-data.ts │ └── warnings-filter.ts │ └── engine │ ├── HowlSound.ts │ ├── basic-preact-fabrics.ts │ ├── debug │ └── assert.ts │ ├── game.ts │ ├── lib.ts │ ├── lib │ ├── assets │ │ ├── ___default_content │ │ │ └── progressbar.p.json │ │ ├── ___system │ │ │ ├── backdrop.p.json │ │ │ ├── delay.c.ts │ │ │ ├── gizmo.p.json │ │ │ ├── guide.p.json │ │ │ ├── rect-guide.p.json │ │ │ ├── ruler.p.json │ │ │ ├── scene-linked-promise.c.ts │ │ │ └── unknown-prefab.p.json │ │ ├── click.wav │ │ ├── fader │ │ │ └── default.p.json │ │ ├── final-fader.p.json │ │ ├── index.html │ │ ├── over.wav │ │ ├── particle-green.p.json │ │ ├── preloader.s.json │ │ ├── src │ │ │ ├── ___system │ │ │ │ ├── ___rect-guide.c.ts │ │ │ │ ├── backdrop.c.ts │ │ │ │ ├── gizmo-arrow.c.ts │ │ │ │ ├── gizmo.c.ts │ │ │ │ ├── guide.c.ts │ │ │ │ └── ruler.c.ts │ │ │ ├── basic │ │ │ │ ├── b-g-music.c.ts │ │ │ │ ├── b-g-music │ │ │ │ │ └── music-fragment.ts │ │ │ │ ├── back-drop.c.ts │ │ │ │ ├── bitmap-text.c.ts │ │ │ │ ├── button.c.ts │ │ │ │ ├── click-outside-trigger.c.ts │ │ │ │ ├── container.c.ts │ │ │ │ ├── d-sprite.c.ts │ │ │ │ ├── fill.c.ts │ │ │ │ ├── fly-text.c.ts │ │ │ │ ├── movie-clip.c.ts │ │ │ │ ├── movie-clip │ │ │ │ │ └── field-player.ts │ │ │ │ ├── multiline-text.c.ts │ │ │ │ ├── nine-slice-plane.c.ts │ │ │ │ ├── particle-container.c.ts │ │ │ │ ├── scene.c.ts │ │ │ │ ├── spawner-ring.c.ts │ │ │ │ ├── spawner.c.ts │ │ │ │ ├── sprite.c.ts │ │ │ │ ├── static-trigger.c.ts │ │ │ │ └── text.c.ts │ │ │ ├── common │ │ │ │ └── ui │ │ │ │ │ ├── orientation-parent-resizer.c.ts │ │ │ │ │ └── parent-resizer.c.ts │ │ │ ├── custom │ │ │ │ └── particle-short.c.ts │ │ │ ├── extended │ │ │ │ ├── html-overlay.c.ts │ │ │ │ ├── is-mobile-trigger.c.ts │ │ │ │ ├── label.c.ts │ │ │ │ ├── layered-container.c.ts │ │ │ │ ├── layered-contaiter-portal.c.ts │ │ │ │ ├── mask.c.ts │ │ │ │ ├── progress-bar.c.ts │ │ │ │ ├── resizer.c.ts │ │ │ │ ├── scroll-layer.c.ts │ │ │ │ ├── shape.c.ts │ │ │ │ ├── spine.c.ts │ │ │ │ ├── trigger.c.ts │ │ │ │ └── unpausable-container.c.ts │ │ │ ├── mobile │ │ │ │ └── orientation-trigger.c.ts │ │ │ └── utils │ │ │ │ ├── format-money.ts │ │ │ │ └── wait-for-condition.ts │ │ └── ui │ │ │ └── sure-question.p.json │ ├── schema-thing-project.json │ └── thing-lib.json │ └── utils │ ├── call-by-path.ts │ ├── deep-freeze.ts │ ├── full-screen.ts │ ├── game-interaction.ts │ ├── get-value-by-path.ts │ ├── html-error.html │ ├── indexed-db-utils.ts │ ├── keys.ts │ ├── l.ts │ ├── load-dynamic-textures.ts │ ├── pool.ts │ ├── re-apply-textures.ts │ ├── remove-holder.ts │ ├── scene-linked-request.ts │ ├── settings.ts │ ├── sound-debug-panel.css │ ├── sound.ts │ ├── sure-question.ts │ └── utils.ts ├── tsconfig.json.template └── vite.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/thing-editor-snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/.vscode/thing-editor-snippets.code-snippets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/package.json -------------------------------------------------------------------------------- /run-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/run-ubuntu.sh -------------------------------------------------------------------------------- /run-win10.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/run-win10.bat -------------------------------------------------------------------------------- /thing-editor.code-workspace.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor.code-workspace.template -------------------------------------------------------------------------------- /thing-editor/debugger-awaiter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/debugger-awaiter.html -------------------------------------------------------------------------------- /thing-editor/demo/example-lib/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-lib/assets/flag.png -------------------------------------------------------------------------------- /thing-editor/demo/example-lib/assets/lib1/l18n/en.l.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-lib/assets/lib1/l18n/en.l.json -------------------------------------------------------------------------------- /thing-editor/demo/example-lib/assets/lib1/l18n/ru.l.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-lib/assets/lib1/l18n/ru.l.json -------------------------------------------------------------------------------- /thing-editor/demo/example-lib/thing-lib.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/bunny.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/l18n/en.l.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/l18n/en.l.json -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/l18n/ru.l.json: -------------------------------------------------------------------------------- 1 | { 2 | "example_title": "THING-EDITOR\nтестовый проект" 3 | } -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/main.s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/main.s.json -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/src/custom/bunny.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/src/custom/bunny.c.ts -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/src/index.ts -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0000.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0001.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0002.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0003.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0004.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0005.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0006.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0007.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0008.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0009.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0010.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0011.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0012.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0013.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/assets/symbols/fuel0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/assets/symbols/fuel0014.png -------------------------------------------------------------------------------- /thing-editor/demo/example-project/thing-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/example-project/thing-project.json -------------------------------------------------------------------------------- /thing-editor/demo/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/demo/install.js -------------------------------------------------------------------------------- /thing-editor/electron-main/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/build-config.js -------------------------------------------------------------------------------- /thing-editor/electron-main/build-sounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/build-sounds.js -------------------------------------------------------------------------------- /thing-editor/electron-main/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/build.js -------------------------------------------------------------------------------- /thing-editor/electron-main/editor-server-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/editor-server-utils.js -------------------------------------------------------------------------------- /thing-editor/electron-main/enum-projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/enum-projects.js -------------------------------------------------------------------------------- /thing-editor/electron-main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/index.js -------------------------------------------------------------------------------- /thing-editor/electron-main/launch-if-stopped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/launch-if-stopped.js -------------------------------------------------------------------------------- /thing-editor/electron-main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/package.json -------------------------------------------------------------------------------- /thing-editor/electron-main/pixi-typings-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/pixi-typings-patch.js -------------------------------------------------------------------------------- /thing-editor/electron-main/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/preload.js -------------------------------------------------------------------------------- /thing-editor/electron-main/resolver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/resolver/package.json -------------------------------------------------------------------------------- /thing-editor/electron-main/resolver/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/resolver/resolver.js -------------------------------------------------------------------------------- /thing-editor/electron-main/server-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/server-fs.js -------------------------------------------------------------------------------- /thing-editor/electron-main/static-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/static-server.js -------------------------------------------------------------------------------- /thing-editor/electron-main/thing-editor-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/thing-editor-window.js -------------------------------------------------------------------------------- /thing-editor/electron-main/vite-plugin-ifdef/if-def-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/vite-plugin-ifdef/if-def-loader.js -------------------------------------------------------------------------------- /thing-editor/electron-main/vite-plugin-ifdef/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/vite-plugin-ifdef/package.json -------------------------------------------------------------------------------- /thing-editor/electron-main/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/electron-main/watch.js -------------------------------------------------------------------------------- /thing-editor/img/EMPTY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/EMPTY.png -------------------------------------------------------------------------------- /thing-editor/img/WHITE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/WHITE.jpg -------------------------------------------------------------------------------- /thing-editor/img/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/accept.png -------------------------------------------------------------------------------- /thing-editor/img/asset-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/asset-class.png -------------------------------------------------------------------------------- /thing-editor/img/asset-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/asset-image.png -------------------------------------------------------------------------------- /thing-editor/img/asset-prefab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/asset-prefab.png -------------------------------------------------------------------------------- /thing-editor/img/asset-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/asset-resource.png -------------------------------------------------------------------------------- /thing-editor/img/asset-scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/asset-scene.png -------------------------------------------------------------------------------- /thing-editor/img/asset-sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/asset-sound.png -------------------------------------------------------------------------------- /thing-editor/img/bring-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/bring-down.png -------------------------------------------------------------------------------- /thing-editor/img/bring-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/bring-up.png -------------------------------------------------------------------------------- /thing-editor/img/broken-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/broken-image.png -------------------------------------------------------------------------------- /thing-editor/img/caret-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/caret-open.png -------------------------------------------------------------------------------- /thing-editor/img/caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/caret.png -------------------------------------------------------------------------------- /thing-editor/img/check-box-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/check-box-check.png -------------------------------------------------------------------------------- /thing-editor/img/check-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/check-box.png -------------------------------------------------------------------------------- /thing-editor/img/child-last.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/child-last.jpg -------------------------------------------------------------------------------- /thing-editor/img/child.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/child.jpg -------------------------------------------------------------------------------- /thing-editor/img/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/clone.png -------------------------------------------------------------------------------- /thing-editor/img/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/copy.png -------------------------------------------------------------------------------- /thing-editor/img/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/cut.png -------------------------------------------------------------------------------- /thing-editor/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/delete.png -------------------------------------------------------------------------------- /thing-editor/img/error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/error-icon.png -------------------------------------------------------------------------------- /thing-editor/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/error.png -------------------------------------------------------------------------------- /thing-editor/img/exit-isolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/exit-isolation.png -------------------------------------------------------------------------------- /thing-editor/img/export-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/export-selected.png -------------------------------------------------------------------------------- /thing-editor/img/eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/eyedropper.png -------------------------------------------------------------------------------- /thing-editor/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/favicon.ico -------------------------------------------------------------------------------- /thing-editor/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/info.png -------------------------------------------------------------------------------- /thing-editor/img/isolate-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/isolate-selected.png -------------------------------------------------------------------------------- /thing-editor/img/lib0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/lib0.png -------------------------------------------------------------------------------- /thing-editor/img/lib1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/lib1.png -------------------------------------------------------------------------------- /thing-editor/img/lib2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/lib2.png -------------------------------------------------------------------------------- /thing-editor/img/lib3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/lib3.png -------------------------------------------------------------------------------- /thing-editor/img/lib4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/lib4.png -------------------------------------------------------------------------------- /thing-editor/img/lib5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/lib5.png -------------------------------------------------------------------------------- /thing-editor/img/lib6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/lib6.png -------------------------------------------------------------------------------- /thing-editor/img/move-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/move-down.png -------------------------------------------------------------------------------- /thing-editor/img/move-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/move-up.png -------------------------------------------------------------------------------- /thing-editor/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/open.png -------------------------------------------------------------------------------- /thing-editor/img/orientation-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/orientation-toggle.png -------------------------------------------------------------------------------- /thing-editor/img/paste-wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/paste-wrap.png -------------------------------------------------------------------------------- /thing-editor/img/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/paste.png -------------------------------------------------------------------------------- /thing-editor/img/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/pause.png -------------------------------------------------------------------------------- /thing-editor/img/pivot/left-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/pivot/left-top.png -------------------------------------------------------------------------------- /thing-editor/img/pivot/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/pivot/middle.png -------------------------------------------------------------------------------- /thing-editor/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/play.png -------------------------------------------------------------------------------- /thing-editor/img/recompile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/recompile.png -------------------------------------------------------------------------------- /thing-editor/img/reject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/reject.png -------------------------------------------------------------------------------- /thing-editor/img/sound-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/sound-mute.png -------------------------------------------------------------------------------- /thing-editor/img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/stop.png -------------------------------------------------------------------------------- /thing-editor/img/timeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/timeline.jpg -------------------------------------------------------------------------------- /thing-editor/img/timeline/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/timeline/default.png -------------------------------------------------------------------------------- /thing-editor/img/timeline/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/timeline/disable.png -------------------------------------------------------------------------------- /thing-editor/img/timeline/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/timeline/enable.png -------------------------------------------------------------------------------- /thing-editor/img/timeline/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/timeline/remove.png -------------------------------------------------------------------------------- /thing-editor/img/timeline/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/timeline/sound.png -------------------------------------------------------------------------------- /thing-editor/img/timeline/speed-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/timeline/speed-set.png -------------------------------------------------------------------------------- /thing-editor/img/timeline/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/timeline/stop.png -------------------------------------------------------------------------------- /thing-editor/img/tree/achive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/achive.png -------------------------------------------------------------------------------- /thing-editor/img/tree/bitmap-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/bitmap-text.png -------------------------------------------------------------------------------- /thing-editor/img/tree/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/button.png -------------------------------------------------------------------------------- /thing-editor/img/tree/click-outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/click-outside.png -------------------------------------------------------------------------------- /thing-editor/img/tree/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/container.png -------------------------------------------------------------------------------- /thing-editor/img/tree/desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/desc.png -------------------------------------------------------------------------------- /thing-editor/img/tree/dsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/dsprite.png -------------------------------------------------------------------------------- /thing-editor/img/tree/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/fill.png -------------------------------------------------------------------------------- /thing-editor/img/tree/fly-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/fly-text.png -------------------------------------------------------------------------------- /thing-editor/img/tree/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/game.png -------------------------------------------------------------------------------- /thing-editor/img/tree/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/html.png -------------------------------------------------------------------------------- /thing-editor/img/tree/is-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/is-mobile.png -------------------------------------------------------------------------------- /thing-editor/img/tree/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/label.png -------------------------------------------------------------------------------- /thing-editor/img/tree/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/mask.png -------------------------------------------------------------------------------- /thing-editor/img/tree/masked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/masked.png -------------------------------------------------------------------------------- /thing-editor/img/tree/mixed-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/mixed-type.png -------------------------------------------------------------------------------- /thing-editor/img/tree/movie-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/movie-custom.png -------------------------------------------------------------------------------- /thing-editor/img/tree/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/movie.png -------------------------------------------------------------------------------- /thing-editor/img/tree/multiline-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/multiline-text.png -------------------------------------------------------------------------------- /thing-editor/img/tree/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/music.png -------------------------------------------------------------------------------- /thing-editor/img/tree/number-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/number-input.png -------------------------------------------------------------------------------- /thing-editor/img/tree/orientation-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/orientation-trigger.png -------------------------------------------------------------------------------- /thing-editor/img/tree/particle-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/particle-container.png -------------------------------------------------------------------------------- /thing-editor/img/tree/perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/perspective.png -------------------------------------------------------------------------------- /thing-editor/img/tree/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/progress.png -------------------------------------------------------------------------------- /thing-editor/img/tree/promise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/promise.png -------------------------------------------------------------------------------- /thing-editor/img/tree/resizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/resizer.png -------------------------------------------------------------------------------- /thing-editor/img/tree/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/scene.png -------------------------------------------------------------------------------- /thing-editor/img/tree/scissor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/scissor.png -------------------------------------------------------------------------------- /thing-editor/img/tree/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/scroll.png -------------------------------------------------------------------------------- /thing-editor/img/tree/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/select.png -------------------------------------------------------------------------------- /thing-editor/img/tree/shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/shape.png -------------------------------------------------------------------------------- /thing-editor/img/tree/slice9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/slice9.png -------------------------------------------------------------------------------- /thing-editor/img/tree/spawner-ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/spawner-ring.png -------------------------------------------------------------------------------- /thing-editor/img/tree/spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/spawner.png -------------------------------------------------------------------------------- /thing-editor/img/tree/spine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/spine.png -------------------------------------------------------------------------------- /thing-editor/img/tree/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/sprite.png -------------------------------------------------------------------------------- /thing-editor/img/tree/static-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/static-trigger.png -------------------------------------------------------------------------------- /thing-editor/img/tree/text-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/text-input.png -------------------------------------------------------------------------------- /thing-editor/img/tree/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/text.png -------------------------------------------------------------------------------- /thing-editor/img/tree/tileGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/tileGrid.png -------------------------------------------------------------------------------- /thing-editor/img/tree/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/timer.png -------------------------------------------------------------------------------- /thing-editor/img/tree/trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/trigger.png -------------------------------------------------------------------------------- /thing-editor/img/tree/unknown-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/tree/unknown-class.png -------------------------------------------------------------------------------- /thing-editor/img/unwrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/unwrap.png -------------------------------------------------------------------------------- /thing-editor/img/warn-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/warn-icon.png -------------------------------------------------------------------------------- /thing-editor/img/wrong-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/img/wrong-texture.png -------------------------------------------------------------------------------- /thing-editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/index.html -------------------------------------------------------------------------------- /thing-editor/src/editor/classes-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/classes-loader.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/editor-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/editor-env.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/empty-script.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thing-editor/src/editor/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/fs.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/preact-fabrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/preact-fabrics.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/project-desc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/project-desc.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/props-editor/editable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/props-editor/editable.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/style-spine-sequence.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/style-spine-sequence.css -------------------------------------------------------------------------------- /thing-editor/src/editor/style-timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/style-timeline.css -------------------------------------------------------------------------------- /thing-editor/src/editor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/style.css -------------------------------------------------------------------------------- /thing-editor/src/editor/templates/basic-game-object.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/templates/basic-game-object.tst -------------------------------------------------------------------------------- /thing-editor/src/editor/templates/basic-scene.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/templates/basic-scene.tst -------------------------------------------------------------------------------- /thing-editor/src/editor/templates/full-game-object.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/templates/full-game-object.tst -------------------------------------------------------------------------------- /thing-editor/src/editor/templates/full-scene.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/templates/full-scene.tst -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/asset-preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/asset-preview.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/asset-view-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/asset-view-class.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/asset-view-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/asset-view-image.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/asset-view-scene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/asset-view-scene.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/asset-view-sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/asset-view-sound.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/assets-view-font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/assets-view-font.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/assets-view-l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/assets-view-l10n.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/assets-view-prefab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/assets-view-prefab.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/assets-view-resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/assets-view-resource.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/assets-view/assets-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/assets-view/assets-view.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/choose-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/choose-list.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/choose-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/choose-project.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/component-debounced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/component-debounced.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/context-menu.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/editor-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/editor-button.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/editor-overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/editor-overlay.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/editor-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/editor-window.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/filter-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/filter-list.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/group.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/help.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/isolation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/isolation.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/labels-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/labels-logger.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/language-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/language-view.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/local-store-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/local-store-view.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/main-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/main-menu.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/modal.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/modal/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/modal/prompt.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/get-property-definition-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/get-property-definition-url.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/array-editable-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/array-editable-property.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/boolean-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/boolean-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/btn-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/btn-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/call-back-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/call-back-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/color-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/color-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/color-slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/color-slider.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/data-path-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/data-path-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/image-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/image-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/l10n-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/l10n-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/number-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/number-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/pow-damp-preset-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/pow-damp-preset-selector.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/prefab-property-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/prefab-property-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/rect-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/rect-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/refs-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/refs-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/resource-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/resource-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/select-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/select-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/sound-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/sound-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/spine-sequences/spine-sequences-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/spine-sequences/spine-sequences-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/spine-sequences/spine-sequences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/spine-sequences/spine-sequences.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/string-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/string-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/get-keyframe-types-for-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/get-keyframe-types-for-field.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/keyframe-property-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/keyframe-property-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/objects-timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/objects-timeline.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/time-marker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/time-marker.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-field-controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-field-controls.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-field.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-keyframe-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-keyframe-view.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-label-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-label-view.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-line-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-line-view.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-loop-point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-loop-point.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-select-frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-select-frame.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-selectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline-selectable.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-editors/timeline/timeline.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/props-editor/props-field-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/props-editor/props-field-wrapper.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/sound-profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/sound-profiler.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/status-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/status-bar.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/status-clearing-condition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/status-clearing-condition.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/status.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/tip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/tip.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/tree-view/tree-node-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/tree-view/tree-node-context-menu.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/tree-view/tree-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/tree-view/tree-node.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/tree-view/tree-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/tree-view/tree-view.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/ui.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/viewport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/viewport.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/ui/window-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/ui/window-menu.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/build.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/button-only-selectable-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/button-only-selectable-property.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/copy-text-by-click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/copy-text-by-click.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/data-access-debugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/data-access-debugger.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/data-path-fixer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/data-path-fixer.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/debounced-call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/debounced-call.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/editor-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/editor-events.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/editor-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/editor-utils.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/enum-assets-recursive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/enum-assets-recursive.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/export-as-png.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/export-as-png.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/find-file-in-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/find-file-in-assets.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/flags.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/generate-editor-typings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/generate-editor-typings.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/get-hashed-asset-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/get-hashed-asset-name.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/get-parent-with-hidden-children.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/get-parent-with-hidden-children.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/get-prefab-defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/get-prefab-defaults.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/goto-label-consumer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/goto-label-consumer.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/highlight-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/highlight-object.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/history.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/hotkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/hotkey.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/increase-number-in-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/increase-number-in-name.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/is-event-focus-on-input-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/is-event-focus-on-input-element.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/lib-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/lib-info.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/load-safe-instance-by-class-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/load-safe-instance-by-class-name.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/merge-project-desc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/merge-project-desc.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/movie-clip-keyframe-select-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/movie-clip-keyframe-select-path.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/new-component-wizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/new-component-wizard.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/number-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/number-checker.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/old-references-detect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/old-references-detect.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/prefab-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/prefab-editor.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/prefab-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/prefab-selector.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/protect-access-to-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/protect-access-to-node.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/refresh-prefabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/refresh-prefabs.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/round-up-point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/round-up-point.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/scene-all-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/scene-all-validator.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/scene-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/scene-utils.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/scroll-in-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/scroll-in-view.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/search-by-regexp-or-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/search-by-regexp-or-text.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/selection.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/shake-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/shake-element.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/stack-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/stack-utils.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/stop-propagation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/stop-propagation.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/unknown-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/unknown-class.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/utils/validate-serialized-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/utils/validate-serialized-data.ts -------------------------------------------------------------------------------- /thing-editor/src/editor/warnings-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/editor/warnings-filter.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/HowlSound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/HowlSound.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/basic-preact-fabrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/basic-preact-fabrics.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/debug/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/debug/assert.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/game.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___default_content/progressbar.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___default_content/progressbar.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___system/backdrop.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___system/backdrop.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___system/delay.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___system/delay.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___system/gizmo.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___system/gizmo.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___system/guide.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___system/guide.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___system/rect-guide.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___system/rect-guide.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___system/ruler.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___system/ruler.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___system/scene-linked-promise.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___system/scene-linked-promise.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/___system/unknown-prefab.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/___system/unknown-prefab.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/click.wav -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/fader/default.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/fader/default.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/final-fader.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/final-fader.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/index.html -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/over.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/over.wav -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/particle-green.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/particle-green.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/preloader.s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/preloader.s.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/___system/___rect-guide.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/___system/___rect-guide.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/___system/backdrop.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/___system/backdrop.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/___system/gizmo-arrow.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/___system/gizmo-arrow.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/___system/gizmo.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/___system/gizmo.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/___system/guide.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/___system/guide.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/___system/ruler.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/___system/ruler.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/b-g-music.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/b-g-music.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/b-g-music/music-fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/b-g-music/music-fragment.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/back-drop.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/back-drop.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/bitmap-text.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/bitmap-text.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/button.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/button.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/click-outside-trigger.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/click-outside-trigger.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/container.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/container.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/d-sprite.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/d-sprite.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/fill.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/fill.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/fly-text.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/fly-text.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/movie-clip.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/movie-clip.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/movie-clip/field-player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/movie-clip/field-player.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/multiline-text.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/multiline-text.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/nine-slice-plane.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/nine-slice-plane.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/particle-container.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/particle-container.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/scene.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/scene.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/spawner-ring.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/spawner-ring.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/spawner.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/spawner.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/sprite.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/sprite.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/static-trigger.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/static-trigger.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/basic/text.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/basic/text.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/common/ui/orientation-parent-resizer.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/common/ui/orientation-parent-resizer.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/common/ui/parent-resizer.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/common/ui/parent-resizer.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/custom/particle-short.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/custom/particle-short.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/html-overlay.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/html-overlay.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/is-mobile-trigger.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/is-mobile-trigger.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/label.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/label.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/layered-container.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/layered-container.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/layered-contaiter-portal.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/layered-contaiter-portal.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/mask.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/mask.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/progress-bar.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/progress-bar.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/resizer.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/resizer.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/scroll-layer.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/scroll-layer.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/shape.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/shape.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/spine.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/spine.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/trigger.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/trigger.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/extended/unpausable-container.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/extended/unpausable-container.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/mobile/orientation-trigger.c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/mobile/orientation-trigger.c.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/utils/format-money.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/utils/format-money.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/src/utils/wait-for-condition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/src/utils/wait-for-condition.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/assets/ui/sure-question.p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/assets/ui/sure-question.p.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/schema-thing-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/schema-thing-project.json -------------------------------------------------------------------------------- /thing-editor/src/engine/lib/thing-lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/lib/thing-lib.json -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/call-by-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/call-by-path.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/deep-freeze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/deep-freeze.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/full-screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/full-screen.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/game-interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/game-interaction.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/get-value-by-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/get-value-by-path.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/html-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/html-error.html -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/indexed-db-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/indexed-db-utils.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/keys.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/l.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/l.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/load-dynamic-textures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/load-dynamic-textures.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/pool.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/re-apply-textures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/re-apply-textures.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/remove-holder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/remove-holder.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/scene-linked-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/scene-linked-request.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/settings.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/sound-debug-panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/sound-debug-panel.css -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/sound.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/sure-question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/sure-question.ts -------------------------------------------------------------------------------- /thing-editor/src/engine/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/thing-editor/src/engine/utils/utils.ts -------------------------------------------------------------------------------- /tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/tsconfig.json.template -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megabyteceer/thing-editor/HEAD/vite.config.js --------------------------------------------------------------------------------