├── Generators ├── checker.tox ├── julia.tox ├── mandelbrot.tox ├── mesh.tox ├── noise.tox └── superFormula.tox ├── ImageFilters ├── bloom.tox ├── cartesianToPolar.tox ├── changeColor.tox ├── changeToColor.tox ├── colorThreshold.tox ├── convolve.tox ├── dent.tox ├── dilate.tox ├── feedback.tox ├── feedbackEdge.tox ├── hsvBlur.tox ├── lightTunnel.tox ├── monochrome.tox ├── pixelRelocator.tox ├── pixelate.tox ├── pointillize.tox ├── radialBlur.tox ├── rgbContrast.tox ├── rgbaBlur.tox ├── rgbaDelay.tox ├── sharpen.tox ├── softenAlpha.tox ├── solarize.tox └── twirl.tox ├── LICENSE.md ├── Mapping ├── camSchnappr.tox ├── cornerPinSOP.tox ├── kantanMapper.tox ├── kantanUVHelper.tox ├── kinectCalibration.tox ├── projectorBlend.tox ├── quadReproject.tox ├── stoner.tox └── sweetSpot.tox ├── OculusRift ├── oculusRift.tox └── oculusRiftSimple.tox ├── PointClouds ├── SICK │ ├── sickCore.tox │ └── sickEngine.tox ├── depthProjection.tox ├── pointField.tox ├── pointGenerator.tox ├── pointMerge.tox ├── pointRender.tox ├── pointRepack.tox └── pointWeight.tox ├── TDAbleton ├── Live 11+ │ ├── abletonChain.tox │ ├── abletonClipSlot.tox │ ├── abletonDeviceParameters.tox │ ├── abletonLevel.tox │ ├── abletonMIDI.tox │ ├── abletonMapper.tox │ ├── abletonParameter.tox │ ├── abletonRack.tox │ ├── abletonSong.tox │ ├── abletonTrack.tox │ ├── abletonValueListener.tox │ └── tdAbletonPackage.tox ├── Live 11 │ ├── abletonChain.tox │ ├── abletonClipSlot.tox │ ├── abletonDeviceParameters.tox │ ├── abletonLevel.tox │ ├── abletonMIDI.tox │ ├── abletonMapper.tox │ ├── abletonParameter.tox │ ├── abletonRack.tox │ ├── abletonSong.tox │ ├── abletonTrack.tox │ ├── abletonValueListener.tox │ └── tdAbletonPackage.tox └── Live 9 & 10 │ ├── abletonChain.tox │ ├── abletonClipSlot.tox │ ├── abletonDeviceParameters.tox │ ├── abletonLevel.tox │ ├── abletonMIDI.tox │ ├── abletonMapper.tox │ ├── abletonParameter.tox │ ├── abletonRack.tox │ ├── abletonSong.tox │ ├── abletonTrack.tox │ ├── abletonValueListener.tox │ └── tdAbletonPackage.tox ├── TDBitwig ├── Extras │ ├── bitwigClipFollower.tox │ └── bitwigClipTimer.tox ├── bitwigClip.tox ├── bitwigClipSlot.tox ├── bitwigMain.tox ├── bitwigNote.tox ├── bitwigRemotesDevice.tox ├── bitwigRemotesProject.tox ├── bitwigRemotesTrack.tox ├── bitwigSelect.tox ├── bitwigSong.tox ├── bitwigTrack.tox └── tdBitwigPackage.tox ├── TDSynchro ├── synchroCache.tox ├── synchroClient.tox ├── synchroFrameIn.tox ├── synchroFrameOut.tox ├── synchroNDIIn.tox ├── synchroSDIIn.tox ├── synchroServer.tox ├── synchroVideoOut.tox └── tdSynchroPackage.tox ├── TDVR ├── System Components │ ├── drone.tox │ ├── rayPick.tox │ ├── renderManager.tox │ ├── resources.tox │ ├── viewer3D.tox │ ├── vrControllers.tox │ ├── vrHMD.tox │ ├── world.tox │ └── xboxForWindows.tox ├── TDVR.tox ├── Utilities │ └── vrRenderToMovie.tox └── World Objects │ ├── ambientLight.tox │ ├── controllerScripts.tox │ ├── distantLight.tox │ ├── environmentLight.tox │ ├── geoGround.tox │ ├── joystickScripts.tox │ ├── system.tox │ ├── teapotExample.tox │ └── vrRenderToMovie.tox ├── TDVS └── recorder.tox ├── Techniques ├── geoPanel.tox ├── gestureCapture.tox ├── initializeStart.tox ├── kinectAzurePointcloud.tox ├── kinectPointcloud.tox ├── leapPaint.tox ├── motionSense.tox ├── multiTouch.tox ├── pushPins.tox ├── puzzle.tox ├── sweetSpotPreviz.tox ├── transitMap.tox └── xyScope.tox ├── Tools ├── 3DScope.tox ├── SVG.tox ├── arcBallGeometry.tox ├── audioAnalysis.tox ├── audioSet.tox ├── autoMediaPlayer.tox ├── battery.tox ├── blendModes.tox ├── cameraViewport.tox ├── chromaKey.tox ├── compareComp.tox ├── cppParsTemplateGen.tox ├── customAttributes.tox ├── debugControl.tox ├── equalizer.tox ├── firmata.tox ├── graphPlot.tox ├── histogram.tox ├── imageSearch.tox ├── kinectRecorder.tox ├── logger.tox ├── materialDesignIcons.tox ├── movieBlender.tox ├── movieEngine.tox ├── moviePlayer.tox ├── moviePlaylist.tox ├── multiLevel.tox ├── multiMix.tox ├── onScreenKeyboard.tox ├── opBrowser.tox ├── opticalFlow.tox ├── particlesGpu.tox ├── probe.tox ├── remotePanel.tox ├── sceneChanger.tox ├── search.tox ├── searchReplace.tox ├── showCooks.tox ├── sopRender.tox ├── splitter.tox ├── stitcher.tox ├── testGrid.tox ├── vectorScope.tox ├── virtualFile.tox ├── vstHost.tox ├── waveformMonitor.tox └── webBrowser.tox ├── UI ├── Basic Widgets │ ├── Core │ │ ├── masterButton.tox │ │ ├── masterButtonPush.tox │ │ ├── masterCheckbox.tox │ │ ├── masterDropMenu.tox │ │ ├── masterFolderTabs.tox │ │ ├── masterFolderTabsLegacy.tox │ │ ├── masterFolderTabsWIcons.tox │ │ ├── masterFooter.tox │ │ ├── masterHeader.tox │ │ ├── masterIconMenu.tox │ │ ├── masterKnob.tox │ │ ├── masterLabel.tox │ │ ├── masterList.tox │ │ ├── masterNumericField.tox │ │ ├── masterRadioButton.tox │ │ ├── masterRange.tox │ │ ├── masterReferenceOP.tox │ │ ├── masterRocker.tox │ │ ├── masterSlider.tox │ │ ├── masterSlider2D.tox │ │ ├── masterStringField.tox │ │ ├── masterStringMenu.tox │ │ ├── masterTextEditor.tox │ │ └── masterValueLabel.tox │ ├── Gadgets │ │ └── pathBar.tox │ ├── Package │ │ └── basicWidgets.tox │ ├── Scripting │ │ └── extensionParExec.tox │ ├── Tools │ │ ├── autoUI.tox │ │ └── widgetCacher.tox │ ├── buttonCheckbox.tox │ ├── buttonMomentary.tox │ ├── buttonRadio.tox │ ├── buttonRocker.tox │ ├── buttonScript.tox │ ├── buttonState.tox │ ├── buttonToggle.tox │ ├── dropDownButton.tox │ ├── dropDownMenu.tox │ ├── fieldFileBrowser.tox │ ├── fieldFolderBrowser.tox │ ├── fieldString.tox │ ├── fieldStringExec.tox │ ├── fieldTextArea.tox │ ├── float1.tox │ ├── float2.tox │ ├── float3.tox │ ├── float4.tox │ ├── folderTabs.tox │ ├── footer.tox │ ├── header.tox │ ├── int1.tox │ ├── int2.tox │ ├── int3.tox │ ├── int4.tox │ ├── knobEndless.tox │ ├── knobFixed.tox │ ├── label.tox │ ├── list.tox │ ├── opViewer.tox │ ├── operatorPath.tox │ ├── range.tox │ ├── referenceCHOP.tox │ ├── referenceCOMP.tox │ ├── referenceDAT.tox │ ├── referenceMAT.tox │ ├── referenceOBJ.tox │ ├── referenceOP.tox │ ├── referenceSOP.tox │ ├── referenceTOP.tox │ ├── section.tox │ ├── slider2D.tox │ ├── slider3Hsv.tox │ ├── slider3Rgb.tox │ ├── slider4Hsva.tox │ ├── slider4Rgba.tox │ ├── sliderHorz.tox │ ├── sliderHorzXFade.tox │ ├── sliderVert.tox │ ├── spacer.tox │ ├── topMenu.tox │ └── windowHeader.tox ├── displayList.tox ├── gal.tox ├── lister.tox ├── operatorPath.tox ├── popDialog.tox ├── popMenu.tox ├── radioList.tox ├── simpleList.tox └── treeLister.tox ├── Vive ├── viveController.tox ├── viveGeoPanel.tox ├── viveGestureDraw.tox ├── viveRender.tox └── viveSimple.tox ├── WebRTC ├── signalingClient.tox ├── signalingServer.tox ├── webRTC.tox ├── webRTCPanel.tox └── webRTCPanelRcv.tox ├── defaultUserPalette.json └── template.tox /Generators/checker.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Generators/checker.tox -------------------------------------------------------------------------------- /Generators/julia.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Generators/julia.tox -------------------------------------------------------------------------------- /Generators/mandelbrot.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Generators/mandelbrot.tox -------------------------------------------------------------------------------- /Generators/mesh.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Generators/mesh.tox -------------------------------------------------------------------------------- /Generators/noise.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Generators/noise.tox -------------------------------------------------------------------------------- /Generators/superFormula.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Generators/superFormula.tox -------------------------------------------------------------------------------- /ImageFilters/bloom.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/bloom.tox -------------------------------------------------------------------------------- /ImageFilters/cartesianToPolar.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/cartesianToPolar.tox -------------------------------------------------------------------------------- /ImageFilters/changeColor.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/changeColor.tox -------------------------------------------------------------------------------- /ImageFilters/changeToColor.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/changeToColor.tox -------------------------------------------------------------------------------- /ImageFilters/colorThreshold.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/colorThreshold.tox -------------------------------------------------------------------------------- /ImageFilters/convolve.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/convolve.tox -------------------------------------------------------------------------------- /ImageFilters/dent.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/dent.tox -------------------------------------------------------------------------------- /ImageFilters/dilate.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/dilate.tox -------------------------------------------------------------------------------- /ImageFilters/feedback.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/feedback.tox -------------------------------------------------------------------------------- /ImageFilters/feedbackEdge.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/feedbackEdge.tox -------------------------------------------------------------------------------- /ImageFilters/hsvBlur.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/hsvBlur.tox -------------------------------------------------------------------------------- /ImageFilters/lightTunnel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/lightTunnel.tox -------------------------------------------------------------------------------- /ImageFilters/monochrome.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/monochrome.tox -------------------------------------------------------------------------------- /ImageFilters/pixelRelocator.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/pixelRelocator.tox -------------------------------------------------------------------------------- /ImageFilters/pixelate.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/pixelate.tox -------------------------------------------------------------------------------- /ImageFilters/pointillize.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/pointillize.tox -------------------------------------------------------------------------------- /ImageFilters/radialBlur.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/radialBlur.tox -------------------------------------------------------------------------------- /ImageFilters/rgbContrast.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/rgbContrast.tox -------------------------------------------------------------------------------- /ImageFilters/rgbaBlur.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/rgbaBlur.tox -------------------------------------------------------------------------------- /ImageFilters/rgbaDelay.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/rgbaDelay.tox -------------------------------------------------------------------------------- /ImageFilters/sharpen.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/sharpen.tox -------------------------------------------------------------------------------- /ImageFilters/softenAlpha.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/softenAlpha.tox -------------------------------------------------------------------------------- /ImageFilters/solarize.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/solarize.tox -------------------------------------------------------------------------------- /ImageFilters/twirl.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/ImageFilters/twirl.tox -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # Shared Use License 2 | This software in source and binary forms is owned by Derivative Inc. (Derivative) and can only be used, and/or modified for use, in conjunction with Derivative's TouchDesigner software, and only if you are a licensee who has accepted Derivative's TouchDesigner license or assignment agreement (which also govern the use of this software). You may share or redistribute a modified version of this software provided the following conditions are met: 3 | * The shared files or redistribution must retain the information set out above and this list of conditions. 4 | * Derivative's name (Derivative Inc.) or its trademarks may not be used to endorse or promote products derived from this software without specific prior written permission from Derivative. -------------------------------------------------------------------------------- /Mapping/camSchnappr.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/camSchnappr.tox -------------------------------------------------------------------------------- /Mapping/cornerPinSOP.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/cornerPinSOP.tox -------------------------------------------------------------------------------- /Mapping/kantanMapper.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/kantanMapper.tox -------------------------------------------------------------------------------- /Mapping/kantanUVHelper.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/kantanUVHelper.tox -------------------------------------------------------------------------------- /Mapping/kinectCalibration.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/kinectCalibration.tox -------------------------------------------------------------------------------- /Mapping/projectorBlend.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/projectorBlend.tox -------------------------------------------------------------------------------- /Mapping/quadReproject.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/quadReproject.tox -------------------------------------------------------------------------------- /Mapping/stoner.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/stoner.tox -------------------------------------------------------------------------------- /Mapping/sweetSpot.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Mapping/sweetSpot.tox -------------------------------------------------------------------------------- /OculusRift/oculusRift.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/OculusRift/oculusRift.tox -------------------------------------------------------------------------------- /OculusRift/oculusRiftSimple.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/OculusRift/oculusRiftSimple.tox -------------------------------------------------------------------------------- /PointClouds/SICK/sickCore.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/SICK/sickCore.tox -------------------------------------------------------------------------------- /PointClouds/SICK/sickEngine.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/SICK/sickEngine.tox -------------------------------------------------------------------------------- /PointClouds/depthProjection.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/depthProjection.tox -------------------------------------------------------------------------------- /PointClouds/pointField.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/pointField.tox -------------------------------------------------------------------------------- /PointClouds/pointGenerator.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/pointGenerator.tox -------------------------------------------------------------------------------- /PointClouds/pointMerge.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/pointMerge.tox -------------------------------------------------------------------------------- /PointClouds/pointRender.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/pointRender.tox -------------------------------------------------------------------------------- /PointClouds/pointRepack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/pointRepack.tox -------------------------------------------------------------------------------- /PointClouds/pointWeight.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/PointClouds/pointWeight.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonChain.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonChain.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonClipSlot.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonClipSlot.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonDeviceParameters.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonDeviceParameters.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonLevel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonLevel.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonMIDI.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonMIDI.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonMapper.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonMapper.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonParameter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonParameter.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonRack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonRack.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonSong.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonSong.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonTrack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonTrack.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/abletonValueListener.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/abletonValueListener.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11+/tdAbletonPackage.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11+/tdAbletonPackage.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonChain.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonChain.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonClipSlot.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonClipSlot.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonDeviceParameters.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonDeviceParameters.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonLevel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonLevel.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonMIDI.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonMIDI.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonMapper.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonMapper.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonParameter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonParameter.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonRack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonRack.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonSong.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonSong.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonTrack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonTrack.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/abletonValueListener.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/abletonValueListener.tox -------------------------------------------------------------------------------- /TDAbleton/Live 11/tdAbletonPackage.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 11/tdAbletonPackage.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonChain.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonChain.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonClipSlot.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonClipSlot.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonDeviceParameters.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonDeviceParameters.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonLevel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonLevel.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonMIDI.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonMIDI.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonMapper.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonMapper.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonParameter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonParameter.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonRack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonRack.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonSong.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonSong.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonTrack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonTrack.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/abletonValueListener.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/abletonValueListener.tox -------------------------------------------------------------------------------- /TDAbleton/Live 9 & 10/tdAbletonPackage.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDAbleton/Live 9 & 10/tdAbletonPackage.tox -------------------------------------------------------------------------------- /TDBitwig/Extras/bitwigClipFollower.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/Extras/bitwigClipFollower.tox -------------------------------------------------------------------------------- /TDBitwig/Extras/bitwigClipTimer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/Extras/bitwigClipTimer.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigClip.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigClip.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigClipSlot.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigClipSlot.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigMain.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigMain.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigNote.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigNote.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigRemotesDevice.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigRemotesDevice.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigRemotesProject.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigRemotesProject.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigRemotesTrack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigRemotesTrack.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigSelect.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigSelect.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigSong.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigSong.tox -------------------------------------------------------------------------------- /TDBitwig/bitwigTrack.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/bitwigTrack.tox -------------------------------------------------------------------------------- /TDBitwig/tdBitwigPackage.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDBitwig/tdBitwigPackage.tox -------------------------------------------------------------------------------- /TDSynchro/synchroCache.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/synchroCache.tox -------------------------------------------------------------------------------- /TDSynchro/synchroClient.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/synchroClient.tox -------------------------------------------------------------------------------- /TDSynchro/synchroFrameIn.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/synchroFrameIn.tox -------------------------------------------------------------------------------- /TDSynchro/synchroFrameOut.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/synchroFrameOut.tox -------------------------------------------------------------------------------- /TDSynchro/synchroNDIIn.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/synchroNDIIn.tox -------------------------------------------------------------------------------- /TDSynchro/synchroSDIIn.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/synchroSDIIn.tox -------------------------------------------------------------------------------- /TDSynchro/synchroServer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/synchroServer.tox -------------------------------------------------------------------------------- /TDSynchro/synchroVideoOut.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/synchroVideoOut.tox -------------------------------------------------------------------------------- /TDSynchro/tdSynchroPackage.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDSynchro/tdSynchroPackage.tox -------------------------------------------------------------------------------- /TDVR/System Components/drone.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/drone.tox -------------------------------------------------------------------------------- /TDVR/System Components/rayPick.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/rayPick.tox -------------------------------------------------------------------------------- /TDVR/System Components/renderManager.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/renderManager.tox -------------------------------------------------------------------------------- /TDVR/System Components/resources.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/resources.tox -------------------------------------------------------------------------------- /TDVR/System Components/viewer3D.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/viewer3D.tox -------------------------------------------------------------------------------- /TDVR/System Components/vrControllers.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/vrControllers.tox -------------------------------------------------------------------------------- /TDVR/System Components/vrHMD.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/vrHMD.tox -------------------------------------------------------------------------------- /TDVR/System Components/world.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/world.tox -------------------------------------------------------------------------------- /TDVR/System Components/xboxForWindows.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/System Components/xboxForWindows.tox -------------------------------------------------------------------------------- /TDVR/TDVR.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/TDVR.tox -------------------------------------------------------------------------------- /TDVR/Utilities/vrRenderToMovie.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/Utilities/vrRenderToMovie.tox -------------------------------------------------------------------------------- /TDVR/World Objects/ambientLight.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/ambientLight.tox -------------------------------------------------------------------------------- /TDVR/World Objects/controllerScripts.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/controllerScripts.tox -------------------------------------------------------------------------------- /TDVR/World Objects/distantLight.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/distantLight.tox -------------------------------------------------------------------------------- /TDVR/World Objects/environmentLight.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/environmentLight.tox -------------------------------------------------------------------------------- /TDVR/World Objects/geoGround.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/geoGround.tox -------------------------------------------------------------------------------- /TDVR/World Objects/joystickScripts.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/joystickScripts.tox -------------------------------------------------------------------------------- /TDVR/World Objects/system.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/system.tox -------------------------------------------------------------------------------- /TDVR/World Objects/teapotExample.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/teapotExample.tox -------------------------------------------------------------------------------- /TDVR/World Objects/vrRenderToMovie.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVR/World Objects/vrRenderToMovie.tox -------------------------------------------------------------------------------- /TDVS/recorder.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/TDVS/recorder.tox -------------------------------------------------------------------------------- /Techniques/geoPanel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/geoPanel.tox -------------------------------------------------------------------------------- /Techniques/gestureCapture.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/gestureCapture.tox -------------------------------------------------------------------------------- /Techniques/initializeStart.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/initializeStart.tox -------------------------------------------------------------------------------- /Techniques/kinectAzurePointcloud.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/kinectAzurePointcloud.tox -------------------------------------------------------------------------------- /Techniques/kinectPointcloud.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/kinectPointcloud.tox -------------------------------------------------------------------------------- /Techniques/leapPaint.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/leapPaint.tox -------------------------------------------------------------------------------- /Techniques/motionSense.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/motionSense.tox -------------------------------------------------------------------------------- /Techniques/multiTouch.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/multiTouch.tox -------------------------------------------------------------------------------- /Techniques/pushPins.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/pushPins.tox -------------------------------------------------------------------------------- /Techniques/puzzle.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/puzzle.tox -------------------------------------------------------------------------------- /Techniques/sweetSpotPreviz.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/sweetSpotPreviz.tox -------------------------------------------------------------------------------- /Techniques/transitMap.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/transitMap.tox -------------------------------------------------------------------------------- /Techniques/xyScope.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Techniques/xyScope.tox -------------------------------------------------------------------------------- /Tools/3DScope.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/3DScope.tox -------------------------------------------------------------------------------- /Tools/SVG.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/SVG.tox -------------------------------------------------------------------------------- /Tools/arcBallGeometry.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/arcBallGeometry.tox -------------------------------------------------------------------------------- /Tools/audioAnalysis.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/audioAnalysis.tox -------------------------------------------------------------------------------- /Tools/audioSet.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/audioSet.tox -------------------------------------------------------------------------------- /Tools/autoMediaPlayer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/autoMediaPlayer.tox -------------------------------------------------------------------------------- /Tools/battery.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/battery.tox -------------------------------------------------------------------------------- /Tools/blendModes.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/blendModes.tox -------------------------------------------------------------------------------- /Tools/cameraViewport.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/cameraViewport.tox -------------------------------------------------------------------------------- /Tools/chromaKey.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/chromaKey.tox -------------------------------------------------------------------------------- /Tools/compareComp.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/compareComp.tox -------------------------------------------------------------------------------- /Tools/cppParsTemplateGen.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/cppParsTemplateGen.tox -------------------------------------------------------------------------------- /Tools/customAttributes.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/customAttributes.tox -------------------------------------------------------------------------------- /Tools/debugControl.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/debugControl.tox -------------------------------------------------------------------------------- /Tools/equalizer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/equalizer.tox -------------------------------------------------------------------------------- /Tools/firmata.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/firmata.tox -------------------------------------------------------------------------------- /Tools/graphPlot.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/graphPlot.tox -------------------------------------------------------------------------------- /Tools/histogram.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/histogram.tox -------------------------------------------------------------------------------- /Tools/imageSearch.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/imageSearch.tox -------------------------------------------------------------------------------- /Tools/kinectRecorder.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/kinectRecorder.tox -------------------------------------------------------------------------------- /Tools/logger.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/logger.tox -------------------------------------------------------------------------------- /Tools/materialDesignIcons.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/materialDesignIcons.tox -------------------------------------------------------------------------------- /Tools/movieBlender.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/movieBlender.tox -------------------------------------------------------------------------------- /Tools/movieEngine.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/movieEngine.tox -------------------------------------------------------------------------------- /Tools/moviePlayer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/moviePlayer.tox -------------------------------------------------------------------------------- /Tools/moviePlaylist.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/moviePlaylist.tox -------------------------------------------------------------------------------- /Tools/multiLevel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/multiLevel.tox -------------------------------------------------------------------------------- /Tools/multiMix.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/multiMix.tox -------------------------------------------------------------------------------- /Tools/onScreenKeyboard.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/onScreenKeyboard.tox -------------------------------------------------------------------------------- /Tools/opBrowser.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/opBrowser.tox -------------------------------------------------------------------------------- /Tools/opticalFlow.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/opticalFlow.tox -------------------------------------------------------------------------------- /Tools/particlesGpu.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/particlesGpu.tox -------------------------------------------------------------------------------- /Tools/probe.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/probe.tox -------------------------------------------------------------------------------- /Tools/remotePanel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/remotePanel.tox -------------------------------------------------------------------------------- /Tools/sceneChanger.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/sceneChanger.tox -------------------------------------------------------------------------------- /Tools/search.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/search.tox -------------------------------------------------------------------------------- /Tools/searchReplace.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/searchReplace.tox -------------------------------------------------------------------------------- /Tools/showCooks.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/showCooks.tox -------------------------------------------------------------------------------- /Tools/sopRender.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/sopRender.tox -------------------------------------------------------------------------------- /Tools/splitter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/splitter.tox -------------------------------------------------------------------------------- /Tools/stitcher.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/stitcher.tox -------------------------------------------------------------------------------- /Tools/testGrid.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/testGrid.tox -------------------------------------------------------------------------------- /Tools/vectorScope.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/vectorScope.tox -------------------------------------------------------------------------------- /Tools/virtualFile.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/virtualFile.tox -------------------------------------------------------------------------------- /Tools/vstHost.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/vstHost.tox -------------------------------------------------------------------------------- /Tools/waveformMonitor.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/waveformMonitor.tox -------------------------------------------------------------------------------- /Tools/webBrowser.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Tools/webBrowser.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterButton.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterButton.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterButtonPush.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterButtonPush.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterCheckbox.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterCheckbox.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterDropMenu.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterDropMenu.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterFolderTabs.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterFolderTabs.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterFolderTabsLegacy.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterFolderTabsLegacy.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterFolderTabsWIcons.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterFolderTabsWIcons.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterFooter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterFooter.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterHeader.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterHeader.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterIconMenu.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterIconMenu.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterKnob.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterKnob.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterLabel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterLabel.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterList.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterList.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterNumericField.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterNumericField.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterRadioButton.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterRadioButton.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterRange.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterRange.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterReferenceOP.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterReferenceOP.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterRocker.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterRocker.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterSlider.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterSlider.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterSlider2D.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterSlider2D.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterStringField.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterStringField.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterStringMenu.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterStringMenu.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterTextEditor.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterTextEditor.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Core/masterValueLabel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Core/masterValueLabel.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Gadgets/pathBar.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Gadgets/pathBar.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Package/basicWidgets.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Package/basicWidgets.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Scripting/extensionParExec.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Scripting/extensionParExec.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Tools/autoUI.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Tools/autoUI.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/Tools/widgetCacher.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/Tools/widgetCacher.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/buttonCheckbox.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/buttonCheckbox.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/buttonMomentary.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/buttonMomentary.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/buttonRadio.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/buttonRadio.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/buttonRocker.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/buttonRocker.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/buttonScript.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/buttonScript.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/buttonState.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/buttonState.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/buttonToggle.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/buttonToggle.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/dropDownButton.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/dropDownButton.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/dropDownMenu.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/dropDownMenu.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/fieldFileBrowser.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/fieldFileBrowser.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/fieldFolderBrowser.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/fieldFolderBrowser.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/fieldString.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/fieldString.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/fieldStringExec.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/fieldStringExec.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/fieldTextArea.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/fieldTextArea.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/float1.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/float1.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/float2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/float2.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/float3.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/float3.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/float4.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/float4.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/folderTabs.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/folderTabs.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/footer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/footer.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/header.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/header.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/int1.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/int1.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/int2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/int2.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/int3.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/int3.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/int4.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/int4.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/knobEndless.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/knobEndless.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/knobFixed.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/knobFixed.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/label.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/label.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/list.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/list.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/opViewer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/opViewer.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/operatorPath.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/operatorPath.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/range.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/range.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/referenceCHOP.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/referenceCHOP.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/referenceCOMP.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/referenceCOMP.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/referenceDAT.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/referenceDAT.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/referenceMAT.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/referenceMAT.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/referenceOBJ.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/referenceOBJ.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/referenceOP.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/referenceOP.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/referenceSOP.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/referenceSOP.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/referenceTOP.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/referenceTOP.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/section.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/section.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/slider2D.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/slider2D.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/slider3Hsv.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/slider3Hsv.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/slider3Rgb.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/slider3Rgb.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/slider4Hsva.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/slider4Hsva.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/slider4Rgba.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/slider4Rgba.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/sliderHorz.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/sliderHorz.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/sliderHorzXFade.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/sliderHorzXFade.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/sliderVert.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/sliderVert.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/spacer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/spacer.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/topMenu.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/topMenu.tox -------------------------------------------------------------------------------- /UI/Basic Widgets/windowHeader.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/Basic Widgets/windowHeader.tox -------------------------------------------------------------------------------- /UI/displayList.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/displayList.tox -------------------------------------------------------------------------------- /UI/gal.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/gal.tox -------------------------------------------------------------------------------- /UI/lister.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/lister.tox -------------------------------------------------------------------------------- /UI/operatorPath.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/operatorPath.tox -------------------------------------------------------------------------------- /UI/popDialog.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/popDialog.tox -------------------------------------------------------------------------------- /UI/popMenu.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/popMenu.tox -------------------------------------------------------------------------------- /UI/radioList.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/radioList.tox -------------------------------------------------------------------------------- /UI/simpleList.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/simpleList.tox -------------------------------------------------------------------------------- /UI/treeLister.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/UI/treeLister.tox -------------------------------------------------------------------------------- /Vive/viveController.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Vive/viveController.tox -------------------------------------------------------------------------------- /Vive/viveGeoPanel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Vive/viveGeoPanel.tox -------------------------------------------------------------------------------- /Vive/viveGestureDraw.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Vive/viveGestureDraw.tox -------------------------------------------------------------------------------- /Vive/viveRender.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Vive/viveRender.tox -------------------------------------------------------------------------------- /Vive/viveSimple.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/Vive/viveSimple.tox -------------------------------------------------------------------------------- /WebRTC/signalingClient.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/WebRTC/signalingClient.tox -------------------------------------------------------------------------------- /WebRTC/signalingServer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/WebRTC/signalingServer.tox -------------------------------------------------------------------------------- /WebRTC/webRTC.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/WebRTC/webRTC.tox -------------------------------------------------------------------------------- /WebRTC/webRTCPanel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/WebRTC/webRTCPanel.tox -------------------------------------------------------------------------------- /WebRTC/webRTCPanelRcv.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/WebRTC/webRTCPanelRcv.tox -------------------------------------------------------------------------------- /defaultUserPalette.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [], 3 | "id": "2", 4 | "localRoot": "app.userPaletteFolder", 5 | "name": "My Components", 6 | "palette": "My Components", 7 | "path": "app.userPaletteFolder", 8 | "type": "directory" 9 | } -------------------------------------------------------------------------------- /template.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TouchDesigner/Palette/e76e22e0a4ab05ccab8581b181385f32ff13978a/template.tox --------------------------------------------------------------------------------