├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── launch.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Supported-Features.md ├── aex.code-workspace ├── cep ├── .gitignore ├── .mocharc.json ├── ejs │ └── mocha.ejs ├── gulpfile.ts ├── harness │ ├── .debug │ ├── CSXS │ │ └── manifest.xml │ └── index.html ├── lib │ └── CSInterface.js ├── package.json ├── test │ ├── aex.ts │ ├── assets │ │ ├── (Footage) │ │ │ ├── Footage Licenses.md │ │ │ ├── Juvenile_Ragdoll.jpg │ │ │ ├── en-us-cheese.mp3 │ │ │ ├── seq │ │ │ │ ├── img.0000.jpg │ │ │ │ └── img.0001.jpg │ │ │ ├── table.csv │ │ │ └── transparent.png │ │ ├── comp_basic.aep │ │ ├── comp_basic.comp.json │ │ ├── comp_markers.aep │ │ ├── comp_markers.json │ │ ├── layer_audio.aep │ │ ├── layer_basic.aep │ │ ├── layer_blank.aep │ │ ├── layer_camera.aep │ │ ├── layer_camera.comp.json │ │ ├── layer_effects.aep │ │ ├── layer_light.aep │ │ ├── layer_markers.aep │ │ ├── layer_masks.aep │ │ ├── layer_shapelayer.aep │ │ ├── layer_shapelayer_blank.aep │ │ ├── layer_styles.aep │ │ ├── layer_text.aep │ │ ├── layer_text_blank.aep │ │ ├── layer_transform.aep │ │ ├── prescan_1_flat_project.aep │ │ ├── prescan_2_nested_precomps_project.aep │ │ ├── project_basic.aep │ │ ├── project_basic_items.aep │ │ ├── project_files.aep │ │ ├── project_folders-flat.aep │ │ ├── project_folders-nested.aep │ │ ├── project_footage.aep │ │ ├── property_animated.aep │ │ └── property_unsupported.aep │ ├── browser-entry.ts │ ├── comp │ │ ├── basic.spec.ts │ │ └── markers.spec.ts │ ├── constants.ts │ ├── csinterface.ts │ ├── layer │ │ ├── animation.spec.ts │ │ ├── audio.spec.ts │ │ ├── basic.spec.ts │ │ ├── cameralayer.spec.ts │ │ ├── effects.spec.ts │ │ ├── lightlayer.spec.ts │ │ ├── markers.spec.ts │ │ ├── masks.spec.ts │ │ ├── shapelayer.spec.ts │ │ ├── styles.spec.ts │ │ ├── textlayer.spec.ts │ │ ├── transform.spec.ts │ │ └── unsupported.spec.ts │ ├── project │ │ ├── file.spec.ts │ │ ├── folder.spec.ts │ │ ├── footageItem.spec.ts │ │ ├── project.spec.ts │ │ └── solidItem.spec.ts │ ├── rafi.spec.ts │ ├── utils.ts │ └── zack.spec.ts ├── tsconfig.json ├── webpack │ ├── contants.ts │ ├── devserver.ts │ ├── externals.ts │ ├── test.ts │ └── util.ts └── yarn.lock └── estk ├── gulpfile.ts ├── lib ├── aequery.jsx └── json2.jsx ├── package.json ├── sample ├── aex_sample.jsx └── comp.json ├── src ├── cep │ └── ipc.tsx ├── common │ ├── assert.tsx │ ├── dom.tsx │ ├── markers.tsx │ ├── property.tsx │ ├── prune.tsx │ └── value.tsx ├── constants.tsx ├── create.tsx ├── exports.tsx ├── get.tsx ├── interfaces.tsx ├── item │ ├── avitem.tsx │ ├── comp.tsx │ ├── complayers.tsx │ ├── comprenderer.tsx │ ├── folder.tsx │ ├── footage │ │ ├── file.tsx │ │ ├── footage.tsx │ │ ├── placeholder.tsx │ │ └── solid.tsx │ └── item.tsx ├── layer │ ├── avlayer │ │ ├── avlayer.tsx │ │ ├── effects.tsx │ │ ├── masks.tsx │ │ └── styles.tsx │ ├── camera.tsx │ ├── footage.tsx │ ├── layer.tsx │ ├── layertransform.tsx │ ├── layerutil.tsx │ ├── light.tsx │ ├── shape.tsx │ └── text.tsx ├── prescan.tsx ├── project.tsx ├── property │ ├── groups.tsx │ ├── keys.tsx │ ├── property.tsx │ ├── textdocument.tsx │ └── value.tsx ├── tsconfig.json ├── typings │ ├── aequery.d.ts │ ├── aex.d.ts │ └── json2.d.ts └── update.tsx └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/README.md -------------------------------------------------------------------------------- /Supported-Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/Supported-Features.md -------------------------------------------------------------------------------- /aex.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/aex.code-workspace -------------------------------------------------------------------------------- /cep/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ -------------------------------------------------------------------------------- /cep/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/.mocharc.json -------------------------------------------------------------------------------- /cep/ejs/mocha.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/ejs/mocha.ejs -------------------------------------------------------------------------------- /cep/gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/gulpfile.ts -------------------------------------------------------------------------------- /cep/harness/.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/harness/.debug -------------------------------------------------------------------------------- /cep/harness/CSXS/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/harness/CSXS/manifest.xml -------------------------------------------------------------------------------- /cep/harness/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/harness/index.html -------------------------------------------------------------------------------- /cep/lib/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/lib/CSInterface.js -------------------------------------------------------------------------------- /cep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/package.json -------------------------------------------------------------------------------- /cep/test/aex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/aex.ts -------------------------------------------------------------------------------- /cep/test/assets/(Footage)/Footage Licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/(Footage)/Footage Licenses.md -------------------------------------------------------------------------------- /cep/test/assets/(Footage)/Juvenile_Ragdoll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/(Footage)/Juvenile_Ragdoll.jpg -------------------------------------------------------------------------------- /cep/test/assets/(Footage)/en-us-cheese.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/(Footage)/en-us-cheese.mp3 -------------------------------------------------------------------------------- /cep/test/assets/(Footage)/seq/img.0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/(Footage)/seq/img.0000.jpg -------------------------------------------------------------------------------- /cep/test/assets/(Footage)/seq/img.0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/(Footage)/seq/img.0001.jpg -------------------------------------------------------------------------------- /cep/test/assets/(Footage)/table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/(Footage)/table.csv -------------------------------------------------------------------------------- /cep/test/assets/(Footage)/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/(Footage)/transparent.png -------------------------------------------------------------------------------- /cep/test/assets/comp_basic.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/comp_basic.aep -------------------------------------------------------------------------------- /cep/test/assets/comp_basic.comp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/comp_basic.comp.json -------------------------------------------------------------------------------- /cep/test/assets/comp_markers.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/comp_markers.aep -------------------------------------------------------------------------------- /cep/test/assets/comp_markers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/comp_markers.json -------------------------------------------------------------------------------- /cep/test/assets/layer_audio.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_audio.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_basic.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_basic.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_blank.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_blank.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_camera.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_camera.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_camera.comp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_camera.comp.json -------------------------------------------------------------------------------- /cep/test/assets/layer_effects.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_effects.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_light.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_light.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_markers.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_markers.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_masks.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_masks.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_shapelayer.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_shapelayer.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_shapelayer_blank.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_shapelayer_blank.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_styles.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_styles.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_text.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_text.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_text_blank.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_text_blank.aep -------------------------------------------------------------------------------- /cep/test/assets/layer_transform.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/layer_transform.aep -------------------------------------------------------------------------------- /cep/test/assets/prescan_1_flat_project.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/prescan_1_flat_project.aep -------------------------------------------------------------------------------- /cep/test/assets/prescan_2_nested_precomps_project.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/prescan_2_nested_precomps_project.aep -------------------------------------------------------------------------------- /cep/test/assets/project_basic.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/project_basic.aep -------------------------------------------------------------------------------- /cep/test/assets/project_basic_items.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/project_basic_items.aep -------------------------------------------------------------------------------- /cep/test/assets/project_files.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/project_files.aep -------------------------------------------------------------------------------- /cep/test/assets/project_folders-flat.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/project_folders-flat.aep -------------------------------------------------------------------------------- /cep/test/assets/project_folders-nested.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/project_folders-nested.aep -------------------------------------------------------------------------------- /cep/test/assets/project_footage.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/project_footage.aep -------------------------------------------------------------------------------- /cep/test/assets/property_animated.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/property_animated.aep -------------------------------------------------------------------------------- /cep/test/assets/property_unsupported.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/assets/property_unsupported.aep -------------------------------------------------------------------------------- /cep/test/browser-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/browser-entry.ts -------------------------------------------------------------------------------- /cep/test/comp/basic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/comp/basic.spec.ts -------------------------------------------------------------------------------- /cep/test/comp/markers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/comp/markers.spec.ts -------------------------------------------------------------------------------- /cep/test/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/constants.ts -------------------------------------------------------------------------------- /cep/test/csinterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/csinterface.ts -------------------------------------------------------------------------------- /cep/test/layer/animation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/animation.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/audio.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/audio.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/basic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/basic.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/cameralayer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/cameralayer.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/effects.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/lightlayer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/lightlayer.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/markers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/markers.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/masks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/masks.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/shapelayer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/shapelayer.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/styles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/styles.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/textlayer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/textlayer.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/transform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/transform.spec.ts -------------------------------------------------------------------------------- /cep/test/layer/unsupported.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/layer/unsupported.spec.ts -------------------------------------------------------------------------------- /cep/test/project/file.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/project/file.spec.ts -------------------------------------------------------------------------------- /cep/test/project/folder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/project/folder.spec.ts -------------------------------------------------------------------------------- /cep/test/project/footageItem.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/project/footageItem.spec.ts -------------------------------------------------------------------------------- /cep/test/project/project.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/project/project.spec.ts -------------------------------------------------------------------------------- /cep/test/project/solidItem.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/project/solidItem.spec.ts -------------------------------------------------------------------------------- /cep/test/rafi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/rafi.spec.ts -------------------------------------------------------------------------------- /cep/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/utils.ts -------------------------------------------------------------------------------- /cep/test/zack.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/test/zack.spec.ts -------------------------------------------------------------------------------- /cep/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/tsconfig.json -------------------------------------------------------------------------------- /cep/webpack/contants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/webpack/contants.ts -------------------------------------------------------------------------------- /cep/webpack/devserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/webpack/devserver.ts -------------------------------------------------------------------------------- /cep/webpack/externals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/webpack/externals.ts -------------------------------------------------------------------------------- /cep/webpack/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/webpack/test.ts -------------------------------------------------------------------------------- /cep/webpack/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/webpack/util.ts -------------------------------------------------------------------------------- /cep/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/cep/yarn.lock -------------------------------------------------------------------------------- /estk/gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/gulpfile.ts -------------------------------------------------------------------------------- /estk/lib/aequery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/lib/aequery.jsx -------------------------------------------------------------------------------- /estk/lib/json2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/lib/json2.jsx -------------------------------------------------------------------------------- /estk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/package.json -------------------------------------------------------------------------------- /estk/sample/aex_sample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/sample/aex_sample.jsx -------------------------------------------------------------------------------- /estk/sample/comp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/sample/comp.json -------------------------------------------------------------------------------- /estk/src/cep/ipc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/cep/ipc.tsx -------------------------------------------------------------------------------- /estk/src/common/assert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/common/assert.tsx -------------------------------------------------------------------------------- /estk/src/common/dom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/common/dom.tsx -------------------------------------------------------------------------------- /estk/src/common/markers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/common/markers.tsx -------------------------------------------------------------------------------- /estk/src/common/property.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/common/property.tsx -------------------------------------------------------------------------------- /estk/src/common/prune.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/common/prune.tsx -------------------------------------------------------------------------------- /estk/src/common/value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/common/value.tsx -------------------------------------------------------------------------------- /estk/src/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/constants.tsx -------------------------------------------------------------------------------- /estk/src/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/create.tsx -------------------------------------------------------------------------------- /estk/src/exports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/exports.tsx -------------------------------------------------------------------------------- /estk/src/get.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/get.tsx -------------------------------------------------------------------------------- /estk/src/interfaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/interfaces.tsx -------------------------------------------------------------------------------- /estk/src/item/avitem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/avitem.tsx -------------------------------------------------------------------------------- /estk/src/item/comp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/comp.tsx -------------------------------------------------------------------------------- /estk/src/item/complayers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/complayers.tsx -------------------------------------------------------------------------------- /estk/src/item/comprenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/comprenderer.tsx -------------------------------------------------------------------------------- /estk/src/item/folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/folder.tsx -------------------------------------------------------------------------------- /estk/src/item/footage/file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/footage/file.tsx -------------------------------------------------------------------------------- /estk/src/item/footage/footage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/footage/footage.tsx -------------------------------------------------------------------------------- /estk/src/item/footage/placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/footage/placeholder.tsx -------------------------------------------------------------------------------- /estk/src/item/footage/solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/footage/solid.tsx -------------------------------------------------------------------------------- /estk/src/item/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/item/item.tsx -------------------------------------------------------------------------------- /estk/src/layer/avlayer/avlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/avlayer/avlayer.tsx -------------------------------------------------------------------------------- /estk/src/layer/avlayer/effects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/avlayer/effects.tsx -------------------------------------------------------------------------------- /estk/src/layer/avlayer/masks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/avlayer/masks.tsx -------------------------------------------------------------------------------- /estk/src/layer/avlayer/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/avlayer/styles.tsx -------------------------------------------------------------------------------- /estk/src/layer/camera.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/camera.tsx -------------------------------------------------------------------------------- /estk/src/layer/footage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/footage.tsx -------------------------------------------------------------------------------- /estk/src/layer/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/layer.tsx -------------------------------------------------------------------------------- /estk/src/layer/layertransform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/layertransform.tsx -------------------------------------------------------------------------------- /estk/src/layer/layerutil.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/layerutil.tsx -------------------------------------------------------------------------------- /estk/src/layer/light.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/light.tsx -------------------------------------------------------------------------------- /estk/src/layer/shape.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/shape.tsx -------------------------------------------------------------------------------- /estk/src/layer/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/layer/text.tsx -------------------------------------------------------------------------------- /estk/src/prescan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/prescan.tsx -------------------------------------------------------------------------------- /estk/src/project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/project.tsx -------------------------------------------------------------------------------- /estk/src/property/groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/property/groups.tsx -------------------------------------------------------------------------------- /estk/src/property/keys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/property/keys.tsx -------------------------------------------------------------------------------- /estk/src/property/property.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/property/property.tsx -------------------------------------------------------------------------------- /estk/src/property/textdocument.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/property/textdocument.tsx -------------------------------------------------------------------------------- /estk/src/property/value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/property/value.tsx -------------------------------------------------------------------------------- /estk/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/tsconfig.json -------------------------------------------------------------------------------- /estk/src/typings/aequery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/typings/aequery.d.ts -------------------------------------------------------------------------------- /estk/src/typings/aex.d.ts: -------------------------------------------------------------------------------- 1 | declare var _export_: any; 2 | -------------------------------------------------------------------------------- /estk/src/typings/json2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/typings/json2.d.ts -------------------------------------------------------------------------------- /estk/src/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/src/update.tsx -------------------------------------------------------------------------------- /estk/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KraftyFX/aex/HEAD/estk/yarn.lock --------------------------------------------------------------------------------