I was thinking is it possible to create a Camera (possibly something like TDM Intermission) that shows onto a Television.
For CODUO
How would i do this?
Thanks

Moderator: Core Staff
Code: Select all
animation = getent("animation", "targetname");
trig = getent("anim_trigger", "targetname");
while(1)
{
trig waittill ("trigger");
for (i = 0; i < 200; i++) //it assumes your animation consists of 200 frames.
{
animation.origin += (0, 100, 0); //it immediately shows the next frame by the means of a momentary motion the brushmodel along the axis Y on 100 units, which are the frame's length. (this example assumes the length is 100)
wait 0.1; //delay between two frames.
}
animation.origin = (0, 0, 0); //after playback, returns the animation to the start point.
}
Just think of it as him wanting an actual CCTV camera, showing what's going on in view of the camera (e.g. multiple people moving, firing weapons, etc.). It's not possible.megazor wrote:Excuse me, but I haven't got what the camera system the subject author described is -.-
It's possible to make a movie, as well as making a spawning in a certain place as a spectator. If it's necessary to move the spectator, link it to script_model and use motion things.
Though I probably nevertheless have a wrong idea about the system. Therefore can anyone explain me?
Users browsing this forum: No registered users and 0 guests