├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── lightgroup_helper.iml ├── misc.xml └── modules.xml ├── README.md ├── __init__.py ├── op_set_lightgroup.py ├── op_set_obj.py ├── res ├── 1.png └── 2.jpg ├── set_comp_nodes.py └── ui.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/lightgroup_helper.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/.idea/lightgroup_helper.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/__init__.py -------------------------------------------------------------------------------- /op_set_lightgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/op_set_lightgroup.py -------------------------------------------------------------------------------- /op_set_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/op_set_obj.py -------------------------------------------------------------------------------- /res/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/res/1.png -------------------------------------------------------------------------------- /res/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/res/2.jpg -------------------------------------------------------------------------------- /set_comp_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/set_comp_nodes.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atticus-lv/lightgroup_helper/HEAD/ui.py --------------------------------------------------------------------------------