├── .editorconfig ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── VERSION ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── run_maya_tests ├── setup.py ├── src └── anima │ ├── VERSION │ ├── __init__.py │ ├── config.py │ ├── dcc │ ├── __init__.py │ ├── avid.py │ ├── base.py │ ├── blackmagic.py │ ├── blender │ │ ├── __init__.py │ │ ├── addons │ │ │ └── anima_toolbox.py │ │ ├── auxiliary.py │ │ ├── curve_to_particle.py │ │ ├── reviewer.py │ │ └── toolbox │ │ │ ├── __init__.py │ │ │ ├── general.py │ │ │ └── render.py │ ├── external.py │ ├── fusion │ │ ├── __init__.py │ │ ├── config │ │ │ └── Macros │ │ │ │ ├── AnimaContrast.setting │ │ │ │ ├── AnimaFireflyHunter.setting │ │ │ │ ├── AnimaFireflyHunter2.setting │ │ │ │ ├── AnimaLightWrap.setting │ │ │ │ ├── AnimaMotionVectorErode.setting │ │ │ │ ├── AnimaSTMapGenerator.setting │ │ │ │ ├── AnimaSlate.setting │ │ │ │ ├── AnimaVelLimiter.setting │ │ │ │ ├── AnimaWhiteBalance.setting │ │ │ │ ├── AnimaZErode.setting │ │ │ │ └── AnimaZFixer.setting │ │ ├── data │ │ │ └── Slate.comp │ │ ├── render_merger.py │ │ ├── toolbox.py │ │ └── utils.py │ ├── houdini │ │ ├── __init__.py │ │ ├── archive.py │ │ ├── auxiliary.py │ │ ├── crowd_tools.py │ │ ├── menus │ │ │ └── MainMenuCommon.xml │ │ ├── otls │ │ │ ├── lidar_data_exporter.hdalc │ │ │ ├── preserve_sheets.hdalc │ │ │ └── spring_force_particle_separation.hdalc │ │ ├── point_cloud_exporter.py │ │ ├── python_panels │ │ │ └── default.pypanel │ │ ├── render.py │ │ ├── toolbox.py │ │ └── utils.py │ ├── max │ │ ├── __init__.py │ │ └── vray2rs.py │ ├── mayaEnv │ │ ├── __init__.py │ │ ├── afanasy.py │ │ ├── afanasy_publisher.py │ │ ├── ai2rs.py │ │ ├── animation.py │ │ ├── archive.py │ │ ├── asset_migration_tool.py │ │ ├── auxiliary.py │ │ ├── camera_tools.py │ │ ├── config │ │ │ ├── 2014 │ │ │ │ ├── FileMenu.mel │ │ │ │ ├── ModObjectsMenu.mel │ │ │ │ ├── SequenceEdMenu.mel │ │ │ │ ├── doPlayblastSequenceArgList.mel │ │ │ │ ├── doPlayblastShotArgList.mel │ │ │ │ ├── graphEditorPanel.mel │ │ │ │ ├── manipScaleValues.mel │ │ │ │ ├── mentalrayCustomNodeClass.mel │ │ │ │ ├── performCamera.mel │ │ │ │ ├── performPlayblast.mel │ │ │ │ ├── performPlayblastShot.mel │ │ │ │ └── scaleMarkingMenuImpl.mel │ │ │ ├── 2017 │ │ │ │ ├── FileMenu.mel │ │ │ │ ├── manipScaleProperties.mel │ │ │ │ ├── performPlayblast.mel │ │ │ │ ├── performPlayblastSequence.mel │ │ │ │ ├── performPlayblastShot.mel │ │ │ │ └── scaleMarkingMenuImpl.mel │ │ │ ├── 2018 │ │ │ │ ├── FileMenu.mel │ │ │ │ ├── performPlayblast.mel │ │ │ │ ├── performPlayblastSequence.mel │ │ │ │ └── performPlayblastShot.mel │ │ │ ├── 2019 │ │ │ │ ├── FileMenu.mel │ │ │ │ ├── performPlayblast.mel │ │ │ │ ├── performPlayblastSequence.mel │ │ │ │ └── performPlayblastShot.mel │ │ │ ├── 2020 │ │ │ │ ├── FileMenu.mel │ │ │ │ ├── performPlayblast.mel │ │ │ │ ├── performPlayblastSequence.mel │ │ │ │ └── performPlayblastShot.mel │ │ │ ├── 2022 │ │ │ │ ├── FileMenu.mel │ │ │ │ ├── performPlayblast.mel │ │ │ │ ├── performPlayblastSequence.mel │ │ │ │ └── performPlayblastShot.mel │ │ │ ├── __init__.py │ │ │ ├── arnold_patches.py │ │ │ └── userSetup.py │ │ ├── extension.py │ │ ├── fix_bound_joint.py │ │ ├── general.py │ │ ├── hierarchy_instancer.py │ │ ├── mash_bake_instancer.py │ │ ├── modeling.py │ │ ├── picker.py │ │ ├── pivot_switcher.py │ │ ├── plugins │ │ │ ├── closestPointOnCurve.py │ │ │ ├── oyBallisticRuler.py │ │ │ ├── oyCenterOfMass.py │ │ │ ├── oyClosestPointOnMesh.py │ │ │ ├── oyTrajectoryDrawer.py │ │ │ └── randomizeUVDeformer.py │ │ ├── previs.py │ │ ├── publish.py │ │ ├── redshift.py │ │ ├── reference.py │ │ ├── relax_vertices.py │ │ ├── render.py │ │ ├── repr_tools.py │ │ ├── rigging.py │ │ ├── selection_manager.py │ │ ├── toolbox.py │ │ ├── ui.py │ │ └── vertigo.py │ ├── motion_builder │ │ ├── __init__.py │ │ └── clip_manager.py │ ├── nukeEnv │ │ ├── __init__.py │ │ ├── auxiliary.py │ │ └── config │ │ │ ├── init.py │ │ │ └── menu.py │ ├── photoshop │ │ ├── __init__.py │ │ └── config │ │ │ ├── __init__.py │ │ │ ├── install.py │ │ │ ├── scripts │ │ │ └── _VERSION_CREATOR_.jsx │ │ │ └── version_creator.py │ ├── resolve │ │ ├── __init__.py │ │ ├── conformer.py │ │ ├── shot_tools.py │ │ ├── template.py │ │ └── toolbox.py │ ├── tde4 │ │ ├── __init__.py │ │ └── toolbox.py │ └── testing.py │ ├── edit.py │ ├── exc.py │ ├── extension.py │ ├── mocap │ ├── __init__.py │ └── xsens.py │ ├── perf.py │ ├── publish.py │ ├── recent.py │ ├── render │ ├── __init__.py │ ├── arnold │ │ ├── H2A │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG │ │ │ ├── H2A.cpp │ │ │ ├── H2A_ROP.h │ │ │ ├── MANIFEST.in │ │ │ ├── README │ │ │ ├── README.md │ │ │ ├── ROP_h2a.cpp │ │ │ ├── Support_files │ │ │ │ ├── ROP_H2A_ROP.svg │ │ │ │ ├── h2a.png │ │ │ │ └── h2a_rop.txt │ │ │ ├── asstoc_writer.cpp │ │ │ ├── base_85.cpp │ │ │ ├── base_85.h │ │ │ ├── compiled_plugins │ │ │ │ ├── H2A_14.0.291.dll │ │ │ │ ├── H2A_15.0.347.dll │ │ │ │ ├── H2A_16.0.557.dll │ │ │ │ └── H2A_16.0.736.dll │ │ │ ├── curve_write.cpp │ │ │ ├── h2a_io.cpp │ │ │ ├── h2a_io.h │ │ │ ├── light_write.cpp │ │ │ ├── point_write.cpp │ │ │ └── poly_write.cpp │ │ ├── __init__.py │ │ ├── base85.py │ │ ├── cBase85.c │ │ ├── h2a.py │ │ └── light.py │ ├── mat_converter.py │ └── redshift.py │ ├── representation.py │ ├── rez_packages │ ├── .gitignore │ ├── 3de4 │ │ ├── 5.0.0 │ │ │ └── package.py │ │ ├── 6.b3.0 │ │ │ └── package.py │ │ ├── build.py │ │ └── lib │ │ │ └── python │ │ │ ├── open_version.py │ │ │ ├── save_as_version.py │ │ │ └── ui_common.py │ ├── aces │ │ ├── 0.1.1 │ │ │ └── package.py │ │ ├── 0.7.1 │ │ │ └── package.py │ │ ├── 1.0.1 │ │ │ └── package.py │ │ ├── 1.0.2 │ │ │ └── package.py │ │ ├── 1.0.3 │ │ │ └── package.py │ │ ├── 1.1.0 │ │ │ └── package.py │ │ ├── 1.2.0 │ │ │ └── package.py │ │ ├── 1.3.0 │ │ │ └── package.py │ │ └── build.py │ ├── agx │ │ ├── 12.3.0 │ │ │ └── package.py │ │ └── build.py │ ├── anima │ │ ├── build.py │ │ └── package.py │ ├── blender │ │ ├── 2.93.4 │ │ │ └── package.py │ │ ├── 2.93.6 │ │ │ └── package.py │ │ ├── 3.0.0 │ │ │ └── package.py │ │ ├── 3.0.1 │ │ │ └── package.py │ │ ├── 3.1.2 │ │ │ └── package.py │ │ ├── 3.2.0 │ │ │ └── package.py │ │ ├── 3.2.2 │ │ │ └── package.py │ │ ├── 3.3.0 │ │ │ └── package.py │ │ ├── 3.3.1 │ │ │ └── package.py │ │ ├── 3.4.1 │ │ │ └── package.py │ │ ├── 3.5.0 │ │ │ └── package.py │ │ ├── 3.6.0 │ │ │ └── package.py │ │ ├── 3.6.2 │ │ │ └── package.py │ │ ├── 3.6.5 │ │ │ └── package.py │ │ ├── 4.0.0 │ │ │ └── package.py │ │ ├── 4.0.2 │ │ │ └── package.py │ │ ├── 4.1.0 │ │ │ └── package.py │ │ ├── 4.2.4 │ │ │ └── package.py │ │ ├── 4.3.0 │ │ │ └── package.py │ │ └── build.py │ ├── cgru │ │ ├── 2.3.1 │ │ │ └── package.py │ │ ├── 3.2.2 │ │ │ └── package.py │ │ └── build.py │ ├── fusion │ │ ├── 17.3.1 │ │ │ └── package.py │ │ ├── 18.0.0 │ │ │ └── package.py │ │ ├── 18.0.4 │ │ │ └── package.py │ │ ├── 18.1.0 │ │ │ └── package.py │ │ └── build.py │ ├── github_project_builder.py │ ├── houdini │ │ ├── 18.5.759 │ │ │ └── package.py │ │ ├── 19.0.383 │ │ │ └── package.py │ │ ├── 19.0.561 │ │ │ └── package.py │ │ ├── 19.0.589 │ │ │ └── package.py │ │ ├── 19.0.622 │ │ │ └── package.py │ │ ├── 19.5.368 │ │ │ └── package.py │ │ ├── 19.5.403 │ │ │ └── package.py │ │ ├── 19.5.435 │ │ │ └── package.py │ │ ├── 20.5.410 │ │ │ └── package.py │ │ └── build.py │ ├── maya │ │ ├── 2022.3.0 │ │ │ └── package.py │ │ ├── 2022.4.0 │ │ │ └── package.py │ │ ├── 2023.2.0 │ │ │ └── package.py │ │ ├── 2025.3.0 │ │ │ └── package.py │ │ └── build.py │ ├── maya_usd │ │ ├── 0.19.0 │ │ │ ├── build.py │ │ │ └── package.py │ │ └── 0.30.0 │ │ │ ├── build.py │ │ │ └── package.py │ ├── ocio │ │ ├── 1.0.0 │ │ │ └── package.py │ │ ├── 2.0.0 │ │ │ └── package.py │ │ ├── 2.1.0 │ │ │ └── package.py │ │ ├── 2.2.0 │ │ │ └── package.py │ │ ├── 2.3.0 │ │ │ └── package.py │ │ ├── 2.4.0 │ │ │ └── package.py │ │ └── build.py │ ├── pymel │ │ └── 1.5.0 │ │ │ └── package.py │ ├── pyside2 │ │ ├── 5.14.0 │ │ │ └── package.py │ │ ├── 5.15.2 │ │ │ └── package.py │ │ └── build.py │ ├── pyside6 │ │ ├── 6.4.0 │ │ │ └── package.py │ │ └── build.py │ ├── python │ │ ├── 2.7.11 │ │ │ └── package.py │ │ ├── 3.10.0 │ │ │ └── package.py │ │ ├── 3.11.0 │ │ │ └── package.py │ │ ├── 3.12.0 │ │ │ └── package.py │ │ ├── 3.13.0 │ │ │ └── package.py │ │ ├── 3.6.0 │ │ │ └── package.py │ │ ├── 3.7.0 │ │ │ └── package.py │ │ ├── 3.7.4 │ │ │ └── package.py │ │ ├── 3.8.0 │ │ │ └── package.py │ │ ├── 3.9.0 │ │ │ └── package.py │ │ └── build.py │ ├── qlib │ │ ├── 0.2.207 │ │ │ └── package.py │ │ ├── 0.2.213 │ │ │ └── package.py │ │ └── 0.2.263 │ │ │ └── package.py │ ├── quixel_megascan │ │ ├── 0.9.9 │ │ │ └── package.py │ │ └── build.py │ ├── redshift │ │ ├── 2025.0.1 │ │ │ └── package.py │ │ ├── 2025.2.0 │ │ │ └── package.py │ │ ├── 2025.2.1 │ │ │ └── package.py │ │ ├── 3.0.47 │ │ │ └── package.py │ │ ├── 3.0.59 │ │ │ └── package.py │ │ ├── 3.0.67 │ │ │ └── package.py │ │ ├── 3.5.07 │ │ │ └── package.py │ │ ├── 3.5.08 │ │ │ └── package.py │ │ ├── 3.5.09 │ │ │ └── package.py │ │ ├── 3.5.10 │ │ │ └── package.py │ │ └── build.py │ └── resolve │ │ ├── 17.4.3 │ │ └── package.py │ │ ├── 18.0.0 │ │ └── package.py │ │ ├── 18.0.1 │ │ └── package.py │ │ ├── 18.0.2 │ │ └── package.py │ │ ├── 18.0.3 │ │ └── package.py │ │ ├── 18.1.0 │ │ └── package.py │ │ ├── 18.1.1 │ │ └── package.py │ │ ├── bin │ │ ├── resolve_python │ │ ├── resolve_toolbox │ │ └── resolve_toolbox.py │ │ └── build.py │ ├── rig │ ├── __init__.py │ ├── character.py │ ├── controllers.py │ ├── curve.py │ ├── drawNode.py │ ├── joint.py │ ├── limb.py │ ├── network.py │ ├── nodes.py │ ├── shapes.py │ └── utilityFuncs.py │ ├── testing.py │ ├── texture.py │ ├── ui │ ├── __init__.py │ ├── base.py │ ├── dialogs │ │ ├── __init__.py │ │ ├── archiver_dialog.py │ │ ├── asset_migration_tool_dialog.py │ │ ├── create_shot_dialog.py │ │ ├── edl_importer.py │ │ ├── filename_template_dialog.py │ │ ├── image_format_dialog.py │ │ ├── login_dialog.py │ │ ├── progress_dialog.py │ │ ├── project_dialog.py │ │ ├── project_manager.py │ │ ├── project_manager_old.py │ │ ├── project_users_dialog.py │ │ ├── publish_checker.py │ │ ├── reference_editor.py │ │ ├── repository_dialog.py │ │ ├── review_dialog.py │ │ ├── structure_dialog.py │ │ ├── task_dialog.py │ │ ├── task_manager.py │ │ ├── task_picker_dialog.py │ │ ├── time_log_dialog.py │ │ ├── time_tracker.py │ │ ├── user_dialog.py │ │ ├── version_dialog.py │ │ ├── version_mover.py │ │ └── version_updater.py │ ├── fonts │ │ └── FontAwesome.otf │ ├── images │ │ ├── 3de4.png │ │ ├── 3dsmax.jpg │ │ ├── 3dsmax.png │ │ ├── 3dsmax2008.png │ │ ├── 3dsmax2014.png │ │ ├── 3dsmax2015.png │ │ ├── 3dsmax2016.png │ │ ├── 3dsmax2017.png │ │ ├── DaVinciResolve.png │ │ ├── app_icon.png │ │ ├── arnold.png │ │ ├── arnold2.png │ │ ├── blender.png │ │ ├── blender2.83.png │ │ ├── blender2.90.png │ │ ├── blender2.91.png │ │ ├── blender2.92.png │ │ ├── blender2.93.png │ │ ├── blender2.94.png │ │ ├── blender3.0.png │ │ ├── blender3.1.png │ │ ├── blender3.2.png │ │ ├── fusion.png │ │ ├── fusion16.0.png │ │ ├── fusion16.1.png │ │ ├── fusion16.2.png │ │ ├── fusion17.0.png │ │ ├── fusion17.1.png │ │ ├── fusion17.2.png │ │ ├── fusion17.3.png │ │ ├── fusion17.4.png │ │ ├── fusion18.0.png │ │ ├── fusion6.png │ │ ├── fusion9.png │ │ ├── houdini.png │ │ ├── houdini14.0.png │ │ ├── houdini16.0.png │ │ ├── houdini16.5.png │ │ ├── houdini17.0.png │ │ ├── houdini17.5.png │ │ ├── houdini18.0.png │ │ ├── houdini18.5.png │ │ ├── houdini19.0.png │ │ ├── houdini19.5.png │ │ ├── maya.png │ │ ├── maya2012.png │ │ ├── maya2014.png │ │ ├── maya2017.png │ │ ├── maya2018.png │ │ ├── maya2019.png │ │ ├── maya2020.png │ │ ├── maya2022.png │ │ ├── motionBuilder.jpg │ │ ├── mudbox.jpg │ │ ├── nuke.png │ │ ├── nuke10.0.png │ │ ├── nuke10.png │ │ ├── nukeicononblack.jpg │ │ ├── photoshop.png │ │ ├── resolve17.0.png │ │ ├── resolve17.1.png │ │ ├── resolve17.2.png │ │ ├── resolve17.3.png │ │ ├── resolve17.4.png │ │ ├── resolve18.0.png │ │ ├── smoke.jpg │ │ ├── softimage.jpg │ │ ├── stalkerpyramid.png │ │ └── zbrush.png │ ├── lib.py │ ├── menus │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── task.py │ │ └── version.py │ ├── scripts │ │ ├── __init__.py │ │ ├── avid.py │ │ ├── blender.py │ │ ├── fusion.py │ │ ├── houdini.py │ │ ├── max.py │ │ ├── maya.py │ │ ├── motion_builder.py │ │ ├── nuke_ui.py │ │ ├── photoshop.py │ │ └── resolve.py │ ├── styles │ │ └── __init__.py │ ├── testing.py │ ├── ui_compiler.py │ ├── utils.py │ ├── views │ │ ├── __init__.py │ │ ├── task.py │ │ └── version.py │ └── widgets │ │ ├── __init__.py │ │ ├── button.py │ │ ├── calendar_widget.py │ │ ├── entity_notes.py │ │ ├── entity_thumbnail.py │ │ ├── image_format.py │ │ ├── note.py │ │ ├── page.py │ │ ├── project.py │ │ ├── resource_info.py │ │ ├── responsible_info.py │ │ ├── review.py │ │ ├── scene.py │ │ ├── sequence.py │ │ ├── shot.py │ │ ├── task_dashboard.py │ │ ├── task_detail.py │ │ ├── task_status_label.py │ │ ├── task_timing.py │ │ ├── task_version_usage_info.py │ │ ├── timing.py │ │ ├── user_page.py │ │ └── version.py │ ├── utils │ ├── __init__.py │ ├── archive.py │ ├── migrate.py │ ├── progress.py │ ├── report.py │ └── task_hierarchy_io.py │ └── version.py └── tests ├── __init__.py ├── arnold ├── __init__.py ├── test_base85.py ├── test_renderLayerManager.py └── test_speed.py ├── conftest.py ├── dcc ├── __init__.py ├── conftest.py ├── maya │ ├── __init__.py │ ├── conftest.py │ ├── test_ai2rs.py │ ├── test_archiver.py │ ├── test_asset_migration_tool.py │ ├── test_color_management_configurator.py │ ├── test_data │ │ └── texture.png │ ├── test_file_ref_repr.py │ ├── test_fix_reference_namespace.py │ ├── test_maya.py │ ├── test_maya_reference.py │ ├── test_previs.py │ ├── test_publisher.py │ ├── test_render_slicer.py │ ├── test_repr_tools.py │ └── utils.py ├── test_DCCBase.py ├── test_external.py └── test_repo_vars.py ├── extension ├── __init__.py └── maya.py ├── previs ├── __init__.py ├── test_clip.py ├── test_data │ ├── test_v001.edl │ ├── test_v001.xml │ ├── test_v002.edl │ ├── test_v002.xml │ ├── test_v003.edl │ ├── test_v003.xml │ └── test_v004.edl ├── test_duration_mixin.py ├── test_file.py ├── test_media.py ├── test_name_mixin.py ├── test_rate.py ├── test_sequence.py ├── test_sequence_manager_extension.py ├── test_sequencer_extension.py ├── test_shot_extension.py ├── test_track.py └── test_video.py ├── rig ├── __init__.py ├── test_joint.py └── test_limb.py ├── test_publishers.py ├── test_recent.py ├── test_repr.py ├── test_setup.py ├── ui ├── __init__.py ├── asset_migration_tool │ ├── conftest.py │ └── test_entity_storage.py ├── test_edl_importer.py ├── test_progress_dialog.py ├── test_reference_editor.py ├── test_uiCompiler.py ├── test_version_creator.py ├── test_version_mover.py └── test_version_updater.py └── utils ├── __init__.py ├── data ├── LDAP_Data.json ├── LDAP_server_entries.json ├── LDAP_server_info.json ├── LDAP_server_schema.json ├── test_template.json ├── test_template2.json ├── test_template3.json ├── test_template4.json ├── test_template5.json └── test_template6.json ├── test_auth.py └── test_task_hierarchy_io.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | src/anima/VERSION -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_maya_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/run_maya_tests -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/setup.py -------------------------------------------------------------------------------- /src/anima/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0.dev0 -------------------------------------------------------------------------------- /src/anima/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/__init__.py -------------------------------------------------------------------------------- /src/anima/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/config.py -------------------------------------------------------------------------------- /src/anima/dcc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/avid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/avid.py -------------------------------------------------------------------------------- /src/anima/dcc/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/base.py -------------------------------------------------------------------------------- /src/anima/dcc/blackmagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blackmagic.py -------------------------------------------------------------------------------- /src/anima/dcc/blender/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blender/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/blender/addons/anima_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blender/addons/anima_toolbox.py -------------------------------------------------------------------------------- /src/anima/dcc/blender/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blender/auxiliary.py -------------------------------------------------------------------------------- /src/anima/dcc/blender/curve_to_particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blender/curve_to_particle.py -------------------------------------------------------------------------------- /src/anima/dcc/blender/reviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blender/reviewer.py -------------------------------------------------------------------------------- /src/anima/dcc/blender/toolbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blender/toolbox/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/blender/toolbox/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blender/toolbox/general.py -------------------------------------------------------------------------------- /src/anima/dcc/blender/toolbox/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/blender/toolbox/render.py -------------------------------------------------------------------------------- /src/anima/dcc/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/external.py -------------------------------------------------------------------------------- /src/anima/dcc/fusion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaContrast.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaContrast.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaFireflyHunter.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaFireflyHunter.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaFireflyHunter2.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaFireflyHunter2.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaLightWrap.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaLightWrap.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaMotionVectorErode.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaMotionVectorErode.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaSTMapGenerator.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaSTMapGenerator.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaSlate.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaSlate.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaVelLimiter.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaVelLimiter.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaWhiteBalance.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaWhiteBalance.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaZErode.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaZErode.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/config/Macros/AnimaZFixer.setting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/config/Macros/AnimaZFixer.setting -------------------------------------------------------------------------------- /src/anima/dcc/fusion/data/Slate.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/data/Slate.comp -------------------------------------------------------------------------------- /src/anima/dcc/fusion/render_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/render_merger.py -------------------------------------------------------------------------------- /src/anima/dcc/fusion/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/toolbox.py -------------------------------------------------------------------------------- /src/anima/dcc/fusion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/fusion/utils.py -------------------------------------------------------------------------------- /src/anima/dcc/houdini/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/houdini/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/archive.py -------------------------------------------------------------------------------- /src/anima/dcc/houdini/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/auxiliary.py -------------------------------------------------------------------------------- /src/anima/dcc/houdini/crowd_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/crowd_tools.py -------------------------------------------------------------------------------- /src/anima/dcc/houdini/menus/MainMenuCommon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/menus/MainMenuCommon.xml -------------------------------------------------------------------------------- /src/anima/dcc/houdini/otls/lidar_data_exporter.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/otls/lidar_data_exporter.hdalc -------------------------------------------------------------------------------- /src/anima/dcc/houdini/otls/preserve_sheets.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/otls/preserve_sheets.hdalc -------------------------------------------------------------------------------- /src/anima/dcc/houdini/otls/spring_force_particle_separation.hdalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/otls/spring_force_particle_separation.hdalc -------------------------------------------------------------------------------- /src/anima/dcc/houdini/point_cloud_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/point_cloud_exporter.py -------------------------------------------------------------------------------- /src/anima/dcc/houdini/python_panels/default.pypanel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/python_panels/default.pypanel -------------------------------------------------------------------------------- /src/anima/dcc/houdini/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/render.py -------------------------------------------------------------------------------- /src/anima/dcc/houdini/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/toolbox.py -------------------------------------------------------------------------------- /src/anima/dcc/houdini/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/houdini/utils.py -------------------------------------------------------------------------------- /src/anima/dcc/max/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/max/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/max/vray2rs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/max/vray2rs.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/afanasy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/afanasy.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/afanasy_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/afanasy_publisher.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/ai2rs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/ai2rs.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/animation.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/archive.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/asset_migration_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/asset_migration_tool.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/auxiliary.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/camera_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/camera_tools.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/FileMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/FileMenu.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/ModObjectsMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/ModObjectsMenu.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/SequenceEdMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/SequenceEdMenu.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/doPlayblastSequenceArgList.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/doPlayblastSequenceArgList.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/doPlayblastShotArgList.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/doPlayblastShotArgList.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/graphEditorPanel.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/graphEditorPanel.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/manipScaleValues.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/manipScaleValues.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/mentalrayCustomNodeClass.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/mentalrayCustomNodeClass.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/performCamera.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/performCamera.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/performPlayblast.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/performPlayblast.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/performPlayblastShot.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/performPlayblastShot.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2014/scaleMarkingMenuImpl.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2014/scaleMarkingMenuImpl.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2017/FileMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2017/FileMenu.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2017/manipScaleProperties.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2017/manipScaleProperties.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2017/performPlayblast.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2017/performPlayblast.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2017/performPlayblastSequence.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2017/performPlayblastSequence.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2017/performPlayblastShot.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2017/performPlayblastShot.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2017/scaleMarkingMenuImpl.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2017/scaleMarkingMenuImpl.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2018/FileMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2018/FileMenu.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2018/performPlayblast.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2018/performPlayblast.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2018/performPlayblastSequence.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2018/performPlayblastSequence.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2018/performPlayblastShot.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2018/performPlayblastShot.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2019/FileMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2019/FileMenu.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2019/performPlayblast.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2019/performPlayblast.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2019/performPlayblastSequence.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2019/performPlayblastSequence.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2019/performPlayblastShot.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2019/performPlayblastShot.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2020/FileMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2020/FileMenu.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2020/performPlayblast.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2020/performPlayblast.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2020/performPlayblastSequence.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2020/performPlayblastSequence.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2020/performPlayblastShot.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2020/performPlayblastShot.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2022/FileMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2022/FileMenu.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2022/performPlayblast.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2022/performPlayblast.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2022/performPlayblastSequence.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2022/performPlayblastSequence.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/2022/performPlayblastShot.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/2022/performPlayblastShot.mel -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/arnold_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/arnold_patches.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/config/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/config/userSetup.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/extension.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/fix_bound_joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/fix_bound_joint.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/general.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/hierarchy_instancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/hierarchy_instancer.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/mash_bake_instancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/mash_bake_instancer.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/modeling.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/picker.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/pivot_switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/pivot_switcher.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/plugins/closestPointOnCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/plugins/closestPointOnCurve.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/plugins/oyBallisticRuler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/plugins/oyBallisticRuler.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/plugins/oyCenterOfMass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/plugins/oyCenterOfMass.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/plugins/oyClosestPointOnMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/plugins/oyClosestPointOnMesh.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/plugins/oyTrajectoryDrawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/plugins/oyTrajectoryDrawer.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/plugins/randomizeUVDeformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/plugins/randomizeUVDeformer.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/previs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/previs.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/publish.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/redshift.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/reference.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/relax_vertices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/relax_vertices.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/render.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/repr_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/repr_tools.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/rigging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/rigging.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/selection_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/selection_manager.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/toolbox.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/ui.py -------------------------------------------------------------------------------- /src/anima/dcc/mayaEnv/vertigo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/mayaEnv/vertigo.py -------------------------------------------------------------------------------- /src/anima/dcc/motion_builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/motion_builder/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/motion_builder/clip_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/motion_builder/clip_manager.py -------------------------------------------------------------------------------- /src/anima/dcc/nukeEnv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/nukeEnv/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/nukeEnv/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/nukeEnv/auxiliary.py -------------------------------------------------------------------------------- /src/anima/dcc/nukeEnv/config/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/nukeEnv/config/init.py -------------------------------------------------------------------------------- /src/anima/dcc/nukeEnv/config/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/nukeEnv/config/menu.py -------------------------------------------------------------------------------- /src/anima/dcc/photoshop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/photoshop/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/photoshop/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anima/dcc/photoshop/config/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/photoshop/config/install.py -------------------------------------------------------------------------------- /src/anima/dcc/photoshop/config/scripts/_VERSION_CREATOR_.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/photoshop/config/scripts/_VERSION_CREATOR_.jsx -------------------------------------------------------------------------------- /src/anima/dcc/photoshop/config/version_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/photoshop/config/version_creator.py -------------------------------------------------------------------------------- /src/anima/dcc/resolve/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anima/dcc/resolve/conformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/resolve/conformer.py -------------------------------------------------------------------------------- /src/anima/dcc/resolve/shot_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/resolve/shot_tools.py -------------------------------------------------------------------------------- /src/anima/dcc/resolve/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/resolve/template.py -------------------------------------------------------------------------------- /src/anima/dcc/resolve/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/resolve/toolbox.py -------------------------------------------------------------------------------- /src/anima/dcc/tde4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/tde4/__init__.py -------------------------------------------------------------------------------- /src/anima/dcc/tde4/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/tde4/toolbox.py -------------------------------------------------------------------------------- /src/anima/dcc/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/dcc/testing.py -------------------------------------------------------------------------------- /src/anima/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/edit.py -------------------------------------------------------------------------------- /src/anima/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/exc.py -------------------------------------------------------------------------------- /src/anima/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/extension.py -------------------------------------------------------------------------------- /src/anima/mocap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anima/mocap/xsens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/mocap/xsens.py -------------------------------------------------------------------------------- /src/anima/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/perf.py -------------------------------------------------------------------------------- /src/anima/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/publish.py -------------------------------------------------------------------------------- /src/anima/recent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/recent.py -------------------------------------------------------------------------------- /src/anima/render/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/.gitignore -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/CHANGELOG -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/H2A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/H2A.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/H2A_ROP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/H2A_ROP.h -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/README -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/README.md -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/ROP_h2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/ROP_h2a.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/Support_files/ROP_H2A_ROP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/Support_files/ROP_H2A_ROP.svg -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/Support_files/h2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/Support_files/h2a.png -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/Support_files/h2a_rop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/Support_files/h2a_rop.txt -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/asstoc_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/asstoc_writer.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/base_85.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/base_85.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/base_85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/base_85.h -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/compiled_plugins/H2A_14.0.291.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/compiled_plugins/H2A_14.0.291.dll -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/compiled_plugins/H2A_15.0.347.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/compiled_plugins/H2A_15.0.347.dll -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/compiled_plugins/H2A_16.0.557.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/compiled_plugins/H2A_16.0.557.dll -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/compiled_plugins/H2A_16.0.736.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/compiled_plugins/H2A_16.0.736.dll -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/curve_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/curve_write.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/h2a_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/h2a_io.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/h2a_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/h2a_io.h -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/light_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/light_write.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/point_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/point_write.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/H2A/poly_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/H2A/poly_write.cpp -------------------------------------------------------------------------------- /src/anima/render/arnold/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/anima/render/arnold/base85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/base85.py -------------------------------------------------------------------------------- /src/anima/render/arnold/cBase85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/cBase85.c -------------------------------------------------------------------------------- /src/anima/render/arnold/h2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/h2a.py -------------------------------------------------------------------------------- /src/anima/render/arnold/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/arnold/light.py -------------------------------------------------------------------------------- /src/anima/render/mat_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/mat_converter.py -------------------------------------------------------------------------------- /src/anima/render/redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/render/redshift.py -------------------------------------------------------------------------------- /src/anima/representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/representation.py -------------------------------------------------------------------------------- /src/anima/rez_packages/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /src/anima/rez_packages/3de4/5.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/3de4/5.0.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/3de4/6.b3.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/3de4/6.b3.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/3de4/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/3de4/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/3de4/lib/python/open_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/3de4/lib/python/open_version.py -------------------------------------------------------------------------------- /src/anima/rez_packages/3de4/lib/python/save_as_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/3de4/lib/python/save_as_version.py -------------------------------------------------------------------------------- /src/anima/rez_packages/3de4/lib/python/ui_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/3de4/lib/python/ui_common.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/0.1.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/0.1.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/0.7.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/0.7.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/1.0.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/1.0.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/1.0.2/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/1.0.2/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/1.0.3/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/1.0.3/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/1.1.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/1.1.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/1.2.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/1.2.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/1.3.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/1.3.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/aces/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/aces/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/agx/12.3.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/agx/12.3.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/agx/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/agx/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/anima/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/anima/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/anima/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/anima/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/2.93.4/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/2.93.4/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/2.93.6/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/2.93.6/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.0.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.0.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.0.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.1.2/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.1.2/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.2.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.2.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.2.2/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.2.2/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.3.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.3.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.3.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.3.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.4.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.4.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.5.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.5.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.6.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.6.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.6.2/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.6.2/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/3.6.5/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/3.6.5/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/4.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/4.0.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/4.0.2/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/4.0.2/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/4.1.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/4.1.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/4.2.4/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/4.2.4/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/4.3.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/4.3.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/blender/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/blender/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/cgru/2.3.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/cgru/2.3.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/cgru/3.2.2/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/cgru/3.2.2/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/cgru/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/cgru/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/fusion/17.3.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/fusion/17.3.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/fusion/18.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/fusion/18.0.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/fusion/18.0.4/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/fusion/18.0.4/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/fusion/18.1.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/fusion/18.1.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/fusion/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/fusion/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/github_project_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/github_project_builder.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/18.5.759/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/18.5.759/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/19.0.383/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/19.0.383/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/19.0.561/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/19.0.561/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/19.0.589/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/19.0.589/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/19.0.622/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/19.0.622/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/19.5.368/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/19.5.368/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/19.5.403/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/19.5.403/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/19.5.435/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/19.5.435/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/20.5.410/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/20.5.410/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/houdini/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/houdini/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya/2022.3.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya/2022.3.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya/2022.4.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya/2022.4.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya/2023.2.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya/2023.2.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya/2025.3.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya/2025.3.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya_usd/0.19.0/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya_usd/0.19.0/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya_usd/0.19.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya_usd/0.19.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya_usd/0.30.0/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya_usd/0.30.0/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/maya_usd/0.30.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/maya_usd/0.30.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/ocio/1.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/ocio/1.0.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/ocio/2.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/ocio/2.0.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/ocio/2.1.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/ocio/2.1.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/ocio/2.2.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/ocio/2.2.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/ocio/2.3.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/ocio/2.3.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/ocio/2.4.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/ocio/2.4.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/ocio/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/ocio/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/pymel/1.5.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/pymel/1.5.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/pyside2/5.14.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/pyside2/5.14.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/pyside2/5.15.2/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/pyside2/5.15.2/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/pyside2/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/pyside2/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/pyside6/6.4.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/pyside6/6.4.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/pyside6/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/pyside6/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/2.7.11/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/2.7.11/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.10.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.10.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.11.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.11.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.12.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.12.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.13.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.13.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.6.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.6.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.7.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.7.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.7.4/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.7.4/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.8.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.8.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/3.9.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/3.9.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/python/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/python/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/qlib/0.2.207/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/qlib/0.2.207/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/qlib/0.2.213/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/qlib/0.2.213/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/qlib/0.2.263/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/qlib/0.2.263/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/quixel_megascan/0.9.9/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/quixel_megascan/0.9.9/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/quixel_megascan/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/quixel_megascan/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/2025.0.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/2025.0.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/2025.2.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/2025.2.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/2025.2.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/2025.2.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/3.0.47/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/3.0.47/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/3.0.59/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/3.0.59/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/3.0.67/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/3.0.67/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/3.5.07/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/3.5.07/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/3.5.08/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/3.5.08/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/3.5.09/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/3.5.09/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/3.5.10/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/3.5.10/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/redshift/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/redshift/build.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/17.4.3/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/17.4.3/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/18.0.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/18.0.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/18.0.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/18.0.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/18.0.2/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/18.0.2/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/18.0.3/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/18.0.3/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/18.1.0/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/18.1.0/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/18.1.1/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/18.1.1/package.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/bin/resolve_python: -------------------------------------------------------------------------------- 1 | #!{shebang.sh} 2 | 3 | python -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/bin/resolve_toolbox: -------------------------------------------------------------------------------- 1 | #!{shebang.sh} 2 | 3 | python $REZ_RESOLVE_ROOT/bin/resolve_toolbox.py 4 | -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/bin/resolve_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/bin/resolve_toolbox.py -------------------------------------------------------------------------------- /src/anima/rez_packages/resolve/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rez_packages/resolve/build.py -------------------------------------------------------------------------------- /src/anima/rig/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/anima/rig/character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/character.py -------------------------------------------------------------------------------- /src/anima/rig/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/controllers.py -------------------------------------------------------------------------------- /src/anima/rig/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/curve.py -------------------------------------------------------------------------------- /src/anima/rig/drawNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/drawNode.py -------------------------------------------------------------------------------- /src/anima/rig/joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/joint.py -------------------------------------------------------------------------------- /src/anima/rig/limb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/limb.py -------------------------------------------------------------------------------- /src/anima/rig/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/network.py -------------------------------------------------------------------------------- /src/anima/rig/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/nodes.py -------------------------------------------------------------------------------- /src/anima/rig/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/shapes.py -------------------------------------------------------------------------------- /src/anima/rig/utilityFuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/rig/utilityFuncs.py -------------------------------------------------------------------------------- /src/anima/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/testing.py -------------------------------------------------------------------------------- /src/anima/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/texture.py -------------------------------------------------------------------------------- /src/anima/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/__init__.py -------------------------------------------------------------------------------- /src/anima/ui/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/base.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anima/ui/dialogs/archiver_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/archiver_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/asset_migration_tool_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/asset_migration_tool_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/create_shot_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/create_shot_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/edl_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/edl_importer.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/filename_template_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/filename_template_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/image_format_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/image_format_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/login_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/login_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/progress_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/progress_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/project_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/project_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/project_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/project_manager.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/project_manager_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/project_manager_old.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/project_users_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/project_users_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/publish_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/publish_checker.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/reference_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/reference_editor.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/repository_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/repository_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/review_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/review_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/structure_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/structure_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/task_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/task_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/task_manager.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/task_picker_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/task_picker_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/time_log_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/time_log_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/time_tracker.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/anima/ui/dialogs/user_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/user_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/version_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/version_dialog.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/version_mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/version_mover.py -------------------------------------------------------------------------------- /src/anima/ui/dialogs/version_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/dialogs/version_updater.py -------------------------------------------------------------------------------- /src/anima/ui/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/anima/ui/images/3de4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/3de4.png -------------------------------------------------------------------------------- /src/anima/ui/images/3dsmax.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/3dsmax.jpg -------------------------------------------------------------------------------- /src/anima/ui/images/3dsmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/3dsmax.png -------------------------------------------------------------------------------- /src/anima/ui/images/3dsmax2008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/3dsmax2008.png -------------------------------------------------------------------------------- /src/anima/ui/images/3dsmax2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/3dsmax2014.png -------------------------------------------------------------------------------- /src/anima/ui/images/3dsmax2015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/3dsmax2015.png -------------------------------------------------------------------------------- /src/anima/ui/images/3dsmax2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/3dsmax2016.png -------------------------------------------------------------------------------- /src/anima/ui/images/3dsmax2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/3dsmax2017.png -------------------------------------------------------------------------------- /src/anima/ui/images/DaVinciResolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/DaVinciResolve.png -------------------------------------------------------------------------------- /src/anima/ui/images/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/app_icon.png -------------------------------------------------------------------------------- /src/anima/ui/images/arnold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/arnold.png -------------------------------------------------------------------------------- /src/anima/ui/images/arnold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/arnold2.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender2.83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender2.83.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender2.90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender2.90.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender2.91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender2.91.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender2.92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender2.92.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender2.93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender2.93.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender2.94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender2.94.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender3.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender3.1.png -------------------------------------------------------------------------------- /src/anima/ui/images/blender3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/blender3.2.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion16.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion16.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion16.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion16.1.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion16.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion16.2.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion17.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion17.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion17.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion17.1.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion17.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion17.2.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion17.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion17.3.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion17.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion17.4.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion18.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion18.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion6.png -------------------------------------------------------------------------------- /src/anima/ui/images/fusion9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/fusion9.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini14.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini14.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini16.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini16.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini16.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini16.5.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini17.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini17.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini17.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini17.5.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini18.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini18.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini18.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini18.5.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini19.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini19.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/houdini19.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/houdini19.5.png -------------------------------------------------------------------------------- /src/anima/ui/images/maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/maya.png -------------------------------------------------------------------------------- /src/anima/ui/images/maya2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/maya2012.png -------------------------------------------------------------------------------- /src/anima/ui/images/maya2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/maya2014.png -------------------------------------------------------------------------------- /src/anima/ui/images/maya2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/maya2017.png -------------------------------------------------------------------------------- /src/anima/ui/images/maya2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/maya2018.png -------------------------------------------------------------------------------- /src/anima/ui/images/maya2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/maya2019.png -------------------------------------------------------------------------------- /src/anima/ui/images/maya2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/maya2020.png -------------------------------------------------------------------------------- /src/anima/ui/images/maya2022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/maya2022.png -------------------------------------------------------------------------------- /src/anima/ui/images/motionBuilder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/motionBuilder.jpg -------------------------------------------------------------------------------- /src/anima/ui/images/mudbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/mudbox.jpg -------------------------------------------------------------------------------- /src/anima/ui/images/nuke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/nuke.png -------------------------------------------------------------------------------- /src/anima/ui/images/nuke10.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/nuke10.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/nuke10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/nuke10.png -------------------------------------------------------------------------------- /src/anima/ui/images/nukeicononblack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/nukeicononblack.jpg -------------------------------------------------------------------------------- /src/anima/ui/images/photoshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/photoshop.png -------------------------------------------------------------------------------- /src/anima/ui/images/resolve17.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/resolve17.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/resolve17.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/resolve17.1.png -------------------------------------------------------------------------------- /src/anima/ui/images/resolve17.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/resolve17.2.png -------------------------------------------------------------------------------- /src/anima/ui/images/resolve17.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/resolve17.3.png -------------------------------------------------------------------------------- /src/anima/ui/images/resolve17.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/resolve17.4.png -------------------------------------------------------------------------------- /src/anima/ui/images/resolve18.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/resolve18.0.png -------------------------------------------------------------------------------- /src/anima/ui/images/smoke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/smoke.jpg -------------------------------------------------------------------------------- /src/anima/ui/images/softimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/softimage.jpg -------------------------------------------------------------------------------- /src/anima/ui/images/stalkerpyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/stalkerpyramid.png -------------------------------------------------------------------------------- /src/anima/ui/images/zbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/images/zbrush.png -------------------------------------------------------------------------------- /src/anima/ui/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/lib.py -------------------------------------------------------------------------------- /src/anima/ui/menus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/menus/__init__.py -------------------------------------------------------------------------------- /src/anima/ui/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anima/ui/models/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/models/task.py -------------------------------------------------------------------------------- /src/anima/ui/models/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/models/version.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/__init__.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/avid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/avid.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/blender.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/fusion.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/houdini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/houdini.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/max.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/maya.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/motion_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/motion_builder.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/nuke_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/nuke_ui.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/photoshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/photoshop.py -------------------------------------------------------------------------------- /src/anima/ui/scripts/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/scripts/resolve.py -------------------------------------------------------------------------------- /src/anima/ui/styles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/styles/__init__.py -------------------------------------------------------------------------------- /src/anima/ui/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/testing.py -------------------------------------------------------------------------------- /src/anima/ui/ui_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/ui_compiler.py -------------------------------------------------------------------------------- /src/anima/ui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/utils.py -------------------------------------------------------------------------------- /src/anima/ui/views/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/anima/ui/views/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/views/task.py -------------------------------------------------------------------------------- /src/anima/ui/views/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/views/version.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/__init__.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/button.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/calendar_widget.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/anima/ui/widgets/entity_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/entity_notes.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/entity_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/entity_thumbnail.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/image_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/image_format.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/note.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/page.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/project.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/resource_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/resource_info.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/responsible_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/responsible_info.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/review.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/scene.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/sequence.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/shot.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/task_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/task_dashboard.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/task_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/task_detail.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/task_status_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/task_status_label.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/task_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/task_timing.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/task_version_usage_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/task_version_usage_info.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/timing.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/user_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/user_page.py -------------------------------------------------------------------------------- /src/anima/ui/widgets/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/ui/widgets/version.py -------------------------------------------------------------------------------- /src/anima/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/utils/__init__.py -------------------------------------------------------------------------------- /src/anima/utils/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/utils/archive.py -------------------------------------------------------------------------------- /src/anima/utils/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/utils/migrate.py -------------------------------------------------------------------------------- /src/anima/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/utils/progress.py -------------------------------------------------------------------------------- /src/anima/utils/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/utils/report.py -------------------------------------------------------------------------------- /src/anima/utils/task_hierarchy_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/utils/task_hierarchy_io.py -------------------------------------------------------------------------------- /src/anima/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/src/anima/version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/arnold/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/arnold/test_base85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/arnold/test_base85.py -------------------------------------------------------------------------------- /tests/arnold/test_renderLayerManager.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/arnold/test_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/arnold/test_speed.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/dcc/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/dcc/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dcc/maya/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dcc/maya/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/conftest.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_ai2rs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_ai2rs.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_archiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_archiver.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_asset_migration_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_asset_migration_tool.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_color_management_configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_color_management_configurator.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_data/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_data/texture.png -------------------------------------------------------------------------------- /tests/dcc/maya/test_file_ref_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_file_ref_repr.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_fix_reference_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_fix_reference_namespace.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_maya.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_maya_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_maya_reference.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_previs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_previs.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_publisher.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_render_slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_render_slicer.py -------------------------------------------------------------------------------- /tests/dcc/maya/test_repr_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/test_repr_tools.py -------------------------------------------------------------------------------- /tests/dcc/maya/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/maya/utils.py -------------------------------------------------------------------------------- /tests/dcc/test_DCCBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/test_DCCBase.py -------------------------------------------------------------------------------- /tests/dcc/test_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/test_external.py -------------------------------------------------------------------------------- /tests/dcc/test_repo_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/dcc/test_repo_vars.py -------------------------------------------------------------------------------- /tests/extension/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/extension/__init__.py -------------------------------------------------------------------------------- /tests/extension/maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/extension/maya.py -------------------------------------------------------------------------------- /tests/previs/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /tests/previs/test_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_clip.py -------------------------------------------------------------------------------- /tests/previs/test_data/test_v001.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_data/test_v001.edl -------------------------------------------------------------------------------- /tests/previs/test_data/test_v001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_data/test_v001.xml -------------------------------------------------------------------------------- /tests/previs/test_data/test_v002.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_data/test_v002.edl -------------------------------------------------------------------------------- /tests/previs/test_data/test_v002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_data/test_v002.xml -------------------------------------------------------------------------------- /tests/previs/test_data/test_v003.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_data/test_v003.edl -------------------------------------------------------------------------------- /tests/previs/test_data/test_v003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_data/test_v003.xml -------------------------------------------------------------------------------- /tests/previs/test_data/test_v004.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_data/test_v004.edl -------------------------------------------------------------------------------- /tests/previs/test_duration_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_duration_mixin.py -------------------------------------------------------------------------------- /tests/previs/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_file.py -------------------------------------------------------------------------------- /tests/previs/test_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_media.py -------------------------------------------------------------------------------- /tests/previs/test_name_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_name_mixin.py -------------------------------------------------------------------------------- /tests/previs/test_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_rate.py -------------------------------------------------------------------------------- /tests/previs/test_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_sequence.py -------------------------------------------------------------------------------- /tests/previs/test_sequence_manager_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_sequence_manager_extension.py -------------------------------------------------------------------------------- /tests/previs/test_sequencer_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_sequencer_extension.py -------------------------------------------------------------------------------- /tests/previs/test_shot_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_shot_extension.py -------------------------------------------------------------------------------- /tests/previs/test_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_track.py -------------------------------------------------------------------------------- /tests/previs/test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/previs/test_video.py -------------------------------------------------------------------------------- /tests/rig/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/rig/test_joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/rig/test_joint.py -------------------------------------------------------------------------------- /tests/rig/test_limb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/rig/test_limb.py -------------------------------------------------------------------------------- /tests/test_publishers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/test_publishers.py -------------------------------------------------------------------------------- /tests/test_recent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/test_recent.py -------------------------------------------------------------------------------- /tests/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/test_repr.py -------------------------------------------------------------------------------- /tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/test_setup.py -------------------------------------------------------------------------------- /tests/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ui/asset_migration_tool/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/asset_migration_tool/conftest.py -------------------------------------------------------------------------------- /tests/ui/asset_migration_tool/test_entity_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/asset_migration_tool/test_entity_storage.py -------------------------------------------------------------------------------- /tests/ui/test_edl_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/test_edl_importer.py -------------------------------------------------------------------------------- /tests/ui/test_progress_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/test_progress_dialog.py -------------------------------------------------------------------------------- /tests/ui/test_reference_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/test_reference_editor.py -------------------------------------------------------------------------------- /tests/ui/test_uiCompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/test_uiCompiler.py -------------------------------------------------------------------------------- /tests/ui/test_version_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/test_version_creator.py -------------------------------------------------------------------------------- /tests/ui/test_version_mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/test_version_mover.py -------------------------------------------------------------------------------- /tests/ui/test_version_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/ui/test_version_updater.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/data/LDAP_Data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/LDAP_Data.json -------------------------------------------------------------------------------- /tests/utils/data/LDAP_server_entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/LDAP_server_entries.json -------------------------------------------------------------------------------- /tests/utils/data/LDAP_server_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/LDAP_server_info.json -------------------------------------------------------------------------------- /tests/utils/data/LDAP_server_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/LDAP_server_schema.json -------------------------------------------------------------------------------- /tests/utils/data/test_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/test_template.json -------------------------------------------------------------------------------- /tests/utils/data/test_template2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/test_template2.json -------------------------------------------------------------------------------- /tests/utils/data/test_template3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/test_template3.json -------------------------------------------------------------------------------- /tests/utils/data/test_template4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/test_template4.json -------------------------------------------------------------------------------- /tests/utils/data/test_template5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/test_template5.json -------------------------------------------------------------------------------- /tests/utils/data/test_template6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/data/test_template6.json -------------------------------------------------------------------------------- /tests/utils/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/test_auth.py -------------------------------------------------------------------------------- /tests/utils/test_task_hierarchy_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoyilmaz/anima/HEAD/tests/utils/test_task_hierarchy_io.py --------------------------------------------------------------------------------