Example, (works):
var turkey = 100
Tweener.interpolate_property(self, "turkey", 100, 1, 5, 1, 1)
Example, (doesn't work):
var turkey = { rofl = 100 }
Tweener.interpolate_property(self, "turkey.rofl", 100, 1, 5, 1, 1)
Is it possible to get tweening to work on dictionary properties too?