├── .gitattributes ├── .gitignore ├── README.md ├── __init__.py ├── animation ├── __init__.py ├── frame_current.py ├── jump_frames.py ├── motion_paths.py └── timeline_extra_info.py ├── misc ├── __init__.py ├── color_management.py ├── dopesheet_grapheditor.py ├── dupli_group_id.py ├── sequencer_extra_info.py └── toggle_wire.py ├── modeling ├── __init__.py └── symmetry_tools.py ├── node_editor ├── __init__.py ├── display_image.py ├── id_panel.py ├── node_shader_extra.py ├── node_stats.py ├── normal_node.py ├── simplify_nodes.py ├── switch_material.py └── templates │ ├── __init__.py │ ├── vectorblur.py │ └── vignette.py ├── prefs.py ├── render ├── __init__.py ├── border_camera.py ├── final_resolution.py ├── meshlight_add.py ├── meshlight_select.py ├── only_render.py ├── passepartout.py ├── remember_layers.py ├── render_output_z.py ├── samples_scene.py └── unsimplify.py ├── scene ├── __init__.py ├── current_blend.py ├── debug.py ├── goto_library.py ├── material_remove_unassigned.py ├── refresh.py ├── save_reload.py └── stats.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/__init__.py -------------------------------------------------------------------------------- /animation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animation/frame_current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/animation/frame_current.py -------------------------------------------------------------------------------- /animation/jump_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/animation/jump_frames.py -------------------------------------------------------------------------------- /animation/motion_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/animation/motion_paths.py -------------------------------------------------------------------------------- /animation/timeline_extra_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/animation/timeline_extra_info.py -------------------------------------------------------------------------------- /misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/color_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/misc/color_management.py -------------------------------------------------------------------------------- /misc/dopesheet_grapheditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/misc/dopesheet_grapheditor.py -------------------------------------------------------------------------------- /misc/dupli_group_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/misc/dupli_group_id.py -------------------------------------------------------------------------------- /misc/sequencer_extra_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/misc/sequencer_extra_info.py -------------------------------------------------------------------------------- /misc/toggle_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/misc/toggle_wire.py -------------------------------------------------------------------------------- /modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modeling/symmetry_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/modeling/symmetry_tools.py -------------------------------------------------------------------------------- /node_editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_editor/display_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/display_image.py -------------------------------------------------------------------------------- /node_editor/id_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/id_panel.py -------------------------------------------------------------------------------- /node_editor/node_shader_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/node_shader_extra.py -------------------------------------------------------------------------------- /node_editor/node_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/node_stats.py -------------------------------------------------------------------------------- /node_editor/normal_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/normal_node.py -------------------------------------------------------------------------------- /node_editor/simplify_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/simplify_nodes.py -------------------------------------------------------------------------------- /node_editor/switch_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/switch_material.py -------------------------------------------------------------------------------- /node_editor/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/templates/__init__.py -------------------------------------------------------------------------------- /node_editor/templates/vectorblur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/templates/vectorblur.py -------------------------------------------------------------------------------- /node_editor/templates/vignette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/node_editor/templates/vignette.py -------------------------------------------------------------------------------- /prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/prefs.py -------------------------------------------------------------------------------- /render/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/border_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/border_camera.py -------------------------------------------------------------------------------- /render/final_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/final_resolution.py -------------------------------------------------------------------------------- /render/meshlight_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/meshlight_add.py -------------------------------------------------------------------------------- /render/meshlight_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/meshlight_select.py -------------------------------------------------------------------------------- /render/only_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/only_render.py -------------------------------------------------------------------------------- /render/passepartout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/passepartout.py -------------------------------------------------------------------------------- /render/remember_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/remember_layers.py -------------------------------------------------------------------------------- /render/render_output_z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/render_output_z.py -------------------------------------------------------------------------------- /render/samples_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/samples_scene.py -------------------------------------------------------------------------------- /render/unsimplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/render/unsimplify.py -------------------------------------------------------------------------------- /scene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scene/current_blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/scene/current_blend.py -------------------------------------------------------------------------------- /scene/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/scene/debug.py -------------------------------------------------------------------------------- /scene/goto_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/scene/goto_library.py -------------------------------------------------------------------------------- /scene/material_remove_unassigned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/scene/material_remove_unassigned.py -------------------------------------------------------------------------------- /scene/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/scene/refresh.py -------------------------------------------------------------------------------- /scene/save_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/scene/save_reload.py -------------------------------------------------------------------------------- /scene/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/scene/stats.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venomgfx/amaranth/HEAD/utils.py --------------------------------------------------------------------------------