bug report (and workaround for it):
struct property tweening (such as TweenFire(apple, EaseLinear, 0, true, 0, 5.0, "x>", 50);) didn't work for me in this release until i made the following change to the function TGMS_Variable_Get in TGMS_7_Properties:
function TGMS_Variable_Get(target, variable, caller) { if (!is_real(target) and !is_struct(target)) { target = target.ref; }
if anyone else if having this issue, make this change and it'll start working. the change is adding "and !is_struct(target)" to the if statement. this might not be a proper fix though so hopefully an update fixes the issue