├── .gitignore ├── LICENSE ├── README.md ├── aftereffects scripts └── cyclops.jsx ├── docs ├── images │ ├── add-property-popup.png │ ├── aftereffects-preferences.png │ ├── cyclops-tool-window.png │ ├── cyclops_logo.png │ ├── property-in-list.png │ └── selected-property.png ├── instructions_aftereffects.md └── instructions_javascript.md ├── examples ├── greensock │ ├── index.html │ └── kviz8080.js ├── jquery │ ├── index.html │ └── kviz8080.js ├── multi-component │ ├── index.html │ ├── movement.js │ └── multi-component.aep └── roll-over.aep ├── js ├── cyclops.js └── cyclops.min.js └── site └── public ├── assets └── webfonts │ ├── 295E0D_0_unhinted_0.woff │ └── 295E0D_1_unhinted_0.woff ├── css └── cyclops.css ├── cyclops.html ├── favicon.ico ├── img ├── cyclops-1500.png ├── cyclops-500.png ├── download.png ├── example-stage.png ├── example.png ├── git.png ├── teepee.png └── triangle.png └── js ├── curve.js ├── cyclops.js └── fonts.js /.gitignore: -------------------------------------------------------------------------------- 1 | **/*/node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/README.md -------------------------------------------------------------------------------- /aftereffects scripts/cyclops.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/aftereffects scripts/cyclops.jsx -------------------------------------------------------------------------------- /docs/images/add-property-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/docs/images/add-property-popup.png -------------------------------------------------------------------------------- /docs/images/aftereffects-preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/docs/images/aftereffects-preferences.png -------------------------------------------------------------------------------- /docs/images/cyclops-tool-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/docs/images/cyclops-tool-window.png -------------------------------------------------------------------------------- /docs/images/cyclops_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/docs/images/cyclops_logo.png -------------------------------------------------------------------------------- /docs/images/property-in-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/docs/images/property-in-list.png -------------------------------------------------------------------------------- /docs/images/selected-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/docs/images/selected-property.png -------------------------------------------------------------------------------- /docs/instructions_aftereffects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/docs/instructions_aftereffects.md -------------------------------------------------------------------------------- /docs/instructions_javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/docs/instructions_javascript.md -------------------------------------------------------------------------------- /examples/greensock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/examples/greensock/index.html -------------------------------------------------------------------------------- /examples/greensock/kviz8080.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/examples/greensock/kviz8080.js -------------------------------------------------------------------------------- /examples/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/examples/jquery/index.html -------------------------------------------------------------------------------- /examples/jquery/kviz8080.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/examples/jquery/kviz8080.js -------------------------------------------------------------------------------- /examples/multi-component/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/examples/multi-component/index.html -------------------------------------------------------------------------------- /examples/multi-component/movement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/examples/multi-component/movement.js -------------------------------------------------------------------------------- /examples/multi-component/multi-component.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/examples/multi-component/multi-component.aep -------------------------------------------------------------------------------- /examples/roll-over.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/examples/roll-over.aep -------------------------------------------------------------------------------- /js/cyclops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/js/cyclops.js -------------------------------------------------------------------------------- /js/cyclops.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/js/cyclops.min.js -------------------------------------------------------------------------------- /site/public/assets/webfonts/295E0D_0_unhinted_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/assets/webfonts/295E0D_0_unhinted_0.woff -------------------------------------------------------------------------------- /site/public/assets/webfonts/295E0D_1_unhinted_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/assets/webfonts/295E0D_1_unhinted_0.woff -------------------------------------------------------------------------------- /site/public/css/cyclops.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/css/cyclops.css -------------------------------------------------------------------------------- /site/public/cyclops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/cyclops.html -------------------------------------------------------------------------------- /site/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/favicon.ico -------------------------------------------------------------------------------- /site/public/img/cyclops-1500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/img/cyclops-1500.png -------------------------------------------------------------------------------- /site/public/img/cyclops-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/img/cyclops-500.png -------------------------------------------------------------------------------- /site/public/img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/img/download.png -------------------------------------------------------------------------------- /site/public/img/example-stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/img/example-stage.png -------------------------------------------------------------------------------- /site/public/img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/img/example.png -------------------------------------------------------------------------------- /site/public/img/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/img/git.png -------------------------------------------------------------------------------- /site/public/img/teepee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/img/teepee.png -------------------------------------------------------------------------------- /site/public/img/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/img/triangle.png -------------------------------------------------------------------------------- /site/public/js/curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/js/curve.js -------------------------------------------------------------------------------- /site/public/js/cyclops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/js/cyclops.js -------------------------------------------------------------------------------- /site/public/js/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Instrument/cyclops/HEAD/site/public/js/fonts.js --------------------------------------------------------------------------------