Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: MS42 on June 07, 2024, 09:54:51 PM

Title: Get property on obscured Type
Post by: MS42 on June 07, 2024, 09:54:51 PM
Hi there- I am testing using the anti cheat toolkit which protects variables by changing them to 'Obscured'

I am storing variables in a script and hoping to access them in PM via -> Get Property

Currently only the unobscured variables are visible. Can you think of any workaround that could enable their use in PM?

eg.

    public ObscuredInt Lives = 1;
    public ObscuredInt SpawnDistance = 5;
    public ObscuredFloat TempPlayerSpeed = 1;
    public int Open = 4;


Only 'Open' is visible