├── README.md ├── plugin ├── mac │ ├── @image.plugin │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── @image │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ └── @image.rsrc │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── @script.plugin │ │ └── @script.plugin │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── @script │ │ ├── PkgInfo │ │ ├── Resources │ │ └── @script.rsrc │ │ └── _CodeSignature │ │ └── CodeResources └── win │ ├── @image.aex │ └── @script.aex └── script ├── .gitignore ├── package.json ├── src ├── ScriptUI │ ├── @cropped_mesh_warp.tsx │ ├── @dropdownlist_viewer.tsx │ ├── @effect_preset.tsx │ ├── @effect_search.tsx │ ├── @effects_in_use.tsx │ ├── @movie_maker.tsx │ ├── @paramdefs_viewer.tsx │ ├── @proxy_maker.tsx │ ├── @rpp_loader.tsx │ ├── @script_panel.tsx │ ├── @still_maker.tsx │ └── @swatch.tsx ├── Startup │ ├── !@script_UI.tsx │ ├── !@script_initializer.tsx │ ├── @command_set_null.tsx │ ├── @effect_launcher.tsx │ ├── @fold_layers.tsx │ ├── @hook_].tsx │ ├── @hook_adjustment.tsx │ ├── @hook_fit_to_comp.tsx │ ├── @hook_null.tsx │ ├── @hook_solid.tsx │ ├── @paste_clipboard.tsx │ ├── @save_to_desktop.tsx │ ├── @svg.tsx │ └── @toggle_mfr.tsx └── embeded │ └── RIFX.tsx ├── tsconfig.json └── types ├── @script.api.d.ts ├── @script.at.d.ts ├── @script.d.ts ├── @script.rifx.d.ts ├── @script.svg.d.ts ├── @script.ui.d.ts ├── ae.extra.d.ts └── pf.constants.d.ts /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/README.md -------------------------------------------------------------------------------- /plugin/mac/@image.plugin/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/mac/@image.plugin/Contents/Info.plist -------------------------------------------------------------------------------- /plugin/mac/@image.plugin/Contents/MacOS/@image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/mac/@image.plugin/Contents/MacOS/@image -------------------------------------------------------------------------------- /plugin/mac/@image.plugin/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | eFKTFXTC -------------------------------------------------------------------------------- /plugin/mac/@image.plugin/Contents/Resources/@image.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/mac/@image.plugin/Contents/Resources/@image.rsrc -------------------------------------------------------------------------------- /plugin/mac/@image.plugin/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/mac/@image.plugin/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /plugin/mac/@script.plugin/@script.plugin/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/mac/@script.plugin/@script.plugin/Contents/Info.plist -------------------------------------------------------------------------------- /plugin/mac/@script.plugin/@script.plugin/Contents/MacOS/@script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/mac/@script.plugin/@script.plugin/Contents/MacOS/@script -------------------------------------------------------------------------------- /plugin/mac/@script.plugin/@script.plugin/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | AEgxFXTC -------------------------------------------------------------------------------- /plugin/mac/@script.plugin/@script.plugin/Contents/Resources/@script.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/mac/@script.plugin/@script.plugin/Contents/Resources/@script.rsrc -------------------------------------------------------------------------------- /plugin/mac/@script.plugin/@script.plugin/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/mac/@script.plugin/@script.plugin/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /plugin/win/@image.aex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/win/@image.aex -------------------------------------------------------------------------------- /plugin/win/@script.aex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/plugin/win/@script.aex -------------------------------------------------------------------------------- /script/.gitignore: -------------------------------------------------------------------------------- 1 | dst 2 | node_modules 3 | package-lock.json -------------------------------------------------------------------------------- /script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/package.json -------------------------------------------------------------------------------- /script/src/ScriptUI/@cropped_mesh_warp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@cropped_mesh_warp.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@dropdownlist_viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@dropdownlist_viewer.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@effect_preset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@effect_preset.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@effect_search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@effect_search.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@effects_in_use.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@effects_in_use.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@movie_maker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@movie_maker.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@paramdefs_viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@paramdefs_viewer.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@proxy_maker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@proxy_maker.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@rpp_loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@rpp_loader.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@script_panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@script_panel.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@still_maker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@still_maker.tsx -------------------------------------------------------------------------------- /script/src/ScriptUI/@swatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/ScriptUI/@swatch.tsx -------------------------------------------------------------------------------- /script/src/Startup/!@script_UI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/!@script_UI.tsx -------------------------------------------------------------------------------- /script/src/Startup/!@script_initializer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/!@script_initializer.tsx -------------------------------------------------------------------------------- /script/src/Startup/@command_set_null.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@command_set_null.tsx -------------------------------------------------------------------------------- /script/src/Startup/@effect_launcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@effect_launcher.tsx -------------------------------------------------------------------------------- /script/src/Startup/@fold_layers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@fold_layers.tsx -------------------------------------------------------------------------------- /script/src/Startup/@hook_].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@hook_].tsx -------------------------------------------------------------------------------- /script/src/Startup/@hook_adjustment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@hook_adjustment.tsx -------------------------------------------------------------------------------- /script/src/Startup/@hook_fit_to_comp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@hook_fit_to_comp.tsx -------------------------------------------------------------------------------- /script/src/Startup/@hook_null.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@hook_null.tsx -------------------------------------------------------------------------------- /script/src/Startup/@hook_solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@hook_solid.tsx -------------------------------------------------------------------------------- /script/src/Startup/@paste_clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@paste_clipboard.tsx -------------------------------------------------------------------------------- /script/src/Startup/@save_to_desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@save_to_desktop.tsx -------------------------------------------------------------------------------- /script/src/Startup/@svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@svg.tsx -------------------------------------------------------------------------------- /script/src/Startup/@toggle_mfr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/Startup/@toggle_mfr.tsx -------------------------------------------------------------------------------- /script/src/embeded/RIFX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/src/embeded/RIFX.tsx -------------------------------------------------------------------------------- /script/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/tsconfig.json -------------------------------------------------------------------------------- /script/types/@script.api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/types/@script.api.d.ts -------------------------------------------------------------------------------- /script/types/@script.at.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/types/@script.at.d.ts -------------------------------------------------------------------------------- /script/types/@script.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/types/@script.d.ts -------------------------------------------------------------------------------- /script/types/@script.rifx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/types/@script.rifx.d.ts -------------------------------------------------------------------------------- /script/types/@script.svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/types/@script.svg.d.ts -------------------------------------------------------------------------------- /script/types/@script.ui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/types/@script.ui.d.ts -------------------------------------------------------------------------------- /script/types/ae.extra.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/types/ae.extra.d.ts -------------------------------------------------------------------------------- /script/types/pf.constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atarabi/at_script/HEAD/script/types/pf.constants.d.ts --------------------------------------------------------------------------------