Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: nightmarer on Thu 08/04/2021 22:09:53

Title: Player move without transition
Post by: nightmarer on Thu 08/04/2021 22:09:53
Hello.

I want my player to move inmediatly to another location in the room. I tried Change Room using as room the same room, but it does again the room Load.
I'm sure there is a way to do it but I didn't get it yet. Does anybody know how to do it?

Regards.
Title: Re: Player move without transition
Post by: Snarky on Thu 08/04/2021 22:35:56
Code (ags) Select
cBob.x = 512;
cBob.y = 99;


(Or some suitable variation.)
Title: Re: Player move without transition
Post by: nightmarer on Thu 08/04/2021 22:43:43
That simple? Thank you very much!