├── .github └── FUNDING.yml ├── README.md ├── crazy.psd ├── patches ├── FastColorLUT.arp └── Fit2Screen (drag device to patch editor).arp ├── screenshot.png ├── spark-lut-tutorial.arproj └── textures ├── crazy.png └── edgy_amber.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: positlabs 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## How to use the color LUT patch and create your own custom LUTs. 2 | 3 | [Tutorial on YouTube](https://www.youtube.com/watch?v=lxF-ecbkbr4) 4 | 5 | ![screenshot](./screenshot.png) 6 | 7 | https://github.com/positlabs/spark-fit2screen 8 | 9 | https://github.com/positlabs/spark-lut-patch 10 | 11 | 12 | ## Resources 13 | 14 | Learn more stuff by watching my [Spark AR Tutorials on YouTube!](https://www.youtube.com/playlist?list=PLAZp2Vi7Gfspzyla4RrCO6BzVzYW7Lnb-) 15 | 16 | Follow me on Instagram [@positlabs](https://instagram.com/positlabs) and try out my effects! 17 | 18 | Browse my open-source [Spark AR repositories on Github!](https://github.com/search?q=user%3Apositlabs+spark) 19 | 20 | Have questions? Join the [Spark AR Community](https://www.facebook.com/groups/SparkARcommunity/) group on Facebook. 21 | 22 | 23 | ## Donations 24 | 25 | If you used this in client projects, or simply enjoyed making effects with my open-source projects, please consider a donation or sponsorship. One-time donations can be made with PayPal. Subscriptions can be through PayPal or Github Sponsors (click the heart sponsor button at the top of the page). 26 | 27 | [![](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=YGS69CHAE9EQC&source=url) 28 | -------------------------------------------------------------------------------- /crazy.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positlabs/spark-lut-tutorial/c71bb02aff99247c0edbdd6d8807c068c3eefc09/crazy.psd -------------------------------------------------------------------------------- /patches/FastColorLUT.arp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positlabs/spark-lut-tutorial/c71bb02aff99247c0edbdd6d8807c068c3eefc09/patches/FastColorLUT.arp -------------------------------------------------------------------------------- /patches/Fit2Screen (drag device to patch editor).arp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positlabs/spark-lut-tutorial/c71bb02aff99247c0edbdd6d8807c068c3eefc09/patches/Fit2Screen (drag device to patch editor).arp -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positlabs/spark-lut-tutorial/c71bb02aff99247c0edbdd6d8807c068c3eefc09/screenshot.png -------------------------------------------------------------------------------- /spark-lut-tutorial.arproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positlabs/spark-lut-tutorial/c71bb02aff99247c0edbdd6d8807c068c3eefc09/spark-lut-tutorial.arproj -------------------------------------------------------------------------------- /textures/crazy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positlabs/spark-lut-tutorial/c71bb02aff99247c0edbdd6d8807c068c3eefc09/textures/crazy.png -------------------------------------------------------------------------------- /textures/edgy_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positlabs/spark-lut-tutorial/c71bb02aff99247c0edbdd6d8807c068c3eefc09/textures/edgy_amber.png --------------------------------------------------------------------------------