SmartBone 2 - Simulated Physics and Collision solution for Bones

Actually, the patch I mentioned earlier just causes the rig to yeet itself to nan coordinates.
This is what I propose to fix the bug.

local solution=CFrame.new(ParentBone.Position) * Rotation
		if ParentBone.ActiveWeld and ParentBone.RigidWeld then
			ParentBone.CalculatedWorldCFrame = ParentBone.WeldCFrame
		--elseif ShouldAverage then
		--	ParentBone.RotationSum += Vector3.new(Rotation:ToEulerAnglesXYZ())
		elseif not IsNaN(solution) then
			--ParentBone.CalculatedWorldCFrame = BoneParent.WorldCFrame:Lerp(CFrame.new(ParentBone.Position) * Rotation, alpha)
			ParentBone.CalculatedWorldCFrame = solution
		end

image

This is the line located inside the Bone module.

The above solution does not solve the problem.
I actually did just fix it through trial and error, The root cause of the problem is the Velocity becoming infinite.
My fix is constraining the Velocity of the bone through the StepPhysics function.

local VelocityConstraint=100
function Class:StepPhysics(BoneTree, Force: Vector3, Delta: number) -- Parallel safe
do end	
if self.Anchored then
		self.LastPosition = self.AnimatedWorldCFrame.Position
		self.Position = self.AnimatedWorldCFrame.Position
do end		

return
	end

	-- Custom forces per bone
	if self.Force or self.Gravity then
do end		
Force = (self.Gravity or BoneTree.Settings.Gravity)

		Force = (Force + (self.Force or BoneTree.Settings.Force)) * Delta
do end	
end
do end	

local Settings = BoneTree.Settings

	local Velocity = (self.Position - self.LastPosition)
	local Move = (BoneTree.ObjectAcceleration * Settings.Inertia)
	local WindMove = SolveWind(self, BoneTree, Velocity)
	local sum=Velocity * (1 - Settings.Damping) + Force + Move + WindMove
	local function constrainsum(v)
		local c=v
		if v.X>VelocityConstraint then
			c=Vector3.new(VelocityConstraint,v.Y,v.Z)
		elseif v.X<-VelocityConstraint then 
			c=Vector3.new(-VelocityConstraint,v.Y,v.Z)	
		end
		if c.Y>VelocityConstraint then
			c=Vector3.new(c.X,VelocityConstraint,c.Z)
		elseif c.Y<-VelocityConstraint then 
			c=Vector3.new(c.X,-VelocityConstraint,v.Z)	
		end
		if c.Z>VelocityConstraint then
			c=Vector3.new(c.X,c.Y,VelocityConstraint)
		elseif c.Z<-VelocityConstraint then 
			c=Vector3.new(c.X,c.Y,-VelocityConstraint)	
		end
		return c
	end
	self.LastPosition = self.Position
	self.Position += constrainsum(sum)
do end do end

end

With this when the bone reaches critical velocity it instead is clamped to normalized values. Which in my use case of sky diving forever which caused easy replication of the bug caused me to debug and solve the issue through my experience reading this code.
This ‘Class:StepPhysics’ function is located inside the Bone module.
So to perform the patch you would comment out the line that prints() 5000 times and apply the Velocity Constraint on the Physics step.
If the above patch does not work alone I have additionally done this change.

function Class:ApplyTransform(BoneTree)
do end
	
self.SolvedAnimatedCFrame = false

	if self.ParentIndex < 1 then
