Hello,
So here is the problem, I've got multiple instances of a platform objects (called platform, duh).
And I'd like to resize one of those platforms every x seconds. I understand the event system, but how can I get and modify the x, and y position of one specific instance? I thought there will be something like this for instance:
System->every 3 seconds->platform.[UID number or instance number]-> set x to platform.[UID number or instance number].X+100
But I dont find the right grammar.... There has to be something like that.
Thanks for reading and helping, I'm sure it's a noob question, but I am drowning in a sea of documentations and tutorials which seem to never need that function.
edit: do I have to create my own ID instance variable and do something like system->every x seconds->platforms->if ID_instance_variable == y -> etc ?