09-19-2011, 17:01
Another tutorial, this one is made by
Ill explain the command: MoveOverTime
You have a hud elem and you want it to move in a cool way, use this command.
To move for example the shader +1 in y and -40 in x do this
Thats all, nothing really hard, R 1337
Ill explain the command: MoveOverTime
You have a hud elem and you want it to move in a cool way, use this command.
Code:
myshader MoveOverTime(time);
change positions here
wait time;
To move for example the shader +1 in y and -40 in x do this
Code:
myshader MoveOverTime(0.1);
myshader.y += 1;
myshader.x -= 40;
wait 0.1;
Thats all, nothing really hard, R 1337