do end		
return
	end

	local ParentBone: IBone = BoneTree.Bones[self.ParentIndex]
	local BoneParent = ParentBone.Bone

	-- We check if the magnitude of rotation sum is zero because that tells us if it has already been averaged by another bone.
	-- if ParentBone.NumberOfChildren > 1 and ParentBone.RotationSum.Magnitude ~= 0 then
	-- 	local AverageRotation = ParentBone.RotationSum / ParentBone.NumberOfChildren
	-- 	ParentBone.CalculatedWorldCFrame = CFrame.new(ParentBone.Position)
	-- 		* CFrame.fromEulerAnglesXYZ(AverageRotation.X, AverageRotation.Y, AverageRotation.Z)
	-- 	ParentBone.RotationSum = Vector3.zero
	-- end

	if ParentBone and BoneParent then
		if ParentBone.Anchored and BoneTree.Settings.AnchorsRotate == false then -- Anchored and anchors do not rotate
			BoneParent.WorldCFrame = ParentBone.TransformOffset
		--elseif ParentBone.Anchored then -- Anchored and anchors rotate
		--	BoneParent.WorldCFrame = CFrame.new(ParentBone.Position) * ParentBone.CalculatedWorldCFrame.Rotation
		elseif not IsNaN(ParentBone.CalculatedWorldCFrame) then  -- Not anchored
			
			BoneParent.WorldCFrame = ParentBone.CalculatedWorldCFrame
		else 
		--	BoneParent.CFrame=ParentBone.OriginCFrame
			ParentBone.CalculatedWorldCFrame=BoneParent.WorldCFrame
		end
	end
do end
end

This checks if the Bone has a NaN and corrects its. Without the physics patch this causes the bones to remain stationary but continues to have the module propose a nan solution.
Together they should definitely work. I have not been able to break it since applying this fix.
That is given you have this part commented out.
image

The bug still happens, but instead of the full outfit disappearing it just stops moving, originally when this warn showed up the clothing disappeared. This only happens when I use teleporting stuff.

the apply Class:ApplyTransform(BoneTree) fix results in the smartbone object to appear still when the proposed position is NaN. The VelocityConstraint=100
function Class:StepPhysics section clamps the velocity to not exceed a certain value. Which keeps it from being NaN even when you teleport. As I am doing. I am currently not experiencing any bugs. But will take a look if I can replicate your issue.
In the end you may want to change the VelocityConstraint or scale it by the * (Settings.Damping) to effectively handle the variable Velocity Limits if there are any.

I’m using 4.0 and the simulation is jittery when the player is walking, is this a bug or did I do something wrong? I also for some reason can’t get 3.0 to work.

has this been fixed with the latest version of smartbone? Does anyone know how to make it work when its published? Please help.

whats/where is the VelocityConstraint?

There are a lot of Attributes you may wants to look at such as Dampening, Elasticity, Stiffness. High Elasticity may cause the object to be overly jittery

In this, I posted the modified functions SmartBone 2 - Simulated Physics and Collision solution for Bones - #391 by Magus_ArtStudios
It’s a two function modification one for the step physics and the other for the one that makes the bones stationary instead of NaN

I tried a lot of settings but it doesn’t seem to work. I’m using a lot of axis constraints and maybe it has something to do with it

this still doesnt work, im not sure what the problem is now

I’ll PM you a copy of my version you should be able to drop it in an it will work.

Another difference is I am connecting to the PreRender signal instead of RenderStepped in the ‘runtime’ script. That way the bones are positioned before the frame renders. The modified version I’m using still works and my curtains are no longer disappearing when the wind is active. I PMed you and the Creator a copy.

can i use smart bone for ragdoll skinnedmesh ?

1 Like

Isn’t there a plugin that does all the bone adding for you, or adding all the attributes?

You can find the plugins here​​​​​​​​​​​​​​​

SmartBone Editor seems to be private:
image

oh yeah my bad i forgot, visit this link: SmartBone Editor - Roblox

1 Like

Do any of you know how to stop the smartbone of one specific object? I’m trying to simulate a ship’s flag and I need it to stop being a smartbone when landed to stop it from expanding.

Hello, incredible module you made here! Honestly I am still flabbergasted with these kind of things, however I am having an issue that I have no idea what is causing it, the screenshot can explain by itself.


(Yes that’s a tail btw lol)

If it helps, here is the settings of the mesh.

image
(Ignore the update rate being so high I was just messing around with it)

If anyone knows a solution to this I would appreciate it a lot!