├── userpalette.tox ├── GLSL ├── GLSL_Pillow.tox ├── userpalette.tox ├── GLSL_Starter.tox ├── Postprocessing │ ├── GLSL_Contours.tox │ ├── GLSL_Particles.tox │ ├── GLSL_Starfield.tox │ └── GLSL_PostProcess_Starter.tox └── Materials │ ├── GLSL_Material_Starter.tox │ └── GLSL_Material_ColorRamps.tox ├── Textures ├── noise_A.jpg └── noise_B.png ├── Scripts └── slideshow.tox ├── Best Pratice ├── Feedback.tox └── Kinect_Preprocess.tox ├── Preview └── GLSL_Starfield.png ├── README.md ├── Particles └── ParticlesWithFeedback.tox └── LICENSE /userpalette.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/userpalette.tox -------------------------------------------------------------------------------- /GLSL/GLSL_Pillow.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/GLSL_Pillow.tox -------------------------------------------------------------------------------- /GLSL/userpalette.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/userpalette.tox -------------------------------------------------------------------------------- /Textures/noise_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/Textures/noise_A.jpg -------------------------------------------------------------------------------- /Textures/noise_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/Textures/noise_B.png -------------------------------------------------------------------------------- /GLSL/GLSL_Starter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/GLSL_Starter.tox -------------------------------------------------------------------------------- /Scripts/slideshow.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/Scripts/slideshow.tox -------------------------------------------------------------------------------- /Best Pratice/Feedback.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/Best Pratice/Feedback.tox -------------------------------------------------------------------------------- /Preview/GLSL_Starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/Preview/GLSL_Starfield.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Touchdesigner Components 2 | 3 | Hodgepodge of different Touchdesigner components for future use and reuse. 4 | -------------------------------------------------------------------------------- /Best Pratice/Kinect_Preprocess.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/Best Pratice/Kinect_Preprocess.tox -------------------------------------------------------------------------------- /Particles/ParticlesWithFeedback.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/Particles/ParticlesWithFeedback.tox -------------------------------------------------------------------------------- /GLSL/Postprocessing/GLSL_Contours.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/Postprocessing/GLSL_Contours.tox -------------------------------------------------------------------------------- /GLSL/Materials/GLSL_Material_Starter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/Materials/GLSL_Material_Starter.tox -------------------------------------------------------------------------------- /GLSL/Postprocessing/GLSL_Particles.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/Postprocessing/GLSL_Particles.tox -------------------------------------------------------------------------------- /GLSL/Postprocessing/GLSL_Starfield.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/Postprocessing/GLSL_Starfield.tox -------------------------------------------------------------------------------- /GLSL/Materials/GLSL_Material_ColorRamps.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/Materials/GLSL_Material_ColorRamps.tox -------------------------------------------------------------------------------- /GLSL/Postprocessing/GLSL_PostProcess_Starter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidoschmidt/touchdesigner.components/HEAD/GLSL/Postprocessing/GLSL_PostProcess_Starter.tox -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Guido Schmidt 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | --------------------------------------------------------------------------------