Monday, October 12, 2015

How to prevent Cocos2d-x console sending user data while creating project

Hey!
Im working on  "Beginner to Game Dev Master course " should be ready soon , please register to my email list to be updated when it is ready

Thanks !


First of all i want to state that while the Headline sound somehow suspicious.
I have nothing Against the cocos2d-x team , they are doing it to understand their user base.
And allot of frameworks/apps doing it. just open Wireshark and see ...

  1. In your Cocos2d-x framework project root directory go to :
    ..\cocos2d-x-3.8.1\tools\cocos2d-console\bin
  2. Open the file : cocos2d.ini
  3. Search for the string : enable_state=true
    1
    2
    3
    4
     Enable/Disable the data statistics
    # If the value is 'false' or 'no', statistics is disabled.
    # Otherwise, it's enabled.
    enable_stat=true 
  4.  Change it to : enable_state=false
     
    So now it should look like this:
    1
    2
    3
    4
     Enable/Disable the data statistics
    # If the value is 'false' or 'no', statistics is disabled.
    # Otherwise, it's enabled.
    enable_stat=false
    



No comments:

Post a Comment

Note: Only a member of this blog may post a comment.