Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to check if a Vector3 Value has changed?

Asked by 6 years ago

I am making a car. Here is the code.

01local tractor = script.Parent
02local stats = tractor.Configurations
03local v = tractor.VehicleSeat
04 
05local bodyPos = tractor.Chassis.BodyVelocity
06local bodyGyro = tractor.Chassis.BodyAngularVelocity
07 
08local runService = game:GetService("RunService")
09local lookVec = nil
10 
11 
12 
13tractor.VehicleSeat.Changed:Connect(function(property)
14    if property == ("Steer") then
15        bodyGyro.AngularVelocity = Vector3.new(0,v.Steer*-5000,0)
View all 23 lines...

As you can see, I just put "or lookVec", but how do I find if lookVec's values have changed? Your Breakfast, TheFierceWaffle

1 answer

Log in to vote
2
Answered by 6 years ago
Edited 6 years ago

This is kind of hacky but what you can do is make another variable called lastLookVec which in the loop we will set to the value of LookVec before we change it and then compare it to see if it changed in the next loop iteration. Instead of doing a while loop you could also use heartbeat in run service but for simplicity I will use a while loop. Heres and example.

01local lookVec = nil
02local lastLookVec = nil
03local lookVecChanged = false -- variable which we will set to show if it changed.
04while true do
05    wait()
06    lookVecChanged = not lastLookVec == lookVec -- this will show wether or not the lookVec is different from the old one. If it is different then lookVecChanged will be true(that is why the not is used).
07    lastLookVec == lookVec -- this will make the lastLookVec variable the current lookVec so that in the next loop we can compare it to the value of lookVec and see if it has changed
08    if lookVecChanged then -- you could this to know if it changed in the situation you described above.
09        print("lookVec has changed!")
10    end
11end

Hope this helps. In my opinion this technique is kind of hacky and best to avoid. Also if you are using two while loops you will have to put one of them into a new thread so they will both run at the same time. I'm not exactly sure what you are doing so If you find you don't need to use this, definitely don't use this. Good luck.

0
This helps very much! It is very "hacky", but what must be done must be done! TheFierceWaffle 64 — 6y
Ad

Answer this question