├── .gitignore ├── Assets ├── Notch │ ├── placeholder.dfx │ └── .gitignore ├── Movies │ └── .gitignore ├── Tox │ ├── test1.jpg │ ├── test1.tox │ ├── test2.tox │ ├── test3.tox │ └── template.tox └── PostFX │ └── bananagram_1_1_0.tox ├── Lib ├── CrashAutoSave.Column Engine.1.toe ├── UIKit.tox └── Column Engine.tox ├── SimpleMixer.toe ├── SimpleMixer.1.toe ├── SimpleMixer.2.toe ├── SimpleMixer.3.toe ├── SimpleMixer.7.toe ├── SimpleMixer-old.toe ├── SimpleMixer.59.toe ├── Backup ├── SimpleMixer.1.toe ├── SimpleMixer.2.toe └── SimpleMixer.3.toe ├── CrashAutoSave.SimpleMixer.37.toe ├── CrashAutoSave.SimpleMixer.6.toe ├── TouchDesignerCrash.2023.10130.1.dmp ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | /Backup -------------------------------------------------------------------------------- /Assets/Notch/placeholder.dfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Notch/.gitignore: -------------------------------------------------------------------------------- 1 | *.dfxdll -------------------------------------------------------------------------------- /Lib/CrashAutoSave.Column Engine.1.toe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Movies/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore -------------------------------------------------------------------------------- /Lib/UIKit.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Lib/UIKit.tox -------------------------------------------------------------------------------- /SimpleMixer.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/SimpleMixer.toe -------------------------------------------------------------------------------- /SimpleMixer.1.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/SimpleMixer.1.toe -------------------------------------------------------------------------------- /SimpleMixer.2.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/SimpleMixer.2.toe -------------------------------------------------------------------------------- /SimpleMixer.3.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/SimpleMixer.3.toe -------------------------------------------------------------------------------- /SimpleMixer.7.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/SimpleMixer.7.toe -------------------------------------------------------------------------------- /Assets/Tox/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Assets/Tox/test1.jpg -------------------------------------------------------------------------------- /Assets/Tox/test1.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Assets/Tox/test1.tox -------------------------------------------------------------------------------- /Assets/Tox/test2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Assets/Tox/test2.tox -------------------------------------------------------------------------------- /Assets/Tox/test3.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Assets/Tox/test3.tox -------------------------------------------------------------------------------- /SimpleMixer-old.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/SimpleMixer-old.toe -------------------------------------------------------------------------------- /SimpleMixer.59.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/SimpleMixer.59.toe -------------------------------------------------------------------------------- /Lib/Column Engine.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Lib/Column Engine.tox -------------------------------------------------------------------------------- /Assets/Tox/template.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Assets/Tox/template.tox -------------------------------------------------------------------------------- /Backup/SimpleMixer.1.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Backup/SimpleMixer.1.toe -------------------------------------------------------------------------------- /Backup/SimpleMixer.2.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Backup/SimpleMixer.2.toe -------------------------------------------------------------------------------- /Backup/SimpleMixer.3.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Backup/SimpleMixer.3.toe -------------------------------------------------------------------------------- /CrashAutoSave.SimpleMixer.37.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/CrashAutoSave.SimpleMixer.37.toe -------------------------------------------------------------------------------- /CrashAutoSave.SimpleMixer.6.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/CrashAutoSave.SimpleMixer.6.toe -------------------------------------------------------------------------------- /Assets/PostFX/bananagram_1_1_0.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/Assets/PostFX/bananagram_1_1_0.tox -------------------------------------------------------------------------------- /TouchDesignerCrash.2023.10130.1.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer-2/HEAD/TouchDesignerCrash.2023.10130.1.dmp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SimpleMixer 2 2 | Version 2 of SimpleMixer, a Mixing tool built in TouchDesigner 3 | 4 | Under Construction...please check back later. 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Richard-Burns 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 | --------------------------------------------------------------------------------