Hello people!

I'm having a small problem with my model.

What I have is a rotating arm, that lifts up and down, and on that arm there is a cross connected to it (By vertex), yet it does rotate with the arm, but it won't go up and down!

Here is a small demo video:
http://www.youtube.com/watch?v=MxEBgvUEXNo

Cross1:
Code:
   function kruis_1()
{
   var hingeIDkruis;
   proc_late(); //Wait...
   kruis1 = my;
   my.passable = on;	
   my.flare = off;
   my.transparent = off;
   my.ambient = 10;
   my.roll = 0;
   
   my.scale_x = 0.50;
   my.scale_y = 0.50;
   my.scale_z = 0.50;


Arm1:
Code:
   function arm_1()
{
   var oid;
   var pos[3];
   proc_late(); //Wait...
   arm1 = my;
   my.passable = on;	
   my.flare = off;
   my.transparent = off;
   my.ambient = 10;
   
   my.scale_x = 1.4;
   my.scale_y = 1.4;
   my.scale_z = 1.4;
	
   vec_for_vertex(temp, my, 9107);
   kruis1 = ent_create("kruis.mdl",temp,kruis_1);
   wait(1);



Thanks alot!

Last edited by Dreher; 05/05/09 15:58.

A7 7.77