#tracker that speeds up when object is far and slows when close
1 messages · Page 1 of 1 (latest)
used ai💀
Yo son take a chill pill
seems familiar
how do you even add labels to groups
l
What?
l
What?
there is no 5.0 wth is grok on about
5.0 is 5
im saying delta time
constant
use constant and set yo 5
R3 = DeltaTime x constant 5
SLEEP 0
SUB R0 grp2.Pos.X grp1.Pos.X
SUB R1 grp2.Pos.Y grp1.Pos.Y
SUB R2 grp2.Pos.Z grp1.Pos.Z
MUL R3 DELTATIME 5.0
MUL R0 R0 R3
ADD grp1.Pos.X grp1.Pos.X R0
MUL R1 R1 R3
ADD grp1.Pos.Y grp1.Pos.Y R1
MUL R2 R2 R3
ADD grp1.Pos.Z grp1.Pos.Z R2
GOTO loop```
think this works
Group it and type at the top
you can't name something label the name can only be 4 letters
If your talking about regular naming without code just select the group and name it smth in selection
you dont need deltatime for this
you just get the delta, and set r7 to like 10% of it and add it to the position
LABEL Delta
SUB R0 B.Pos.X A.Pos.X
SUB R1 B.Pos.Y A.Pos.Y
SUB R2 B.Pos.Z A.Pos.Z
LABEL X
MUL R3 R0 R7
ADD A.Pos.X R3 A.Pos.X
LABEL Y
MUL R4 R1 R7
ADD A.Pos.Y R4 A.Pos.Y
LABEL Z
MUL R5 R2 R7
ADD A.Pos.Z R5 A.Pos.Z
SLEEP 0
GOTO Delta```
or you could do it the other way around with
SUB
MUL
ADD
and why sleep 0 at the start ik it still works the same but its a little weird
Ik i was talking about regular
group name ahhh