示例#1
0
    // Includes male options for the female, to make switching between genders easier in the ui.
    public string GetUnisexAvatarOptionJSON()
    {
        string jsonStr = "\"Model\":\"" + ModelIdx.ToString() + "\",";

        return(AddModelTypeOptionJSON(ref jsonStr, AvatarOptionManager.MALE));
    }
示例#2
0
    public string GetAvatarOptionJSON()
    {
        string jsonStr = "\"Model\":\"" + ModelIdx.ToString() + "\",";

        return(AddModelTypeOptionJSON(ref jsonStr, ModelIdx));
    }