When manually stepping the Physics, the PostSimulation event does not get fired
Clip:
System specs:
CPU: AMD Ryzen 5 3600X
GPU: NVIDIA GeForce RTX 2060 Super
RAM: 2x8GB DDR4-3200
Script used in video:
local RunService = game:GetService("RunService")
RunService.PreAnimation:Connect(function(deltaTimeSim: number)
print("PreAnimation")
end)
RunService.PreSimulation:Connect(function(deltaTimeSim: number)
print("PreSimulation")
end)
RunService.PostSimulation:Connect(function(deltaTimeSim: number)
print("PostSimulation")
print()
end)
RunService.Stepped:Connect(function(deltaTimeSim: number)
print("Stepped")
end)
Expected behavior
I expect PostSimulation to fire after PreSimulation when manually stepping physics