how to have name typed bring up an image or text consisntently
so i want to make a filter that has a keyboard and essentially says you are ___ after you type in your name. I guess I could have a random list of images that would appear when you take the photo regardless of what you type in but I want the results of typing in someone's name to be consistent so no matter how many times it is used, it has the same result. Hopefully this isn't too confusing with the way i explained it but I also actually already have a project with a working keyboard, I just need a way to take the words typed in have them produce a word.
Hi, Max!
First you'll need to prepare an array of words/images you are going to use. For example they can be script inputs of hardcoded .There-how you will have a map index : word/texture
Then we will need to calculate index from the entered name. First you can calculate a unique hash number. Some info from wiki .
To make sure that obtained number is within your amount of words/images simply do n = hashNumber%amount
Script example:
Let me know if there are any questions
Best
Olha