├── .gitignore ├── .vscode └── c_cpp_properties.json ├── Node ├── Actuators │ ├── Linear │ │ ├── LinRail │ │ │ ├── SFX_LinRail_Data.py │ │ │ ├── SFX_LinRail_IN.py │ │ │ ├── SFX_LinRail_Model.py │ │ │ ├── SFX_LinRail_Node.py │ │ │ ├── SFX_LinRail_Op.py │ │ │ └── __init__.py │ │ ├── __init__.py │ │ ├── simplelin │ │ │ ├── SFX_simplelin_Data.py │ │ │ ├── SFX_simplelin_IN.py │ │ │ ├── SFX_simplelin_Model.py │ │ │ ├── SFX_simplelin_Node.py │ │ │ ├── SFX_simplelin_Op.py │ │ │ └── __init__.py │ │ └── telescope │ │ │ ├── SFX_Telescope_Data.py │ │ │ ├── SFX_Telescope_IN.py │ │ │ ├── SFX_Telescope_Model.py │ │ │ ├── SFX_Telescope_Node.py │ │ │ ├── SFX_Telescope_Op.py │ │ │ └── __init__.py │ ├── Rotational │ │ ├── __init__.py │ │ └── simplerot │ │ │ ├── SFX_SimpleRot_Data.py │ │ │ ├── SFX_SimpleRot_IN.py │ │ │ ├── SFX_SimpleRot_Model.py │ │ │ ├── SFX_SimpleRot_Node.py │ │ │ ├── SFX_SimpleRot_Op.py │ │ │ └── __init__.py │ ├── SFX_Actuators_Base_Data.py │ ├── SFX_Actuators_Basic_Inset.py │ ├── SFX_Actuators_Expanded_Inset.py │ ├── SFX_Digtwin_Basic_Inset.py │ ├── SFX_Digtwin_Expanded_Inset.py │ └── __init__.py ├── Clock │ ├── SFX_Clock_Data.py │ ├── SFX_Clock_IN.py │ ├── SFX_Clock_Node.py │ ├── SFX_Clock_OP.py │ └── __init__.py ├── Cues │ ├── SFX_Cues_Base_Data.py │ ├── __init__.py │ ├── secondCue │ │ ├── SFX_secondCue_Data.py │ │ ├── SFX_secondCue_IN.py │ │ ├── SFX_secondCue_Node.py │ │ ├── SFX_secondCue_Op.py │ │ └── __init__.py │ └── simpleCue │ │ ├── SFX_simpleCue_Data.py │ │ ├── SFX_simpleCue_IN.py │ │ ├── SFX_simpleCue_Node.py │ │ ├── SFX_simpleCue_Op.py │ │ └── __init__.py ├── Helpers │ ├── Adder │ │ ├── SFX_Adder_Data.py │ │ ├── SFX_Adder_IN.py │ │ ├── SFX_Adder_Node.py │ │ ├── SFX_Adder_Op.py │ │ └── __init__.py │ ├── JoyDemux │ │ ├── SFX_JoyDemux_Data.py │ │ ├── SFX_JoyDemux_IN.py │ │ ├── SFX_JoyDemux_Node.py │ │ ├── SFX_JoyDemux_Op.py │ │ ├── SFX_JoyDemux_Socket_Bool.py │ │ ├── SFX_JoyDemux_Socket_Float.py │ │ └── __init__.py │ ├── Mixer │ │ ├── SFX_Mixer_Data.py │ │ ├── SFX_Mixer_IN.py │ │ ├── SFX_Mixer_Node.py │ │ ├── SFX_Mixer_Op.py │ │ └── __init__.py │ ├── SFX_Helpers_Base_Data.py │ └── __init__.py ├── Kinematics │ ├── SFX_Kinematics_Base_Data.py │ └── __init__.py ├── SFX_Action_Props.py ├── Sensors │ ├── Joystick │ │ ├── SFX_Joy_Socket_Bool.py │ │ ├── SFX_Joy_Socket_Float.py │ │ ├── SFX_Joystick_Data.py │ │ ├── SFX_Joystick_IN.py │ │ ├── SFX_Joystick_Inset.py │ │ ├── SFX_Joystick_Node.py │ │ ├── SFX_Joystick_Op.py │ │ └── __init__.py │ ├── SFX_Sensors_Base_Data.py │ └── __init__.py ├── __init__.py └── __pycache__ │ └── __init__.cpython-37.pyc ├── NodeTree ├── SFX_NodeTree.py ├── __init__.py └── __pycache__ │ ├── __init__.cpython-37.pyc │ └── ww_NodeTree.cpython-37.pyc ├── Pictures ├── Adder1.png ├── Addern.png ├── Blender for SFX.png ├── Clock.png ├── Clock1.png ├── Clock2.png ├── Cue1.png ├── Cue2.png ├── Cue3.png ├── Cue4.png ├── Cue5.png ├── Dana_Dolly.png ├── Demux1.png ├── Demux2.png ├── Joystick17.png ├── JoystickA.png ├── JoystickB.png ├── JoystickC.png ├── Screen.png ├── Step1-2.png ├── Step3-4.png ├── Step5-6.png ├── VelEditor.png ├── VelEditorOverview.png ├── linrail.png └── simple_AxisSimulation.png ├── README.md ├── SFX_Helpers ├── SFX_Calc_Default_Cue.py ├── SFX_Calc_Default_Move.py ├── SFX_Length_update.py ├── SFX_MaxAcc_update.py ├── SFX_MaxPos_update.py ├── SFX_MaxVel_update.py ├── SFX_MinPos_update.py ├── SFX_Save_Action.py ├── SFX_Simpify_fcurves.py ├── SFX_Simplyfy.py ├── SFX_Simplyfy_cue.py └── __init__.py ├── UClients_and_helpers ├── Examples │ ├── Dana_Dolly_Joystick.bat │ ├── Dana_Dolly_Pan.bat │ ├── Dana_Dolly_Tilt.bat │ ├── Dana_Dolly_Track.bat │ ├── Joystick17.bat │ ├── Joystick17.py │ ├── Linear_AxisSimulation.bat │ ├── Linear_AxisSimulation.py │ ├── Pan_Simul.py │ ├── Tilt_Simul.py │ ├── Track_Simul.py │ ├── _Test.blend │ ├── danadolly.blend │ ├── danadolly.blend1 │ ├── example.blend │ ├── example1.blend │ ├── example1.blend1 │ ├── joystickapi.py │ ├── simple_AxisSimulation.xrc │ ├── simplelin_AxisSimulation.bat │ ├── simplelin_AxisSimulation.py │ ├── simplelin_Test.blend │ ├── simplelin_Test.blend1 │ ├── simplelrot_Test.blend │ ├── simplerot_AxisSimulation.bat │ ├── simplerot_AxisSimulation.py │ ├── telescope_Test.blend │ └── telescope_Test.blend1 ├── SFX_Simplyfy_fcurves in Drivers.py ├── VelEditor │ ├── Cue1.sfxact │ ├── CythonDefaultProfile │ │ ├── BlenderPython_Cytonize_Setup.bat │ │ ├── BlenderPython_Cytonize_Setup.py │ │ ├── DefaultProfile.c │ │ ├── DefaultProfile.cp37-win_amd64.pyd │ │ ├── DefaultProfile.html │ │ ├── DefaultProfile.py │ │ ├── DefaultProfile.pyx │ │ └── build │ │ │ ├── lib.win-amd64-3.7 │ │ │ └── DefaultProfile.cp37-win_amd64.pyd │ │ │ └── temp.win-amd64-3.7 │ │ │ └── Release │ │ │ ├── DefaultProfile.cp37-win_amd64.exp │ │ │ ├── DefaultProfile.cp37-win_amd64.lib │ │ │ └── DefaultProfile.obj │ ├── CythonSimplify │ │ ├── BlenderPython_Cytonize_Setup.bat │ │ ├── BlenderPython_Cytonize_Setup.py │ │ ├── Simplify.c │ │ ├── Simplify.cp37-win_amd64.pyd │ │ ├── Simplify.html │ │ ├── Simplify.py │ │ ├── Simplify.pyx │ │ └── build │ │ │ ├── lib.win-amd64-3.7 │ │ │ └── Simplify.cp37-win_amd64.pyd │ │ │ └── temp.win-amd64-3.7 │ │ │ └── Release │ │ │ ├── Simplify.cp37-win_amd64.exp │ │ │ ├── Simplify.cp37-win_amd64.lib │ │ │ └── Simplify.obj │ ├── DefaultProfile.pyd │ ├── Generated.vedt │ ├── README.md │ ├── Simplify.pyd │ ├── Test.sfxact │ ├── Test.vedt │ ├── VelEdit1.vedt │ ├── VelEdit2.vedt │ ├── VelEditor.graphml │ ├── VelEditor.sfxact │ ├── VelEditor2.sfxact │ ├── VelEditorW.py │ ├── VelEditorWW.bat │ ├── VelEditorWW.py │ ├── VelEditorWW.xrc │ └── VelEditorWWA.xrc ├── __pycache__ │ └── joystickapi.cpython-38.pyc ├── simp.blend └── space_node.py ├── __init__.py ├── auto_load.py ├── exchange_data ├── SFX_Action_List.py ├── __init__.py ├── __pycache__ │ ├── Share.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ ├── simple_actuator_basic_props.cpython-37.pyc │ ├── simple_actuator_props.cpython-37.pyc │ ├── ww_Joystick_props.cpython-37.pyc │ ├── ww_actuator_basic_props.cpython-37.pyc │ ├── ww_actuator_props.cpython-37.pyc │ ├── ww_digtwin_basic_props.cpython-37.pyc │ └── ww_digtwin_props.cpython-37.pyc └── sfx.py ├── operator ├── SFX_MN_Start.py ├── SFX_MN_Stop.py ├── __init__.py └── __pycache__ │ └── __init__.cpython-37.pyc ├── preferences.py ├── sockets ├── SFX_Socket_Bool.py ├── SFX_Socket_Float.py ├── SFX_Socket_Int.py ├── SFX_Socket_JoyData.py ├── __init__.py └── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── ww_Actuator_input_enable.cpython-37.pyc │ ├── ww_Actuator_input_select.cpython-37.pyc │ ├── ww_Actuator_input_set_Vel.cpython-37.pyc │ ├── ww_Actuator_output_ist_Force.cpython-37.pyc │ ├── ww_Actuator_output_ist_Pos.cpython-37.pyc │ ├── ww_Actuator_output_ist_Vel.cpython-37.pyc │ ├── ww_Joystick__bool_socket.cpython-37.pyc │ ├── ww_Joystick__int_socket.cpython-37.pyc │ ├── ww_Joystick__socket.cpython-37.pyc │ ├── ww_input_actuator_socket.cpython-37.pyc │ ├── ww_input_socket.cpython-37.pyc │ └── ww_output_actuator_socket.cpython-37.pyc └── ui ├── SFX_node_menu.py ├── __init__.py └── __pycache__ ├── __init__.cpython-37.pyc └── node_menu.cpython-37.pyc /.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__ 2 | *.pyc -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Node/Actuators/Linear/LinRail/SFX_LinRail_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/LinRail/SFX_LinRail_Data.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/LinRail/SFX_LinRail_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/LinRail/SFX_LinRail_IN.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/LinRail/SFX_LinRail_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/LinRail/SFX_LinRail_Model.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/LinRail/SFX_LinRail_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/LinRail/SFX_LinRail_Node.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/LinRail/SFX_LinRail_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/LinRail/SFX_LinRail_Op.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/LinRail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Actuators/Linear/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Actuators/Linear/simplelin/SFX_simplelin_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/simplelin/SFX_simplelin_Data.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/simplelin/SFX_simplelin_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/simplelin/SFX_simplelin_IN.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/simplelin/SFX_simplelin_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/simplelin/SFX_simplelin_Model.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/simplelin/SFX_simplelin_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/simplelin/SFX_simplelin_Node.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/simplelin/SFX_simplelin_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/simplelin/SFX_simplelin_Op.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/simplelin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Actuators/Linear/telescope/SFX_Telescope_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/telescope/SFX_Telescope_Data.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/telescope/SFX_Telescope_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/telescope/SFX_Telescope_IN.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/telescope/SFX_Telescope_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/telescope/SFX_Telescope_Model.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/telescope/SFX_Telescope_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/telescope/SFX_Telescope_Node.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/telescope/SFX_Telescope_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Linear/telescope/SFX_Telescope_Op.py -------------------------------------------------------------------------------- /Node/Actuators/Linear/telescope/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Actuators/Rotational/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Actuators/Rotational/simplerot/SFX_SimpleRot_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Rotational/simplerot/SFX_SimpleRot_Data.py -------------------------------------------------------------------------------- /Node/Actuators/Rotational/simplerot/SFX_SimpleRot_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Rotational/simplerot/SFX_SimpleRot_IN.py -------------------------------------------------------------------------------- /Node/Actuators/Rotational/simplerot/SFX_SimpleRot_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Rotational/simplerot/SFX_SimpleRot_Model.py -------------------------------------------------------------------------------- /Node/Actuators/Rotational/simplerot/SFX_SimpleRot_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Rotational/simplerot/SFX_SimpleRot_Node.py -------------------------------------------------------------------------------- /Node/Actuators/Rotational/simplerot/SFX_SimpleRot_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/Rotational/simplerot/SFX_SimpleRot_Op.py -------------------------------------------------------------------------------- /Node/Actuators/Rotational/simplerot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Actuators/SFX_Actuators_Base_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/SFX_Actuators_Base_Data.py -------------------------------------------------------------------------------- /Node/Actuators/SFX_Actuators_Basic_Inset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/SFX_Actuators_Basic_Inset.py -------------------------------------------------------------------------------- /Node/Actuators/SFX_Actuators_Expanded_Inset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/SFX_Actuators_Expanded_Inset.py -------------------------------------------------------------------------------- /Node/Actuators/SFX_Digtwin_Basic_Inset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/SFX_Digtwin_Basic_Inset.py -------------------------------------------------------------------------------- /Node/Actuators/SFX_Digtwin_Expanded_Inset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Actuators/SFX_Digtwin_Expanded_Inset.py -------------------------------------------------------------------------------- /Node/Actuators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Clock/SFX_Clock_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Clock/SFX_Clock_Data.py -------------------------------------------------------------------------------- /Node/Clock/SFX_Clock_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Clock/SFX_Clock_IN.py -------------------------------------------------------------------------------- /Node/Clock/SFX_Clock_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Clock/SFX_Clock_Node.py -------------------------------------------------------------------------------- /Node/Clock/SFX_Clock_OP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Clock/SFX_Clock_OP.py -------------------------------------------------------------------------------- /Node/Clock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Cues/SFX_Cues_Base_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/SFX_Cues_Base_Data.py -------------------------------------------------------------------------------- /Node/Cues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Cues/secondCue/SFX_secondCue_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/secondCue/SFX_secondCue_Data.py -------------------------------------------------------------------------------- /Node/Cues/secondCue/SFX_secondCue_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/secondCue/SFX_secondCue_IN.py -------------------------------------------------------------------------------- /Node/Cues/secondCue/SFX_secondCue_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/secondCue/SFX_secondCue_Node.py -------------------------------------------------------------------------------- /Node/Cues/secondCue/SFX_secondCue_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/secondCue/SFX_secondCue_Op.py -------------------------------------------------------------------------------- /Node/Cues/secondCue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Cues/simpleCue/SFX_simpleCue_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/simpleCue/SFX_simpleCue_Data.py -------------------------------------------------------------------------------- /Node/Cues/simpleCue/SFX_simpleCue_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/simpleCue/SFX_simpleCue_IN.py -------------------------------------------------------------------------------- /Node/Cues/simpleCue/SFX_simpleCue_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/simpleCue/SFX_simpleCue_Node.py -------------------------------------------------------------------------------- /Node/Cues/simpleCue/SFX_simpleCue_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Cues/simpleCue/SFX_simpleCue_Op.py -------------------------------------------------------------------------------- /Node/Cues/simpleCue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Helpers/Adder/SFX_Adder_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/Adder/SFX_Adder_Data.py -------------------------------------------------------------------------------- /Node/Helpers/Adder/SFX_Adder_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/Adder/SFX_Adder_IN.py -------------------------------------------------------------------------------- /Node/Helpers/Adder/SFX_Adder_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/Adder/SFX_Adder_Node.py -------------------------------------------------------------------------------- /Node/Helpers/Adder/SFX_Adder_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/Adder/SFX_Adder_Op.py -------------------------------------------------------------------------------- /Node/Helpers/Adder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Helpers/JoyDemux/SFX_JoyDemux_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/JoyDemux/SFX_JoyDemux_Data.py -------------------------------------------------------------------------------- /Node/Helpers/JoyDemux/SFX_JoyDemux_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/JoyDemux/SFX_JoyDemux_IN.py -------------------------------------------------------------------------------- /Node/Helpers/JoyDemux/SFX_JoyDemux_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/JoyDemux/SFX_JoyDemux_Node.py -------------------------------------------------------------------------------- /Node/Helpers/JoyDemux/SFX_JoyDemux_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/JoyDemux/SFX_JoyDemux_Op.py -------------------------------------------------------------------------------- /Node/Helpers/JoyDemux/SFX_JoyDemux_Socket_Bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/JoyDemux/SFX_JoyDemux_Socket_Bool.py -------------------------------------------------------------------------------- /Node/Helpers/JoyDemux/SFX_JoyDemux_Socket_Float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/JoyDemux/SFX_JoyDemux_Socket_Float.py -------------------------------------------------------------------------------- /Node/Helpers/JoyDemux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Helpers/Mixer/SFX_Mixer_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/Mixer/SFX_Mixer_Data.py -------------------------------------------------------------------------------- /Node/Helpers/Mixer/SFX_Mixer_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/Mixer/SFX_Mixer_IN.py -------------------------------------------------------------------------------- /Node/Helpers/Mixer/SFX_Mixer_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/Mixer/SFX_Mixer_Node.py -------------------------------------------------------------------------------- /Node/Helpers/Mixer/SFX_Mixer_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/Mixer/SFX_Mixer_Op.py -------------------------------------------------------------------------------- /Node/Helpers/Mixer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Helpers/SFX_Helpers_Base_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Helpers/SFX_Helpers_Base_Data.py -------------------------------------------------------------------------------- /Node/Helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Kinematics/SFX_Kinematics_Base_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Kinematics/SFX_Kinematics_Base_Data.py -------------------------------------------------------------------------------- /Node/Kinematics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/SFX_Action_Props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/SFX_Action_Props.py -------------------------------------------------------------------------------- /Node/Sensors/Joystick/SFX_Joy_Socket_Bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Sensors/Joystick/SFX_Joy_Socket_Bool.py -------------------------------------------------------------------------------- /Node/Sensors/Joystick/SFX_Joy_Socket_Float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Sensors/Joystick/SFX_Joy_Socket_Float.py -------------------------------------------------------------------------------- /Node/Sensors/Joystick/SFX_Joystick_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Sensors/Joystick/SFX_Joystick_Data.py -------------------------------------------------------------------------------- /Node/Sensors/Joystick/SFX_Joystick_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Sensors/Joystick/SFX_Joystick_IN.py -------------------------------------------------------------------------------- /Node/Sensors/Joystick/SFX_Joystick_Inset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Sensors/Joystick/SFX_Joystick_Inset.py -------------------------------------------------------------------------------- /Node/Sensors/Joystick/SFX_Joystick_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Sensors/Joystick/SFX_Joystick_Node.py -------------------------------------------------------------------------------- /Node/Sensors/Joystick/SFX_Joystick_Op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Sensors/Joystick/SFX_Joystick_Op.py -------------------------------------------------------------------------------- /Node/Sensors/Joystick/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/Sensors/SFX_Sensors_Base_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/Sensors/SFX_Sensors_Base_Data.py -------------------------------------------------------------------------------- /Node/Sensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Node/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Node/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /NodeTree/SFX_NodeTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/NodeTree/SFX_NodeTree.py -------------------------------------------------------------------------------- /NodeTree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeTree/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/NodeTree/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /NodeTree/__pycache__/ww_NodeTree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/NodeTree/__pycache__/ww_NodeTree.cpython-37.pyc -------------------------------------------------------------------------------- /Pictures/Adder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Adder1.png -------------------------------------------------------------------------------- /Pictures/Addern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Addern.png -------------------------------------------------------------------------------- /Pictures/Blender for SFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Blender for SFX.png -------------------------------------------------------------------------------- /Pictures/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Clock.png -------------------------------------------------------------------------------- /Pictures/Clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Clock1.png -------------------------------------------------------------------------------- /Pictures/Clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Clock2.png -------------------------------------------------------------------------------- /Pictures/Cue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Cue1.png -------------------------------------------------------------------------------- /Pictures/Cue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Cue2.png -------------------------------------------------------------------------------- /Pictures/Cue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Cue3.png -------------------------------------------------------------------------------- /Pictures/Cue4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Cue4.png -------------------------------------------------------------------------------- /Pictures/Cue5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Cue5.png -------------------------------------------------------------------------------- /Pictures/Dana_Dolly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Dana_Dolly.png -------------------------------------------------------------------------------- /Pictures/Demux1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Demux1.png -------------------------------------------------------------------------------- /Pictures/Demux2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Demux2.png -------------------------------------------------------------------------------- /Pictures/Joystick17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Joystick17.png -------------------------------------------------------------------------------- /Pictures/JoystickA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/JoystickA.png -------------------------------------------------------------------------------- /Pictures/JoystickB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/JoystickB.png -------------------------------------------------------------------------------- /Pictures/JoystickC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/JoystickC.png -------------------------------------------------------------------------------- /Pictures/Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Screen.png -------------------------------------------------------------------------------- /Pictures/Step1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Step1-2.png -------------------------------------------------------------------------------- /Pictures/Step3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Step3-4.png -------------------------------------------------------------------------------- /Pictures/Step5-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/Step5-6.png -------------------------------------------------------------------------------- /Pictures/VelEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/VelEditor.png -------------------------------------------------------------------------------- /Pictures/VelEditorOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/VelEditorOverview.png -------------------------------------------------------------------------------- /Pictures/linrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/linrail.png -------------------------------------------------------------------------------- /Pictures/simple_AxisSimulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/Pictures/simple_AxisSimulation.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/README.md -------------------------------------------------------------------------------- /SFX_Helpers/SFX_Calc_Default_Cue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_Calc_Default_Cue.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_Calc_Default_Move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_Calc_Default_Move.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_Length_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_Length_update.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_MaxAcc_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_MaxAcc_update.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_MaxPos_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_MaxPos_update.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_MaxVel_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_MaxVel_update.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_MinPos_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_MinPos_update.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_Save_Action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_Save_Action.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_Simpify_fcurves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_Simpify_fcurves.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_Simplyfy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_Simplyfy.py -------------------------------------------------------------------------------- /SFX_Helpers/SFX_Simplyfy_cue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/SFX_Helpers/SFX_Simplyfy_cue.py -------------------------------------------------------------------------------- /SFX_Helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Dana_Dolly_Joystick.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Dana_Dolly_Joystick.bat -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Dana_Dolly_Pan.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Dana_Dolly_Pan.bat -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Dana_Dolly_Tilt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Dana_Dolly_Tilt.bat -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Dana_Dolly_Track.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Dana_Dolly_Track.bat -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Joystick17.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Joystick17.bat -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Joystick17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Joystick17.py -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Linear_AxisSimulation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Linear_AxisSimulation.bat -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Linear_AxisSimulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Linear_AxisSimulation.py -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Pan_Simul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Pan_Simul.py -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Tilt_Simul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Tilt_Simul.py -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/Track_Simul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/Track_Simul.py -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/_Test.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/_Test.blend -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/danadolly.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/danadolly.blend -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/danadolly.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/danadolly.blend1 -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/example.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/example.blend -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/example1.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/example1.blend -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/example1.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/example1.blend1 -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/joystickapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/joystickapi.py -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/simple_AxisSimulation.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/simple_AxisSimulation.xrc -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/simplelin_AxisSimulation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/simplelin_AxisSimulation.bat -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/simplelin_AxisSimulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/simplelin_AxisSimulation.py -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/simplelin_Test.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/simplelin_Test.blend -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/simplelin_Test.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/simplelin_Test.blend1 -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/simplelrot_Test.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/simplelrot_Test.blend -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/simplerot_AxisSimulation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/simplerot_AxisSimulation.bat -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/simplerot_AxisSimulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/simplerot_AxisSimulation.py -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/telescope_Test.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/telescope_Test.blend -------------------------------------------------------------------------------- /UClients_and_helpers/Examples/telescope_Test.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/Examples/telescope_Test.blend1 -------------------------------------------------------------------------------- /UClients_and_helpers/SFX_Simplyfy_fcurves in Drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/SFX_Simplyfy_fcurves in Drivers.py -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/Cue1.sfxact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/Cue1.sfxact -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/BlenderPython_Cytonize_Setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/BlenderPython_Cytonize_Setup.bat -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/BlenderPython_Cytonize_Setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/BlenderPython_Cytonize_Setup.py -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.c -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.html -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.py -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/DefaultProfile.pyx -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/build/lib.win-amd64-3.7/DefaultProfile.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/build/lib.win-amd64-3.7/DefaultProfile.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/build/temp.win-amd64-3.7/Release/DefaultProfile.cp37-win_amd64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/build/temp.win-amd64-3.7/Release/DefaultProfile.cp37-win_amd64.exp -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/build/temp.win-amd64-3.7/Release/DefaultProfile.cp37-win_amd64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/build/temp.win-amd64-3.7/Release/DefaultProfile.cp37-win_amd64.lib -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonDefaultProfile/build/temp.win-amd64-3.7/Release/DefaultProfile.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonDefaultProfile/build/temp.win-amd64-3.7/Release/DefaultProfile.obj -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/BlenderPython_Cytonize_Setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/BlenderPython_Cytonize_Setup.bat -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/BlenderPython_Cytonize_Setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/BlenderPython_Cytonize_Setup.py -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/Simplify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/Simplify.c -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/Simplify.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/Simplify.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/Simplify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/Simplify.html -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/Simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/Simplify.py -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/Simplify.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/Simplify.pyx -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/build/lib.win-amd64-3.7/Simplify.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/build/lib.win-amd64-3.7/Simplify.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/build/temp.win-amd64-3.7/Release/Simplify.cp37-win_amd64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/build/temp.win-amd64-3.7/Release/Simplify.cp37-win_amd64.exp -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/build/temp.win-amd64-3.7/Release/Simplify.cp37-win_amd64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/build/temp.win-amd64-3.7/Release/Simplify.cp37-win_amd64.lib -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/CythonSimplify/build/temp.win-amd64-3.7/Release/Simplify.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/CythonSimplify/build/temp.win-amd64-3.7/Release/Simplify.obj -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/DefaultProfile.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/DefaultProfile.pyd -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/Generated.vedt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/Generated.vedt -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/README.md -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/Simplify.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/Simplify.pyd -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/Test.sfxact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/Test.sfxact -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/Test.vedt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/Test.vedt -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEdit1.vedt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEdit1.vedt -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEdit2.vedt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEdit2.vedt -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEditor.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEditor.graphml -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEditor.sfxact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEditor.sfxact -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEditor2.sfxact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEditor2.sfxact -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEditorW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEditorW.py -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEditorWW.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEditorWW.bat -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEditorWW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEditorWW.py -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEditorWW.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEditorWW.xrc -------------------------------------------------------------------------------- /UClients_and_helpers/VelEditor/VelEditorWWA.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/VelEditor/VelEditorWWA.xrc -------------------------------------------------------------------------------- /UClients_and_helpers/__pycache__/joystickapi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/__pycache__/joystickapi.cpython-38.pyc -------------------------------------------------------------------------------- /UClients_and_helpers/simp.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/simp.blend -------------------------------------------------------------------------------- /UClients_and_helpers/space_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/UClients_and_helpers/space_node.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/__init__.py -------------------------------------------------------------------------------- /auto_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/auto_load.py -------------------------------------------------------------------------------- /exchange_data/SFX_Action_List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/SFX_Action_List.py -------------------------------------------------------------------------------- /exchange_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exchange_data/__pycache__/Share.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/Share.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/__pycache__/simple_actuator_basic_props.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/simple_actuator_basic_props.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/__pycache__/simple_actuator_props.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/simple_actuator_props.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/__pycache__/ww_Joystick_props.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/ww_Joystick_props.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/__pycache__/ww_actuator_basic_props.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/ww_actuator_basic_props.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/__pycache__/ww_actuator_props.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/ww_actuator_props.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/__pycache__/ww_digtwin_basic_props.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/ww_digtwin_basic_props.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/__pycache__/ww_digtwin_props.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/__pycache__/ww_digtwin_props.cpython-37.pyc -------------------------------------------------------------------------------- /exchange_data/sfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/exchange_data/sfx.py -------------------------------------------------------------------------------- /operator/SFX_MN_Start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/operator/SFX_MN_Start.py -------------------------------------------------------------------------------- /operator/SFX_MN_Stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/operator/SFX_MN_Stop.py -------------------------------------------------------------------------------- /operator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operator/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/operator/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/preferences.py -------------------------------------------------------------------------------- /sockets/SFX_Socket_Bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/SFX_Socket_Bool.py -------------------------------------------------------------------------------- /sockets/SFX_Socket_Float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/SFX_Socket_Float.py -------------------------------------------------------------------------------- /sockets/SFX_Socket_Int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/SFX_Socket_Int.py -------------------------------------------------------------------------------- /sockets/SFX_Socket_JoyData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/SFX_Socket_JoyData.py -------------------------------------------------------------------------------- /sockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sockets/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Actuator_input_enable.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Actuator_input_enable.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Actuator_input_select.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Actuator_input_select.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Actuator_input_set_Vel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Actuator_input_set_Vel.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Actuator_output_ist_Force.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Actuator_output_ist_Force.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Actuator_output_ist_Pos.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Actuator_output_ist_Pos.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Actuator_output_ist_Vel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Actuator_output_ist_Vel.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Joystick__bool_socket.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Joystick__bool_socket.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Joystick__int_socket.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Joystick__int_socket.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_Joystick__socket.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_Joystick__socket.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_input_actuator_socket.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_input_actuator_socket.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_input_socket.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_input_socket.cpython-37.pyc -------------------------------------------------------------------------------- /sockets/__pycache__/ww_output_actuator_socket.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/sockets/__pycache__/ww_output_actuator_socket.cpython-37.pyc -------------------------------------------------------------------------------- /ui/SFX_node_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/ui/SFX_node_menu.py -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/ui/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ui/__pycache__/node_menu.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiredworks/wiredworks_winches/HEAD/ui/__pycache__/node_menu.cpython-37.pyc --------------------------------------------------------------------------------