Docy

CCPA

1. What is CCPA?

CCPA is a legal framework created by the state of California, in the USA, to protect privacy. Read this FAQ for details.

2. How to set CCPA

1) Determine the user’s location.

2) Use the location to trigger a message which asks users whether or not they consent to having their data collected. Here is an example, though we suggest changing the wording to better suit your audience.

3) Use the input to trigger a CCPA compliance method.

If the user has opted out:

Unity

				
					Yodo1U3dMas.SetCCPA(true);
				
			

Android

				
					Yodo1Mas.getInstance().setCCPA(true);
				
			

iOS

				
					[Yodo1Mas sharedInstance].isCCPADoNotSell = Yes;
				
			

If the user has NOT opted out:

Unity

				
					Yodo1U3dMas.SetCCPA(false);
				
			

Android

				
					Yodo1Mas.getInstance().setCCPA(false);
				
			

iOS

				
					[Yodo1Mas sharedInstance].isCCPADoNotSell = NO;
				
			
CONTENTS