示例#1
0
    // Token: 0x060003F1 RID: 1009 RVA: 0x0003B7E0 File Offset: 0x00039BE0
    public static void SetPhotoPosition(int photoID, Vector2 value)
    {
        string text = photoID.ToString();

        KeysHelper.AddIfMissing("PhotoPosition_", text);
        GlobalsHelper.SetVector2("PhotoPosition_" + text, value);
    }
示例#2
0
    // Token: 0x06001581 RID: 5505 RVA: 0x000B7794 File Offset: 0x000B5994
    public static void SetPhotoPosition(int photoID, Vector2 value)
    {
        string text = photoID.ToString();

        KeysHelper.AddIfMissing("Profile_" + GameGlobals.Profile + "_PhotoPosition_", text);
        GlobalsHelper.SetVector2(string.Concat(new object[]
        {
            "Profile_",
            GameGlobals.Profile,
            "_PhotoPosition_",
            text
        }), value);
    }