Do i have to move the text box with the vcam?
Ur able to make the Vcam the same x and y as a moving or non-moving object by just typing:
this.x=that.x;
this.y=that.y;
// type this inside of the Vcam update script and
//replace “that” with the name of the moving object
Let me know if I didn’t get what u meant, but here’s a little project that might as well help:
using vcam.wick (11.7 KB)
I was planning on doin an animation not a game also how do i make it work?
NVM what i meant was how do i move the object so that it stays on the top right corner of the vcam
Im trying to put my name in a corner or something because I want people to know that i was the one who made it.
Replace the word, “input,” with the name that you’d want in the corner of ur Vcam, and type this into ur Vcams update script:
input.x=this.x+267;
input.y=this.y- 208;
Thanks!